* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    /* text-transform: capitalize; */
    font-family: 'Work Sans';

}

:root {
    --font-Signik: 'Signika';
    --font-Work-Sans: 'Work Sans';
    --font-Inter: 'Inter';
    --blue-color: #A8DADB;
    --orange-color: #DE4E08;
    --white-color: #FFFCFC;
    --text-color: #1D3557;

}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

.btn {
    color: var(--white-color);
    background: var(--orange-color);
    padding: 15px 20px;
    font-size: 21px;
    line-height: 25px;
}

.sub-title {
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    font-family: var(--font-Signik);
    color: var(--text-color);
}

/* headde */

.navbar {
    padding: 8px 0;
    background-color: #fff;
    border-radius: 0px 0px 15px 15px;
    transition: all 0.5s ease-in-out;
}

.navbar .navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu .menu-link {
    font-size: 20px;
    line-height: 23px;
    color: #000;
    font-weight: 600;
    margin: 0 16px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--font-Work-Sans);
}

.menu-item:last-child .menu-link {
    margin-right: 0;
}

.menu-item:first-child .menu-link {
    margin-left: 0;
}

.menu .menu-link:hover,
.menu .menu-link.active {
    color: var(--orange-color);
    border-bottom: 3px solid var(--orange-color);
    transition: all 0.1s ease-in-out;
}

.menu .menu-link:hover svg,
.menu .menu-link.active svg {
    fill: var(--orange-color);
}

.navbar .menubar {
    display: none;
}

.navbar.sticky {
    position: fixed;
    width: 100%;
    top: 0px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
    /* box-shadow: chartreuse; */
    z-index: 80000;
    -webkit-box-shadow: 0px 0px 10px rgb(0 0 0 / 32%);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.32);
    box-shadow: 0px 0px 15px rgb(0 0 0 / 17%);
    background: #fff;
    animation: hhhh 1s both 0.2s;
}

.dropdwon ul {
    list-style: none;
    background: #fff;
    padding: 0;
    z-index: 10;
    display: none;
    position: absolute;
    width: 200px;
    top: 90%;
    text-align: left;
}

.dropdwon ul li {
    padding: 10px 15px;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.dropdwon ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.dropdwon ul li a:hover {
    color: var(--orange-color);
}

/* Home Pges */
.home-banner {
    width: 100%;
    height: 100%;
    margin: 100px 0;
    padding-left: 50px;
    position: relative;
    overflow: hidden;
}

.home-section .item {
    transition: all 5s ease-in-out;
}

.home-content {
    max-width: 585px;
    margin: 0 auto;
}

.home-content .home-text {
    font-size: 41px;
    line-height: 51px;
    font-family: var(--font-Signik);
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    position: relative;
}

.home-content .home-text::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -50px;
    z-index: -1;
    width: 123px;
    height: 123px;
    border-radius: 50%;
    background: var(--blue-color);
}

.home-content .home-btn {
    max-width: 256px;
    width: 100%;
    margin-top: 60px;
}

.home-content .home-btn .btn {
    width: 100%;
    padding: 18px;
}

.home-banner .images-box {
    margin-top: 10px;
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.menubar {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
}

.line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.active .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.active .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.active .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.tree_title_section {
    text-align: center;
    max-width: 800px;
    width: 100%;
    border-bottom: 4px solid var(--orange-color);
    margin: 0 auto;
}

.tree_title_section h2 {
    font-family: var(--font-Signik);
    font-weight: 700;
    font-size: 42px;
    line-height: 52px;
    color: var(--text-color);
    padding-bottom: 10px;
    text-transform: initial;
}

/* Tree Section */

.tree-section {
    background: url(../images/tree.png) no-repeat;
    background-position: center;
    width: 100%;
    height: 766px;
    margin-bottom: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.tree-section .box {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px;
}




.tree-section .box .inner-right-box {
    margin-top: 140px;
}

.tree-section .box .inner-box .box-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 150px;
    gap: 50px;
}

.tree-section .box .inner-right-box .box-right-content {
    margin-bottom: 150px;
}

.tree-section .box .inner-box .box-content.bottom {
    margin-bottom: 0;
}

.tree-section .box .inner-right-box .box-right-content.bottom {
    margin-bottom: 0;
}


.tree-section .box .box-content:last-child {
    margin-bottom: 0;
}

.tree-section .box .box-right-content {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.tree-section .box .box-content .box-detail,
.tree-section .box .box-right-content .box-detail {
    max-width: 301px;
    width: 100%;
}

.tree-section .box .box-content .box-detail .tree-title,
.tree-section .box .box-right-content .box-detail .tree-title {
    font-size: 35px;
    line-height: 43px;
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-Signik);
    margin-bottom: 8px;
}

.tree-section .box .box-content .box-detail p,
.tree-section .box .box-right-content .box-detail p {
    font-size: 17px;
    line-height: 20px;
    font-weight: 400;
}

.tree-section .box .box-right-content .images {
    -webkit-order: 2;
    order: 2;
}

.tree-section .box .box-right-content .box-detail {
    -webkit-order: 1;
    order: 1;
}

.customers {
    text-align: center;
    position: relative;
    background: url(../images/slider-bg.png) no-repeat;
    height: 685px;
    background-position: left;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}



.customers .customers-title {
    font-weight: 600;
    font-size: 50px;
    line-height: 62px;
    font-family: var(--font-Signik);
    margin-bottom: 42px;
}

.customers .customers-title span {
    color: var(--orange-color);
}

.customers .customers-border {
    max-width: 989px;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--orange-color);
    margin: 0 auto;
    margin-bottom: 52px;
}

.customers .customers-slider {
    position: relative;
}

.customers .customers-slider .owl-carousel .owl-nav button.owl-prev {
    position: absolute !important;
    top: 15px !important;
    left: 100px !important;
}

.customers .customers-slider .customers-text {
    max-width: 590px;
    margin: 0 auto;
}

.customers .customers-slider .customers-text p {
    font-size: 22px;
    line-height: 26px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}

.customers .customers-slider .customers-name h6 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
    margin: 0;
}

.customers .customers-slider .customers-name p {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
}

.customers .customers-slider .owl-prev {
    width: 66px;
    height: 24px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.customers .customers-slider .owl-prev::after {
    content: url(../images/arrow-left.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 66px;
    height: 24px;
}

.customers .customers-slider .owl-next {
    height: 24px;
    width: 66px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.customers .customers-slider .owl-next:hover,
.customers .customers-slider .owl-prev:hover {
    background: transparent;
}

.customers .customers-slider .owl-next span,
.customers .customers-slider .owl-prev span {
    visibility: hidden;
}

.customers .customers-slider .owl-next::after {
    content: url(../images/arrow-right.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 66px;
    height: 24px;
}


/* Galler Section */

.galler-section {
    margin-top: 102px;
    background: url(../images/galler-bg.png) no-repeat;
    background-position: top right;
    overflow: hidden;
    margin-bottom: 150px;
}

.galler-section .box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.galler-section .images-box {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.galler-section .images-box .images_link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.galler-section .images-box::before {
    background-color: #1A1111E0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    max-width: 300px;
    max-height: 300px;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: visible;
    transition: all 0.4s ease 0s;
}

.galler-section .images-box:hover:before {
    opacity: 0.6;
    visibility: visible;
}

.galler-section .images-box .images-content {
    opacity: 0;
    visibility: hidden;
}

.galler-section .images-box:hover .images-content {
    opacity: 1;
    visibility: visible;
}

.galler-section .images-box .images-content .inner-content {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.galler-section .images-box:hover .inner-content {
    bottom: 100px;
}

.galler-section .images-box .images-content .inner-content .title a {
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 0;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    font-family: var(--font-Signik);
}

.galler-section .images-box .images-content .inner-content .title a:hover {
    color: var(--orange-color);
}



/* Product Pages */

.product-page {
    background-image: url("../images/market.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 823px;
    height: 100%;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-page .ptoduct-title h5 {
    font-family: var(--font-Inter);
    font-weight: 700;
    font-size: 71px;
    line-height: 86px;
    text-align: center;
    color: #fff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 150px;
}


.protfolio {
    align-items: center;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}


.protfolio::before {
    content: '';
    max-width: 900px;
    max-height: 800px;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -200px;
    background-color: var(--blue-color);
    z-index: -1;
    border-radius: 50%;
    filter: blur(26px);
    right: -300px;
}

.protfolio .product-card a h4 {
    font-size: 30px;
}

.protfolio .product-card a {
    color: black;
}

.protfolio .product-card .nav-link .title {
    position: relative;
    margin-bottom: 3px;
}

.protfolio .product-card .nav-link.active .title {
    color: var(--orange-color);
    font-weight: 700 !important;
}

.protfolio .product-card .nav-link.active .title::before {
    content: '';
    width: 100%;
    height: 3px;
    background: var(--orange-color);
    border-radius: 5px;
    position: absolute;
    bottom: -3px;
    left: 0;
}

.protfolio .tab-content {
    margin-top: 50px;
}

.protfolio .product-card .card {
    border: 1px solid #000;
    text-align: center;
    width: 100%;
    box-shadow: 8px 8px 10px 5px rgba(0, 0, 0, 0.16);
}

.protfolio .product-card .card .images {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.protfolio .product-card .card:hover .images {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.protfolio .product-card .card span {
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    font-weight: 500;
    margin: 0;
    margin-top: 12px;
}

.protfolio .product-card .card a {
    text-decoration: none;
    margin-top: 15px;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.protfolio .product-card .card:hover a {
    color: var(--orange-color);
}

.protfolio .product-card .card p {
    font-size: 13px;
    line-height: 15px;
    font-weight: 200;
    margin: 0;
    margin-top: 5px;
    color: #000;
}

.protfolio .product-card .card img {
    width: 100%;
    height: 100%;
}


.protfolio .protfolio-search {
    max-width: 658px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 50px;
}

.protfolio .protfolio-search input {
    border: 1px solid #868282;
    border-radius: 10px;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    padding: 16px 25px;
    margin: 0;
}

.protfolio .protfolio-search form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.protfolio .protfolio-search form button {
    background: var(--orange-color);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.protfolio .sub-tab-content {
    text-align: center;
    margin-top: 25px;
}


.protfolio .sub-tab-content .spices-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.protfolio .sub-tab-content .spices-button a {
    text-decoration: none;
}

.protfolio .sub-tab-content .spices-button a h5 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
}




/* Sub Product Section Start */

.brthcome {
    margin-top: 30px;
}

.brthcome .brath_list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.brthcome .brath_list li {
    color: var(--orange-color);
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    cursor: pointer;
}

.brthcome .brath_list li a {
    color: var(--orange-color);
    text-decoration: none;
}

.brthcome .brath_list li a:hover {
    color: var(--text-color);
}

.sub-category .card {
    border: none;
    text-align: center;
    margin-bottom: 20px;
}

.sub-category .card .card-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-category .card .card-body .title {
    text-decoration: none;
    font-size: 20px;
    line-height: 25px;
    color: #000;
    width: 100%;
}

.sub-category .card .card-body::before {
    content: '';
    position: absolute;
    max-width: 250px;
    width: 100%;
    height: 2px;
    background: var(--orange-color);
    bottom: 0;
    left: 50%;
    transform: translatex(-50%);
}

.product-sub .card {
    border: none;

}

.product-sub .card.card-info {
    margin-left: 130px;
    position: relative;
}

.product-sub .card.card-info .product-detail {
    position: absolute;
    bottom: 50px;
    left: 0;
}

.product-sub .card.card-info .product-detail .title {
    font-size: 35px;
    line-height: 40px;
    color: var(--orange-color);
    position: relative;
    padding-bottom: 20px;
    text-decoration: none;
    margin-bottom: 20px;

}

.product-sub .card.card-info .product-detail .title a {
    font-family: var(--font-Signik);
}

.product-sub .card.card-info .product-detail .title::before {
    content: '';
    position: absolute;
    max-width: 484px;
    width: 100%;
    height: 2px;
    background: var(--orange-color);
    bottom: 0;
    left: 0;
}

.product-sub .card.card-info p {
    font-size: 15px;
    line-height: 18px;
}

.product-sub .card.card-info .btn {
    font-family: var(--font-Signik);
    padding: 14px 37px;
    margin-top: 23px;
}

.product-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}

.product-list:not(:last-child):before {
    content: '';
    position: absolute;
    max-width: 626px;
    width: 100%;
    height: 1px;
    background: #000;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.product-list p {
    font-size: 20px;
    line-height: 25px;
    color: #000;
}

.product-list p:last-child {
    font-weight: 500;
}

.product-sub .Product-item {
    margin-top: 70px;
}

.product-sub .Product-item .sub-title p {
    font-family: var(--font-Signik);
    color: var(--orange-color);
    padding: 0;
    margin-bottom: 50px;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
}

.product-sub .card .images img {
    width: 100%;
    height: 100%;
}

.single_detail .page_title {
    width: 100%;
    border-bottom: 2px solid var(--orange-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.single_detail .page_title h4 {
    font-weight: 500;
    font-size: 26px;
    line-height: 32px;
    font-family: var(--font-Signik);
    color: var(--orange-color);
}

.single_detail .page_title p {
    font-weight: 400;
    font-size: 22px !important;
    line-height: 26px !important;
}

.info_title {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px
}

.info_title span:last-child {
    margin-left: 50px;
    font-weight: 600;
}

.single_detail .sub_ditle {
    font-weight: 400;
    font-size: 22px !important;
    line-height: 26px !important;
}

.single_detail .button p {
    margin: 0;
    margin-top: 20px;
}

.single_detail .button .btn {
    margin-top: 15px !important;
}

/* Sub Product Section End */

/* contactc Section Start*/

.contact-page {
    background-image: url("../images/con-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 766px;
    height: 100%;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-page .contact_detail {
    max-width: 587px;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    margin-left: 60px;
}

.contact-page .contact_detail .contact_title {
    width: 100%;
    border-bottom: 4px solid var(--orange-color);
    margin-bottom: 20px;
}

.contact-page .contact_detail .contact_title h6 {
    font-family: var(--font-Signik);
    font-weight: 600;
    font-size: 49px;
    line-height: 51px;
    color: var(--orange-color);
    max-width: 350px;
    width: 100%;
    padding-bottom: 20px;
}

.contact_list {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 350px;
    width: 100%;
    margin-bottom: 24px;
}

.contact_list .icon {
    border-radius: 50%;
    background: #FF722D;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
}

.contact_list .contact_data .headding {
    font-family: var(--font-Signik);
    font-weight: 600;
    font-size: 17px;
    line-height: 21px;
    margin-bottom: 10px;
    display: block;
    color: var(--orange-color);
}

.contact_list .contact_data p {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
}

.contact_from {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 80px;
}

.contact_from .form .form_title {
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    color: #fff;
    font-family: var(--font-Signik);
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 4px solid #fff;
    margin-bottom: 15px;
}

.contact_from .form {
    max-width: 600px;
    width: 100%;
    background: #FF722D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    border-radius: 15px;
    padding: 20px;
}

.contact_from .form input,
.contact_from .form textarea {
    max-width: 550px;
    background: #fff;
    border: none;
    box-shadow: none;
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    padding: 14px;
}

.contact_from .form input::-webkit-outer-spin-button,
.contact_from .form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact_from .form button {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0.03em;
    color: var(--orange-color);
    padding: 14px 30px;
    border-radius: 10px;
}

/* contactc Section End*/

.about-section {
    margin-bottom: 80px;
}

.about-section .images {
    width: 100%;
}

.about-section .box {
    max-width: 555px;
    width: 100%;
    margin-top: 50px;
}

.about-section .box .about_title {
    width: 100%;
    border-bottom: 4px solid var(--orange-color);
    margin-bottom: 20px;
}

.about-section .box .about_title h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 8px;
    color: var(--text-color);
    font-family: var(--font-Signik);
    text-transform: initial;
}

.about-section .box .box-content h6 {
    font-family: var(--font-Signik);
    font-weight: 600;
    font-size: 33px;
    line-height: 41px;
    color: var(--orange-color);
    margin-bottom: 5px;
}

.about-section .box .box-content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 20px;
}

.about-section .box .box-content p:last-child {
    margin-bottom: 0;
}

.about-section .box .box-content p span {
    color: var(--orange-color);
}

.certification {
    margin: 50px 0;
}

.certification .heading {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border-bottom: 4px solid var(--orange-color);
}

.certification .heading h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 52px;
    font-family: var(--font-Signik);
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: center;
}

.certification .certifi_detail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.certification .certifi_detail .images img {
    width: 100%;
    height: 100%;
}

.about_section {
    background-image: url("../images/about_title.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 754px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_section .about_section_title h5 {
    font-family: var(--font-Inter);
    font-weight: 700;
    font-size: 71px;
    line-height: 86px;
    text-align: center;
    color: #fff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 260px;
}

.about_pages {
    margin-bottom: 100px;
}

.about_pages .about_inner {
    align-items: center;
    justify-content: center;
}

.about_pages .box .box_content {
    padding-right: 50px;
}

.about_pages .box .box_content .box_title h6 {
    font-weight: 600;
    font-size: 37px;
    line-height: 46px;
    font-family: var(--font-Signik);
    color: var(--text-color);
    margin-bottom: 25px;
}

.about_pages .box .box_content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
}

.about_pages .box .box_content p span {
    color: var(--orange-color);
}

.about_pages .images img {
    width: 100%;
    height: 100%;
}

.about_section_one {
    padding: 20px;
    margin-bottom: 60px;
}

.about_section_one .box_details .title {
    text-align: center;
}

.about_section_one .box_details .title h6 {
    font-family: var(--font-Signik);
    font-weight: 600;
    font-size: 37px;
    line-height: 46px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.about_section_one .box_content {
    padding: 0 80px;
}

.about_section_one .box_content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
}

.about_section_two {
    margin-bottom: 60px;
}

.about_section_two .section_two_inner {
    margin: 0 80px;
}

.about_section_two .section_two_inner .row {
    align-items: center;
    justify-content: center;
}

.about_section_two .section_two_inner .box {
    max-width: 560px;
    width: 100%;
}

.about_section_two .section_two_inner .box .box_content h6 {
    font-weight: 600;
    font-size: 27px;
    line-height: 33px;
    font-family: var(--font-Signik);
    color: var(--orange-color);
    margin-bottom: 15px;
}

.about_section_two .section_two_inner .box .box_content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
}

.about_section_two .section_two_inner .box .box_content p:not(:last-child) {
    padding-bottom: 15px;
}

.about_section_two .section_two_inner .images img {
    width: 100%;
    height: 100%;
}

.about_section_three {
    margin: 100px 0;
    position: relative;
}

.about_section_three .section_two_inner {
    border: 10px solid var(--text-color);
    margin: 0 80px;
    border-radius: 30px;
    min-height: 460px;
    height: 100%;
    position: relative;
}

.about_section_three .section_two_inner .row {
    align-items: center;
    justify-content: center;
}

.about_section_three .section_two_inner .images {
    position: absolute;
    top: -50px;
    left: -120px;
}

.about_section_three .section_two_inner .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 460px;
    height: 100%;
}

.about_section_three .section_two_inner .box .box_content {
    padding: 20px 80px;
}

.about_section_three .section_two_inner .box .box_content h6 {
    font-weight: 600;
    font-size: 27px;
    line-height: 33px;
    font-family: var(--font-Signik);
    color: var(--orange-color);
}

.about_section_three .section_two_inner .box .box_content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
}

.certificates_section {
    background-image: url("../images/cgb1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 754px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificates_section .certificates_section_title h5 {
    font-family: var(--font-Inter);
    font-weight: 700;
    font-size: 71px;
    line-height: 86px;
    text-align: center;
    color: #fff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 260px;
}

.footer {
    padding: 0 40px;
    padding-top: 95px;
    padding-bottom: 80px;
    background: #FF722D;
    border-radius: 20px 20px 0px 0px;
}

.footer .row {
    gap: 25px;
}

.footer .col-md-6:first-child {
    padding-left: 0;
}

.footer .col-md-6:last-child {
    padding-right: 0;
}

.footer .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 17px;
}

.footer .footer_bold {
    font-weight: 600;
}

.footer .logo p {
    font-size: 20px;
    line-height: 21px;
    color: #fff;
}

.footer .footer-detail {
    font-size: 17px;
    line-height: 20px;
    color: #fff;
    font-weight: 400;
}

.footer h6 {
    font-family: var(--font-Signik);
    font-weight: 700;
    font-size: 25px;
    line-height: 31px;
    letter-spacing: 0.02em;
    color: var(--text-color);
    margin-bottom: 30px;
}

.footer-addres .icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    gap: 20px;
    padding: 0;
    margin-bottom: 20px;
}

.footer-addres .icon.iocn_one {
    gap: 80px;
}

.footer-addres .icon.iocn_two {
    gap: 90px;
}

.footer-addres .icon img:first-child {
    align-self: baseline;
}

.footer-addres .icon img {
    align-self: unset;
}

.footer-addres .icon a,
.footer-addres .icon p {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 0;
}

.footer .scoial {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}



.footer .navigate-menu p {
    display: flex;
    align-items: center;
    position: relative;
}

.footer .navigate-menu p::before {
    content: '';
    width: 7px;
    height: 1px;
    background: #fff;
    top: 0;
}

.footer .navigate-menu a {
    font-family: var(--font-Signik);
    font-weight: 400;
    font-size: 21px;
    line-height: 26px;
    text-decoration: none;
    color: #fff;
    padding-left: 20px;
}

/* .back-to-top {
    width: 76px;
    height: 76px;
    position: fixed;
    bottom: 20px;
    right: 30px;
    background: var(--orange-color);
    border-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    z-index: 10;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.25);
    transition: all .5s ease;
    opacity: 0;
}

.back-to-top.slow{
    opacity: 1;
} */

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.float svg {
    width: 25px;
    fill: #FFF;
}

.float:hover svg {
    fill: #000;
}

.certi_images {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
}


.certi_images img {
    width: 100%;
}

@media (min-width: 1500px) {
    .container {
        max-width: 1440px;
    }
}

@media (max-width: 1300px) {
    .about_section_three .section_two_inner .box .box_content {
        padding: 20px;
    }
}

@media (max-width: 1200px) {
    .menu .menu-link {
        margin-left: 7px;
        margin-right: 7px;
        font-size: 18px;
    }

    .about-section .row {
        display: block;
    }

    .about-section {
        text-align: center;
        padding: 20px;
    }

    .about-section .row .col-md-6 {
        width: 100%;
    }

    .about-section .box {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .menu {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background: #fff;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        padding: 1rem 0;
        transition: all 0.8s ease-in-out;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        z-index: 2;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        display: block;
    }

    .menu.active {
        border-top: 1px solid var(--blue-color);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .menu .menu-item {
        padding: 10px;
    }

    .menu .menu-link {
        font-size: 20px;
        line-height: 23px;
        color: #000;
        font-weight: 500;
        padding: 0;
        text-transform: uppercase;
        text-decoration: none;
    }

    .dropdwon ul {
        list-style: none;
        padding: 15px;
        background: unset;
        padding-bottom: 0 !important;
        z-index: 10;
        display: block;
        position: relative;
        margin-bottom: 0 !important;
        width: 100%;
        height: 100% !important;
    }

    .dropdwon ul li {
        padding: 5px;
        padding-bottom: 5px;
    }

    .menu-item:last-child .menu-link {
        padding-right: unset;
    }

    .menu-item:first-child .menu-link {
        margin-left: 7px;
    }

    .navbar .menubar {
        display: block;
    }

    .navbar .menubar i {
        font-size: 30px;
    }

    .home-banner {
        margin: 50px 0;
        padding-left: 24px;
    }

    .home-content .home-text {
        font-size: 30px;
        line-height: 41px;
    }

    .tree-section .container .row {
        display: block !important;
    }

    .tree-section .container .row .col-md-6 {
        width: 100%;
    }

    .tree-section .box .inner-box {
        padding: 0;
    }

    .tree-section .box .inner-box .box-content {
        margin: 0;
        margin-bottom: 40px;
    }

    .tree-section .box .inner-right-box .box-right-content {
        margin: 0;
        margin-bottom: 40px;
    }

    .tree-section .box .inner-right-box {
        margin-top: 40px;
    }

    .tree-section .box .box-content .box-detail,
    .tree-section .box .box-right-content .box-detail {
        max-width: 450px;
    }

    .tree-section .box .box-right-content,
    .tree-section .box .box-content {
        padding: 0 16px;
    }

    .tree-section .box .box-right-content .images {
        -webkit-order: 1;
        order: 1;
    }

    .tree-section .box .box-right-content .box-detail {
        -webkit-order: 2;
        order: 2;
        text-align: left;
    }

    .tree-section .box .inner-right-box,
    .tree-section .box .inner-right-box .box-right-content,
    .tree-section .box .inner-box .box-content {
        margin-top: 25px;
    }

    .customers .customers-slider .owl-prev,
    .customers .customers-slider .owl-next {
        top: 0;
        position: relative;
        left: 0;
    }

    .customers {
        margin: 50px 0;
        height: 100%;
        background-image: unset;
    }

    .galler-section .box .image-section .column,
    .galler-section .box .image-section .column:first-child,
    .galler-section .box .image-section .column:last-child {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
        margin-top: 0;
    }

    .product-sub .card.card-info {
        margin-left: 50px;
    }

    .product-sub .card.card-info .product-detail {
        position: relative;
        bottom: 0;
        left: 0
    }

    .back-to-top {
        width: 65px;
        height: 65px;
    }

    .back-to-top img {
        width: 40px;
    }

    .home-content .home-btn .btn {
        padding: 15px;
    }

    .home-content .home-btn {
        max-width: 200px;
    }

    .product-page {
        min-height: 520px;
    }

    .home-content .home-text::before {
        display: none;
    }

    .protfolio::before {
        display: none;
    }

    /* 

   .product-sub .product-info{
        display: block;
    }

    .product-sub .card.card-detail .product-detail{
        position: relative;
        margin-left: 0;
    } */
}

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .footer .col-md-6 {
        margin-bottom: 40px;
    }

    .about-section .images img {
        width: 100%;
        height: 100%;
    }

    .about_pages .box .box_content {
        padding-right: 0;
        padding: 20;
        text-align: center;
        margin-bottom: 20px;
    }

    .about_section_one {
        padding: 10px;
    }

    .about_section_one .box_content {
        padding: 0 10px;
    }

    .about_section_two .section_two_inner .box {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .about_section_two .section_two_inner {
        margin: 20px;
        padding: 0;
    }

    .about_section_three .section_two_inner {
        margin: 10px;
        padding: 20px;
        min-height: 100%;
    }

    .about_section_three .section_two_inner .images {
        position: relative;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .about_section_three .section_two_inner .images img {
        width: 100%;
        height: 100%;
    }

    .about_section_three .section_two_inner .box {
        min-height: 100%;
    }

    .footer .scoial {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .home-banner {
        padding: 0;
    }

    .home-content {
        padding: 0 16px;
    }

    .home-content .home-text {
        font-size: 25px;
        line-height: 35px;
        text-align: center;
    }

    .home-content .sub-title {
        text-align: center;
    }

    .home-content .home-btn {
        margin: 0 auto;
        margin-top: 15px;
    }

    .home-content .home-text::before {
        display: none;
    }

    .tree-section .box .box-content .box-detail .tree-title,
    .tree-section .box .box-right-content .box-detail .tree-title {
        font-size: 25px;
        line-height: 30px
    }

    .tree-section .box .box-content .box-detail,
    .tree-section .box .box-right-content .box-detail {
        margin: 0 auto;
    }

    .tree-section .box .inner-box .box-content,
    .tree-section .box .box-right-content {
        display: block;
        text-align: center;
    }

    .tree-section .box .box-right-content .images,
    .tree-section .box .box-content .images {
        text-align: center;
        margin-bottom: 10px;
    }

    .tree-section .box .box-right-content .box-detail {
        text-align: center;
    }

    .tree-section {
        height: 100%;
        margin-top: 30px;
    }

    .customers {
        padding: 0 16px;
    }

    .customers::before {
        display: none;
    }

    .customers .customers-title {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 2px;
    }

    .customers .customers-slider .customers-text p {
        font-size: 18px;

    }

    .customers .customers-slider .customers-name p {
        margin: 0;
    }

    .customers {
        margin: 30px 0;
    }

    .galler-section .box .image-section .column,
    .galler-section .box .image-section .column:first-child,
    .galler-section .box .image-section .column:last-child {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
        margin-top: 0;
    }

    .product-sub .card.card-info {
        margin-left: 0;
    }

    .contact-page .contact_detail {
        margin-left: 0;
        margin: 20px;
    }

    .about_section,
    .certificates_section {
        max-height: 295px;
    }

    .about_section_three .section_two_inner .box .box_content {
        padding: 0;
        margin-top: 30px;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
    }

    .back-to-top img {
        width: 30px;
    }

    .tree_title_section h6,
    .certification .heading h6 {
        font-size: 30px;
        line-height: 35px;
        padding-bottom: 10px;
    }

    .certification .heading h6 {
        margin-bottom: 5px;
    }

    .about_section .about_section_title h5,
    .product-page .ptoduct-title h5,
    .certificates_section .certificates_section_title h5 {
        font-size: 50px;
        line-height: 55px;
    }

    .product-page {
        min-height: 320px;
    }

    .galler-section {
        background-image: unset;
    }

    .footer-addres .icon a,
    .footer-addres .icon p {
        word-break: break-all;
    }

}

@media (max-width: 576px) {
    .footer {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .footer .scoial {
        justify-content: flex-start;
        gap: 15px;
    }

    .product-sub .Product-item {
        margin-top: 30px;
        padding: 30px 16px;
    }

    .galler-section img {
        width: 100%;
        height: 100%;
    }

    .galler-section .box img {
        width: 280px;
        height: 280px;
    }

    .contact-page .contact_detail {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
        padding: 20px;
    }

    .contact-page .contact_detail .contact_title h6 {
        font-size: 25px;
        line-height: 30px;
    }

    .contact_list {
        display: block;
    }

    .contact_list .icon {
        width: 50px;
        height: 50px;
        text-align: center;
    }
}


@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .customers .customers-title {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 25px;
    }

    .brthcome .brath_list li {
        font-size: 15px;
        line-height: 20px;
        word-break: break-all;
    }

    .contact-page .contact_detail {
        margin: 5px;
    }

    .contact-page .contact_detail {
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }

    .certificates_section .certificates_section_title h5 {
        font-size: 40px;
        line-height: 45px;
    }
}


/* New */

.blogpost .blog_title {
    margin-top: -60px;
    width: 100%;
    display: block;
    border-bottom: 7px solid var(--orange-color);
}

.blogpost .blog_title h3 {
    font-family: var(--font-Work-Sans);
    font-weight: 700;
    font-size: 45px;
    line-height: 53px;
    color: var(--orange-color);
    margin-bottom: 25px;
}

.blog_section {
    margin-top: 60px;
    margin-bottom: 150px;
}

.blog_section .box_section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.blog_section .box_section .box {
    background: #fff;
    position: relative;
    width: 100%;
    border: 6px solid #D9D9D9;
    box-shadow: 20px 16px 44px 10px rgba(0, 0, 0, 0.34);
    border-radius: 30px;
    overflow: hidden;
}

.blog_section .box_section .box .box_link {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
}

.blog_section .box_section .box .images {
    max-width: 400px;
    max-height: 170px;
    min-height: 170px;
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.blog_section .box_section .box .images img {
    width: 100%;
    overflow: hidden;
}

.blog_section .box_section .box .box_content {
    padding: 12px;
}

.blog_section .box_section .box .box_content a {
    font-family: var(--font-Work-Sans);
    font-weight: 700;
    font-size: 35px;
    line-height: 53px;
    color: #000;
    text-decoration: none;
}

.blog_section .box_section .box:hover .box_content a {
    color: var(--orange-color);
    transition: all 1s ease-in-out;
}

.blog_section .box_section .box .box_content a span {
    text-transform: uppercase;
    color: var(--orange-color);
}

.blog_section .box_section .box:hover .box_content a span {
    color: #000;
    transition: all 1s ease-in-out;
}

.market_spices {
    background-image: url("../images/spices1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog_title h5 {
    font-family: var(--font-Inter);
    font-weight: 700;
    font-size: 71px;
    line-height: 86px;
    text-align: center;
    color: #fff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 140px;
}


.spices_blog {
    margin: 120px 0;
}

.spices_blog .spices_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
    justify-content: center;
    margin-bottom: 75px;
}

.spices_blog .spices_box .box .images img {
    width: 100%;
    height: 100%;
}


.spices_blog .spices_box .box .box_content p {
    font-size: 25px;
    line-height: 29px;
    font-weight: 400;
    font-family: var(--font-Work-Sans);
    margin-bottom: 20px;
}

.spices_blog .spices_box .box .box_content p:last-child {
    margin-bottom: 0;
}

.spices_blog .spices_box .box .box_content p span {
    color: var(--orange-color);
}

.bootom_images img {
    width: 100%;
    height: 100%;
}

.market_rice {
    background-image: url("../images/rice1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_heading {
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 40px;
    font-family: var(--font-Work-Sans);
    font-weight: 400;
}

.rice_list li {
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 10px;
    font-family: var(--font-Work-Sans);
    font-weight: 400;
}

.spices_blog .spices_box .box .box_content .bold {
    font-weight: 600;
}

.spices_blog .margin_t {
    margin-top: 100px;
}

.market_oilseeds {
    background-image: url("../images/oil_seesd1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oli_m {
    margin-bottom: 80px;
}

@media (max-width: 1200px) {
    .blog_section .box_section {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .spices_blog .spices_box {
        display: block;
    }

    .spices_blog .spices_box .box:not(:last-child) {
        margin-bottom: 40px;
    }

    .blog_title h5 {
        font-size: 50px;
        line-height: 60px;
    }
    .blog_section .box_section{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .blog_section .box_section .box{
        max-width: 300px;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .blog_section .box_section {
        display: block;
        padding: 15px;
    }

    .blog_section .box_section .box:not(:first-child) {
        margin: 50px 0;
    }

    .blog_section .box_section .box .box_content a {
        font-size: 28px;
        line-height: 35px;
    }

    .blogpost {
        padding: 15px;
    }

    .spices_blog {
        padding: 15px;
    }
    
    .blog_section .box_section{
        display: flex;
        flex-direction: column;
        gap: 50px;
        justify-content: center;
        align-items: center;
    }
    .blog_section .box_section .box{
        margin: unset;
    }
    .blog_section .box_section .box:not(:first-child){
        margin: 0;
    }
}

@media (max-width: 568px) {
    .blog_section .box_section .box .box_content a {
        font-size: 20px;
        line-height: 25px;
    }

    .blogpost .blog_title h3 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .spices_blog .spices_box .box .box_content p {
        font-size: 20px;
        line-height: 25px;
    }

    .spices_blog .margin_t {
        margin-top: 40px;
    }

    .oli_m {
        margin-bottom: 40px;
    }

    .blog_title h5 {
        font-size: 45px;
        line-height: 55px;
    }
}


/* Container Background - A soft professional gradient or image */
.clean-contact-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%); /* Fresh Nature Gradient */
    /* ALTERNATIVE: Use a background image of a farm/spices with this: */
    /* background: url('your-farm-image.jpg') no-repeat center center/cover; */
    font-family: 'Segoe UI', sans-serif;
}

/* The Main Glass Card */
.glass-card {
    display: flex;
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.7); /* Milky White Transparency */
    backdrop-filter: blur(20px); /* The Blur Effect */
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* Soft Shadow */
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

/* Left Side: Green Info Panel */
.contact-info {
    flex: 1;
    background: #FF722D; /* FitTree Dark Green with transparency */
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-row .icon {
    font-size: 20px;
    margin-right: 15px;
    color: #84fab0; /* Light Green Accent */
}

.info-row .text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}
.info-row .text span {
    font-size: 13px;
    opacity: 0.9;
}

/* Right Side: Form */
.contact-form {
    flex: 1.2;
    padding: 40px;
    background: transparent; /* Shows the milky glass effect */
}

.contact-form h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Clean, Readable Inputs */
.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle border */
    background: rgba(255, 255, 255, 0.9); /* Almost solid white for readability */
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #1e6432; /* Green focus color */
    box-shadow: 0 0 5px rgba(30, 100, 50, 0.2);
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #FF722D; /* FitTree Green */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #144a24; /* Darker Green on Hover */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .glass-card {
        flex-direction: column;
    }
    .contact-info, .contact-form {
        padding: 30px 20px;
    }
}

/* --- FitTree Popup Styles --- */

/* Overlay */
.ft-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker for better focus */
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999; /* Very high to sit on top of everything */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ft-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Container */
.ft-popup-container {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 480px;
    width: 90%;
    
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Segoe UI', sans-serif; /* Clean font */
    border-top: 5px solid #ff722d; 
}

.ft-popup-overlay.active .ft-popup-container {
    transform: translateY(0);
}

/* Close Button */
.ft-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 20px;
    color: #555;
    line-height: 1;
}

.ft-close-btn:hover {
    background: #ff722d; 
    color: white;
}

/* Header */
.ft-popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.ft-popup-icon {
    width: 60px;
    height: 60px;
     /* Light Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.ft-popup-icon svg {
    width: 30px;
    height: 30px;
    fill: #ff722d; /* Dark Green */
}

.ft-popup-header h1 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    margin-top: 0;
}

.ft-popup-header p {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Details List */
.ft-contact-details {
    background: #f9fafb;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

.ft-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.ft-detail-item:last-child {
    margin-bottom: 0;
}

.ft-detail-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border: 1px solid #e5e7eb;
}

.ft-detail-icon svg {
    width: 18px;
    height: 18px;
    fill: #192853;
}

.ft-detail-text h4 {
    font-size: 1rem;
    color: #888;
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ft-detail-text p {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* CTA Button */
.ft-cta-button {
    width: 100%;
    padding: 14px;
    background: #ff722d; /* Green Gradient */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.ft-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.4);
}

/* --- New Form Styles --- */

/* Utility to toggle views */
.ft-hidden {
    display: none !important;
}

/* Form Styling */
.ft-form-group {
    margin-bottom: 15px;
    text-align: left;
}

.ft-label {
    display: block;
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.ft-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1.2rem;
    transition: border-color 0.3s;
    background: #fdfdfd;
}

.ft-input:focus {
    outline: none;
    border-color: #2E7D32; /* FitTree Green */
    background: white;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

textarea.ft-input {
    resize: vertical;
    min-height: 80px;
}

/* Back Link styling */
.ft-back-link {
    display: inline-block;
    margin-top: 15px;
    color: #888;
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px dashed #ccc;
}

.ft-back-link:hover {
    color: #333;
    border-color: #333;
}