html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: #000000;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    /* overflow-x: hidden; */
    /* overflow-y: auto; */
    font-size: 18px;
    line-height: 30px;
    position: relative;
}

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

a {
    text-decoration: none;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

p:last-child {
    margin-bottom: 0;
}

.nice-select .list {
    width: 100%;
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
}

.hr-style-1 {
    border-top: 2px dashed #499E82;
    background-color: transparent;
    margin: 40px 0px;
    opacity: 1;
}

/* Color :start */
.text-color-1 {
    color: #0F513B;
}

.text-color-2 {
    color: #696969;
}

.bg-color-1 {
    background-color: #0F513B;
}

.bg-color-2 {
    background-color: #696969;
}

/* Color :End */

/* viewpoint sizing :start */
.vw-25 {
    width: 25vw !important;
}

.vw-50 {
    width: 50vw !important;
}

.vw-75 {
    width: 75vw !important;
}

/* viewpoint sizing :end */

/* --- heading-style-1 Style :Start --- */
.heading-style-1 {
    font-weight: 600;
    font-size: 42px;
    line-height: 55px;
    color: #0F513B;
    margin-bottom: 15px;
}

.heading-style-1>span {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #424242;
    display: block;
}

/* --- heading-style-1 Style :End --- */

/* --- heading-style-2 Style :Start --- */
.heading-style-2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
    color: #0F513B;
    text-align: center;
}

/* .heading-style-2 > span {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #424242;
    display: block;
} */
/* --- heading-style-2 Style :End --- */

/* --- Buttons Style :Start --- */
.btn-style-1 {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    border: 1px solid #0F513B;
    background-color: transparent;
    border-radius: 8px;
    display: inline-block;
    padding: 15px 15px;
    margin-top: 15px;
}

.btn-style-1:hover {
    color: #ffffff;
    background-color: #0F513B;
}

.btn-style-1 svg path {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.btn-style-1:hover svg path {
    stroke: #ffffff;
}

.btn-style-2 {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    background-color: #0F513B;
    border: 1px solid #0F513B;
    border-radius: 8px;
    display: inline-block;
    padding: 15px 15px;
    margin-top: 15px;
}

.btn-style-2:hover {
    color: #0F513B;
    background-color: transparent;
}

.btn-style-2 svg path {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.btn-style-2:hover svg path {
    stroke: #0F513B;
}



.btn-style-3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid transparent;
    border-radius: 8px;
    backdrop-filter: blur(16px);
    display: inline-block;
    padding: 15px 15px;
    margin-top: 15px;
}

.btn-style-3:hover {
    color: #0F513B;
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(16px);
}

/* .btn-style-3 svg path {
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
        -ms-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
} */
/* .btn-style-3:hover svg path {
    stroke: #0F513B;
} */


.btn-style-4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #0F513B;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    margin-top: 15px;
}

.btn-style-4:hover {
    color: #ffffff;
    background-color: transparent;
}

.btn-style-4 svg {
    margin-left: 10px;
}

.btn-style-4 svg path {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.btn-style-4:hover svg path {
    stroke: #ffffff;
}



.btn-play-1 {
    font-size: 90px;
    color: #ffffff;
    position: relative;
}

.btn-play-1 i {
    position: relative;
    background-color: rgba(15, 81, 59, 1);
    border-radius: 100%;
    z-index: 1;
}

.btn-play-1::before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    height: 5rem;
    width: 5rem;
    margin-left: -2.5rem;
    margin-top: -2.5rem;
    background: rgba(15, 81, 59, 0.28);
    border-radius: 50%;

    animation: shadow-pulse 1.8s infinite;

}

.btn-play-1:hover {
    color: #ffffff;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(15, 81, 59, 0.28);
    }

    50% {
        box-shadow: 0 0 0 25px rgba(15, 81, 59, 0.28);
    }

    100% {
        box-shadow: 0 0 0 0px rgba(15, 81, 59, 0.28);
    }
}



.btn-play-2 {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    width: 56px;
    height: 56px;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-play-2 i {
    font-size: 16px;
    color: #CFCFCF;
    text-align: center;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.btn-play-2:hover {
    background: #0F513B;
}

.btn-play-2:hover i {
    color: #ffffff;
}

/* --- Buttons Style :End --- */


/* --- Box Style 1 :Start --- */
.box-style-1 {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 430px;
    height: 100%;
}

.box-style-1::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2964) 0%, rgba(0, 0, 0, 0.78) 64.8%);
}

.box-style-1 .box-style-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.box-style-1 .box-style-inner .boxstyle-text {
    padding: 10px 0px;
    margin: auto 0;
}

.box-style-1 .box-style-inner .boxstyle-text h4 {
    font-weight: 600;
    font-size: 22px;
    line-height: 34px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-style-1 .box-style-inner .boxstyle-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #F1F0F0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-style-1 .box-style-inner .boxstyle-buttons {
    width: 100%;
    text-align: center;
}

.box-style-1.gradient-1::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2964) 100%, rgba(0, 0, 0, 0.78) 64.8%);
}

.box-style-1.square {
    min-height: auto;
}

.box-style-1.square .box-style-inner {
    width: 100%;
    height: 0;
    padding-top: 100%;
}

/* --- Box Style 1 :End --- */

/* --- Box Style 2 :Start --- */
.box-style-2 {
    background: #FFFFFF;
    box-shadow: 0px 5px 27px rgba(0, 0, 0, 0.28);
    border-radius: 8px;
    text-align: center;
    padding: 30px 20px;
    margin: 12px 0px;
    height: calc(100% - 24px);
}

.box-style-2 img {
    margin-bottom: 15px;
}

.box-style-2 h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #373737;
    margin-bottom: 10px;
}

.box-style-2 p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #696969;
}

/* --- Box Style 2 :End --- */

/* --- Box Style 3 :Start --- */
.box-style-3 {
    width: 100%;
    height: calc(100% - 24px);
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 12px;
    padding: 10px;
    margin: 12px 0px;
}

.box-style-3 .box-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.box-style-3 .box-img::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56));
}

.box-style-3 .box-img img {
    width: 100%;
    height: auto;
}

.box-style-3 .box-txt {
    margin: 10px 0px;
}

.box-style-3 .box-txt h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #424242;
    margin-bottom: 0;
}

/* --- Box Style 3 :End --- */

/* --- bg-box-style-1 :Start --- */
.bg-box-style-1 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;

    min-height: 470px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.bg-box-style-1::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.84) 51.2%, rgba(0, 0, 0, 0) 128.8%);
}

.bg-box-style-1 .bgbox-inner {
    text-align: center;
    padding: 30px 40px;
    position: relative;
}

.bg-box-style-1 .bgbox-inner h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
}

.bg-box-style-1 .bgbox-inner p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #F1F0F0;
    margin-bottom: 30px;
}

/* --- bg-box-style-1 :End --- */

/* --- bg-box-style-2 :Start --- */
.bg-box-style-2 {
    padding: 150px 0px;
    position: relative;
    background-color: rgba(15, 81, 59, 1);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    min-height: 700px;
}

.bg-box-style-2::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 81, 59, 0.9);
}

.bg-box-style-2 .bgbox-inner {
    position: relative;
}

.bg-box-style-2 .bgbox-inner h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #25A97D;
}

.bg-box-style-2 .bgbox-inner h3 {
    font-weight: 600;
    font-size: 42px;
    line-height: 50px;
    color: #FFFFFF;
}

.bg-box-style-2 .bgbox-inner p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}

/* --- bg-box-style-2 :End --- */

/* --- Form Style :start --- */
.form-style-1 .form-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #9A9A9A;
    margin-bottom: 0;
}

.form-style-1 .form-control {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #C0C0C0;
    border-radius: 0;
    padding-left: 0;
}

.form-style-1 .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
    border-color: #000000;
}

.form-style-1 .nice-select {
    font-weight: 500;
    font-size: 18px;
    line-height: 43px;
    color: #000000;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #C0C0C0;
    border-radius: 0;
    height: 43px;
    padding-left: 0;
}

.form-style-1 .input-group.phone .nice-select {
    font-weight: 500;
    font-size: 18px;
    line-height: 43px;
    color: #000000;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    height: 43px;
}

/* --- Form Style :end --- */

/* --- txt-img-s1 Style :start --- */
.txt-img-s1 {
    width: 100%;
    height: auto;
    background-color: #0F513B;
    overflow: hidden;
}

.txt-img-s1 .tis-text {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 130px 0px;
}

.txt-img-s1 .tis-text h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #25A97D;
    margin-bottom: 0;
}

.txt-img-s1 .tis-text h3 {
    font-weight: 600;
    font-size: 40px;
    line-height: 55px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.txt-img-s1 .tis-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.7);
}

.txt-img-s1 .tis-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.txt-img-s1 .tis-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* --- txt-img-s1 Style :end --- */

/* --- gMap Style :start --- */
.gMap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.gMap iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

/* --- gMap Style :end --- */

/* common style :End */


header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
}

header .header-callbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 15px;
    margin-left: 30px;
}

header .header-callbtn * {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

header .header-callbtn .hcbtn-txt {
    margin-left: 20px;
    text-align: right;
}

header .header-callbtn .hcbtn-txt h6 {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 0;
}

header .header-callbtn .hcbtn-txt h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 0;
}

header .header-callbtn:hover .hcbtn-img svg path {
    fill: #25A97D;
}

header .header-callbtn:hover .hcbtn-txt h6 {
    color: #25A97D;
}

header .header-callbtn:hover .hcbtn-txt h5 {
    color: #25A97D;
}


.homebanner {
    width: 100%;
    height: auto;
    position: relative;
}

.homebanner .homebanner-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 0;
}

.homebanner .homebanner-slider .owl-stage-outer {
    height: 100%;
}

.homebanner .homebanner-slider .owl-stage {
    height: 100%;
}

.homebanner .homebanner-slider .owl-item {
    height: 100%;
}

.homebanner .homebanner-slider .item {
    width: 100%;
    height: 100%;
}

.homebanner .homebanner-slider .item .hombannerimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.homebanner .homebanner-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) -21.23%, rgba(0, 0, 0, 0.204) 43.36%, rgba(0, 0, 0, 0.153) 63.05%);
}

.hombanner-inner {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 0px 150px 0px;
}

.hombanner-inner h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.hombanner-inner h3 {
    font-weight: 700;
    font-size: 70px;
    line-height: 90px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 0;
}

.hombanner-inner h3 span {
    color: #1c533c;
}

.hombanner-inner p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    margin: 20px 0px 0px 0px;
}

.hombanner-inner .hombanner-scrolldown {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 35px;
}

.hombanner-inner .hombanner-scrolldown p {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    margin: 0px 0px 10px 0px;
    opacity: 0.5;
}





.plantations-section {
    padding: 70px 0px;
}

.plantations-section .plantationssec-right img {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.plantations-section .plantationssec-right img:hover {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
}





.video-section {
    padding: 50px 0px;
}

.video-section .vsectop-wrap {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0px 200px 0px;
    position: relative;
}

.video-section .vsec-top h3 {
    font-weight: 600;
    font-size: 42px;
    line-height: 63px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.video-section .vsec-top p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #EEEEEE;
}

.video-section .vsec-top .vsec-play {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0px;
}

.video-section .vsec-bottom {
    position: relative;
    margin-top: -130px;
}







.whoweare-section {
    padding: 50px 0px;
    overflow: hidden;
}

.whoweare-section .whowearesec-head {
    text-align: center;
}

.wwa-img-wrap {
    position: relative;
    width: 100%;
    height: 1000px;
    margin-top: 30px;
    margin-bottom: -270px;
    z-index: -1;
}

.wwa-img-wrap .wrapimage {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

.wwa-img-wrap .circle-1 {
    position: absolute;
    right: 40px;
    bottom: -30px;
}

.wwa-img-wrap .circle-2 {
    position: absolute;
    right: 340px;
    bottom: 50px;
}


.wwa-bar {
    background: #FFFFFF;
    box-shadow: 0px 5px 27px rgba(0, 0, 0, 0.28);
    border-radius: 8px;
    padding: 30px 20px;
    margin: 40px 0px;
}

.wwa-bar .wwab-inner {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.wwa-bar .wwab-inner li {
    width: 25%;
}

.wwa-bar .wwab-inner li .wwab-block {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid #D9D9D9;
}

.wwa-bar .wwab-inner li:last-child .wwab-block {
    border-right: 0;
}

.wwa-bar .wwab-inner li .wwab-block h4 {
    font-weight: 600;
    font-size: 46px;
    line-height: 40px;
    text-align: center;
    color: #0F513B;
    margin-bottom: 10px;
}

.wwa-bar .wwab-inner li .wwab-block p {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #0F513B;
}



.whatweoffer-section {
    padding: 50px 0px;
}

.whatweoffer-section .whatweoffersec-head {
    text-align: center;
    margin-bottom: 50px;
}



.gallery-section {
    padding: 50px 0px;
}

.gallery-section .gallerysec-head {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-mainbox {
    background-image: url('../images/Gallery-bg-1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;

    min-height: 630px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-mainbox .gbox-inner {
    padding: 30px 30px;
    text-align: center;
}

.gallery-mainbox .gbox-inner h4 {
    font-weight: 600;
    font-size: 42px;
    line-height: 63px;
    text-align: center;
    color: #FFFFFF;
}

.gallery-mainbox .gbox-inner p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #EEEEEE;
    max-width: 1200px;
}








.getintouch-section {
    padding: 50px 0px;
}

.getintouch-section .getintouchsec-head {
    text-align: center;
    margin-bottom: 50px;
}

.getintouch-section .getintouchsec-form {
    background-color: #FBFBFB;
}

.getintouch-section .getintouchsec-form .gitsecfrm-left {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.getintouch-section .getintouchsec-form .gitsecfrm-left .gitsfl-inner {
    width: 100%;
    padding: 40px 0px 40px 0px;
}

.getintouch-section .getintouchsec-form .gitsecfrm-left .gitsfl-inner .gitsfl-title {
    font-weight: 600;
    font-size: 34px;
    line-height: 51px;
    color: #262B2E;
    margin-bottom: 50px;
}

.getintouch-section .getintouchsec-form .gitsecfrm-left .gitsfl-inner .gitsfl-title u {
    text-decoration-color: #0F513B;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
}

.getintouch-section .getintouchsec-form .gitsecfrm-right .gitsecfrm-right-inner {
    min-width: 100%;
    width: 100%;
    height: 750px;
    border-radius: 8px 0px 0px 8px;
    overflow: hidden;
}

.getintouch-section .getintouchsec-form .gitsecfrm-right .gitsecfrm-right-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



footer {
    background-image: url('../images/footer-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

footer .ftop {
    padding: 40px 0px;
}

footer .ftop-block {
    padding: 20px 0px;
}

footer .ftop-block .fsocialmedia {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
}

footer .ftop-block .fsocialmedia li {
    margin: 0px 10px 10px 0px;
}

footer .ftop-block .fsocialmedia li:last-child {
    margin-right: 0px;
}

footer .ftop-block .fsocialmedia li * {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

footer .ftop-block .fsocialmedia li a {
    width: 40px;
    height: 40px;
    background-color: #E8E8E8;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

footer .ftop-block .fsocialmedia li a i {
    color: #0F513B;
}

footer .ftop-block .fsocialmedia li a:hover {
    background-color: #0F513B;
}

footer .ftop-block .fsocialmedia li a:hover i {
    color: #E8E8E8;
}

footer .ftop-block .ftb-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    position: relative;
    margin-bottom: 30px;
}

footer .ftop-block .ftb-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 120px;
    height: 1px;
    background-color: #ffffff;
}

footer .ftop-block .ftb-title-big {
    font-weight: 700;
    font-size: 32px;
    line-height: 61px;
    color: #0F513B;
}

footer .fqlink {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .fqlink li {
    margin-bottom: 10px;
}

footer .fqlink li:last-child {
    margin-bottom: 0;
}

footer .fqlink li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
}

footer .fqlink li a:hover {
    color: #ffffff;
}

footer .faddress {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .faddress li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .faddress li:last-child {
    margin-bottom: 0;
}

footer .faddress li>div:first-child {
    width: 25px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 15px;
    text-align: center;
}

footer .faddress li p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
}

footer .faddress li a {
    color: inherit;
}

footer .faddress li a:hover {
    color: #ffffff;
}


footer .fcopyright {
    border-top: 2px solid #C0C0C0;
    padding: 25px 0px;
}

footer .fcopyright p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

footer .fcopyright p a {
    color: inherit;
}

footer .fcopyright p a:hover {
    text-decoration: underline;
}



.inner-banner {
    width: 100%;
    min-height: 650px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-banner .inbanner-title {
    font-weight: 700;
    font-size: 70px;
    line-height: 105px;
    color: #FFFFFF;
    text-align: center;
}

.inner-banner .inbanner-p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    text-align: center;
}

.inner-page {
    padding: 50px 0px 40px 0px;
}




.recentplantations-section {
    position: relative;
    background-color: #f3faf7;
}

.recentplantations-section::before {
    /* content: url('../images/Recent-Plantations-shape.svg'); */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    text-align: center;

    background-image: url('../images/Recent-Plantations-shape.svg');
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    width: 100%;
    height: 100%;
    animation: 1s slideInFromLeft forwards;
    animation-delay: 1s;
    opacity: 0;
    -webkit-transform: translateY(-75%);
    -moz-transform: translateY(-75%);
    -ms-transform: translateY(-75%);
    -o-transform: translateY(-75%);
    transform: translateY(-75%);
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.recentplantations-section .replsec-head {}

.recentplantations-section .replsec-head h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
    color: #0F513B;
    text-align: center;
}

.recentplantations-section .replsec-head p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #696969;
}

.owl-replantations {
    margin: 40px 0px 0px 0px;
}

.owl-replantations.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
    font-size: 18px !important;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    opacity: 1;
    visibility: visible;
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(3px);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.owl-replantations.owl-carousel .owl-nav button i {
    color: #ffffff;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.owl-replantations.owl-carousel .owl-nav .owl-prev {
    left: 0px;
    transform: translate(100px, -50%);
}

.owl-replantations.owl-carousel .owl-nav .owl-next {
    right: 0px;
    transform: translate(-100px, -50%);
}

.owl-replantations.owl-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 1);
}

.owl-replantations.owl-carousel .owl-nav button:hover i {
    color: #000000;
}

.contactus-pg .gMap {
    height: 600px;
}

.contact-details {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-details ul {
    width: 100%;
    height: auto;
    list-style: none;
    padding: 20px 0px;
    margin: 0;
}

.contact-details ul li {
    background: #FFFFFF;
    box-shadow: 0px 6px 14px rgba(15, 81, 59, 0.14);
    border-radius: 8px;
    padding: 20px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.contact-details ul li>div:first-child {
    flex-grow: 0;
    flex-shrink: 0;
}

.contact-details ul li>div:last-child {
    padding-left: 15px;
}

.contact-details ul li>div:last-child h5 {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #232323;
    margin-bottom: 0;
}

.contact-details ul li>div:last-child p {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #232323;
    margin-bottom: 0;
    white-space: break-spaces;
    word-break: break-all;
}

.contact-details ul li>div:last-child p a {
    color: inherit;
}

.contact-details ul li>div:last-child p a:hover {
    color: #0F513B;
    text-decoration: underline;
}

.testimonial-section {
    padding: 100px 0px;
    overflow: hidden;
}

.testimonial-section .testimonialsec-head {
    text-align: center;
    margin-bottom: 40px;
}


.owl-testimonials .owl-stage-outer {
    filter: drop-shadow(0px 10px 10px rgba(15, 81, 59, 0.17));
}

.testimonials-wrap .testi-block {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    /* box-shadow: 0px 8px 18px -1px rgba(15, 81, 59, 0.17); */
    border-radius: 8px;
    padding: 30px 30px;
}

.testimonials-wrap .testi-block .tb-profile img.tbpuser {
    width: 46px;
    height: 46px;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 8px;
}

.testimonials-wrap .testi-block .tb-profile h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #0F513B;
    margin-bottom: 0;
}

.testimonials-wrap .testi-block .tb-profile p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #232323;
    margin-bottom: 0;
}

.testimonials-wrap .testi-block .tb-text {
    margin-top: 24px;
}

.testimonials-wrap .testi-block .tb-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #696969;
}

.pagination-style-1 {
    margin: 25px 0px;
}

.pagination-style-1 .pagination {
    flex-wrap: wrap;
}

.pagination-style-1 .pagination .page-item {
    margin-right: 20px;
}

.pagination-style-1 .pagination .page-item:last-child {
    margin-right: 0px;
}

.pagination-style-1 .pagination .page-item .page-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #BCBCBC;
    background-color: transparent;
    width: 64px;
    height: 64px;
    border: 1px solid #BCBCBC;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-style-1 .pagination .page-item:hover .page-link,
.pagination-style-1 .pagination .page-item.active .page-link {
    color: #ffffff;
    border-color: #0F513B;
    background-color: #0F513B;
}

.pagination-style-1 .pagination .page-item:first-child .page-link,
.pagination-style-1 .pagination .page-item:last-child .page-link {
    border-color: transparent;
}

.pagination-style-1 .pagination .page-item:first-child:hover .page-link,
.pagination-style-1 .pagination .page-item:last-child:hover .page-link {
    color: #0F513B;
    background-color: transparent;
}








/* --- pagination-style-2 Style :Start --- */
.pagination-style-2 {
    margin: 25px 0px;
}

.pagination-style-2 .pagination {
    flex-wrap: wrap;
}

.pagination-style-2 .pagination .page-item {
    margin-right: 5px;
}

.pagination-style-2 .pagination .page-item:last-child {
    margin-right: 0px;
}

.pagination-style-2 .pagination .page-item .page-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    background-color: #0F513B;
    width: 40px;
    height: 40px;
    border: 1px solid #0F513B;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-style-2 .pagination .page-item:hover .page-link,
.pagination-style-2 .pagination .page-item.active .page-link {
    color: #ffffff;
    border-color: #0F513B;
    background-color: #0F513B;
}

.pagination-style-2 .pagination .page-item:first-child .page-link,
.pagination-style-2 .pagination .page-item:last-child .page-link {
    border-color: transparent;
}

.pagination-style-2 .pagination .page-item:hover .page-link,
.pagination-style-2 .pagination .page-item:hover .page-link {
    color: #0F513B;
    background-color: transparent;
    border-color: #0F513B;
}

/* --- pagination-style-1 Style :End --- */

/* --- heading-style-3 Style :Start --- */
.heading-style-3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.3;
    color: #09120E;
    text-align: center;
}

/* --- heading-style-3 Style :End --- */

/* Blog List Page :start */
.bloglist-pg {
    padding: 50px 0px !important;
}

.bloglist-wrap .blistwrap-left {
    width: 100%;
    height: auto;
}

.bloglist-wrap .blistwrap-right {
    width: 100%;
    height: auto;
}

.bloglist-wrap .blistwrap-right .categories-block {
    width: 100%;
    height: auto;
    background-color: rgba(15, 81, 59, 0.2);
    padding: 24px 24px;
    border-radius: 7px;
    overflow: hidden;
}

.bloglist-wrap .blistwrap-right .categories-block h3 {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    border-left: 3px solid #000000;
    padding-left: 8px;
    margin-bottom: 15px;
}

.bloglist-wrap .blistwrap-right .categories-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.bloglist-wrap .blistwrap-right .categories-block ul li {
    width: 100%;
    height: auto;
}

.bloglist-wrap .blistwrap-right .categories-block ul li a {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: #000000;
    background-color: transparent;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}

.bloglist-wrap .blistwrap-right .categories-block ul li a::after {
    content: '>';
}

.bloglist-wrap .blistwrap-right .categories-block ul li a.active,
.bloglist-wrap .blistwrap-right .categories-block ul li a:hover {
    color: #ffffff;
    background-color: #0F513B;
}


.bloglist-wrap .blistwrap-right .tags-block {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border: 1px solid #E1E3E8;
    padding: 24px 24px;
    border-radius: 7px;
    overflow: hidden;
}

.bloglist-wrap .blistwrap-right .tags-block h3 {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    border-left: 3px solid #000000;
    padding-left: 8px;
    margin-bottom: 15px;
}

.bloglist-wrap .blistwrap-right .tags-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.bloglist-wrap .blistwrap-right .tags-block ul li a {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: #000000;
    background-color: rgba(22, 21, 64, 0.102);
    border-radius: 6px;
    display: block;
    padding: 12px 14px;
}

.bloglist-wrap .blistwrap-right .tags-block ul li a.active,
.bloglist-wrap .blistwrap-right .tags-block ul li a:hover {
    color: #ffffff;
    background-color: #0F513B;
}


.bloglist-block {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    overflow: hidden;
}

.bloglist-block .blblock-image {
    width: 100%;
    height: 285px;
    overflow: hidden;
}

.bloglist-block .blblock-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
}

.bloglist-block .blblock-details {
    padding: 15px 20px;
}

.bloglist-block .blblock-details :last-child {
    margin-bottom: 0;
}

.bloglist-block .blblock-details h6 {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.bloglist-block .blblock-details h6 span {
    color: #ffffff;
    background-color: #0F513B;
    border-radius: 100px;
    display: inline-block;
    padding: 8px 12px;
}

.bloglist-block .blblock-details h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    transition: 0.5s;
}

.bloglist-block .blblock-details p {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
}

.bloglist-block:hover .blblock-details h3 {
    color: #0F513B;
}

.bloglist-block:hover .blblock-image img {
    transform: scale(1.2);
}

/* Blog List Page :end */

/* Blog Details Page :start */
.blogdetail-pg {
    padding: 50px 0px !important;
}

.blogdetails-wrapper {
    margin-bottom: 100px;
}

.blogdetails-wrapper .bdwrap-inner {
    width: 100%;
    height: auto;
}

.blogdetails-wrapper .bdwrap-inner .bdwinner-head {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.blogdetails-wrapper .bdwrap-inner .bdwinner-head .bdtitle {
    font-size: 42px;
    font-weight: 600;
    color: #0F513B;
    margin-bottom: 20px;
}

.blogdetails-wrapper .bdwrap-inner .bdwinner-head ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blogdetails-wrapper .bdwrap-inner .bdwinner-head ul li h6 {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background-color: #0F513B;
    border-radius: 100px;
    display: inline-block;
    padding: 8px 12px;
    margin: 0;
}

.blogdetails-wrapper .bdwrap-inner .bdwinner-head ul li time {
    font-size: 12px;
    font-weight: 500;
    color: #000000;
}


.blogdetails-wrapper .bdwrap-inner .bdwinner-body {
    width: 100%;
    height: auto;
}

.blogdetails-wrapper .bdwrap-inner .bdwinner-body> :first-child {
    margin-top: 0px;
}

.blogdetails-wrapper .bdwrap-inner .bdwinner-body :last-child {
    margin-bottom: 0;
}

.blogdetails-wrapper .bdwrap-inner .bdwinner-body h3 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.blogdetails-wrapper .bdwrap-inner .bdwinner-body p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 12px;
}

.blogdetails-wrapper .bdwrap-inner .bdwinner-body .bdibody-image {
    margin: 24px 0px;
}

.blogdetails-wrapper .bdwrap-inner .bdwinner-body .bdibody-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}



.moreblogBtn {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background-color: #0F513B;
    border: 1px solid #0F513B;
    border-radius: 100px;
    padding: 10px 30px;
    margin: 0;
    display: inline-block;
}

.moreblogBtn:hover {
    color: #ffffff;
    background-color: #000000;
    border-color: #000000;
}

/* Blog Details Page :end */

/* --- Product Card Styles --- */
/* --- Product Card Styles (Matching Blog Card) --- */
.product-card {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.product-card .product-card-image {
    width: 100%;
    height: 285px;
    /* Matching blblock-image height */
    overflow: hidden;
}

.product-card .product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
}

.product-card .product-card-details {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
}

/* Matching: .bloglist-block .blblock-details h6 span */
.product-card .product-card-details h6 {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.product-card .product-card-details h6 span {
    color: #ffffff;
    background-color: #0F513B;
    border-radius: 100px;
    display: inline-block;
    padding: 8px 12px;
}

/* Matching: .bloglist-block .blblock-details h3 */
.product-card .product-card-details h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    transition: 0.5s;
}

/* Matching: .bloglist-block .blblock-details p (using for price here) */
.product-card .product-card-details p.price {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

/* Hover Effects matching .bloglist-block:hover */
.product-card:hover .product-card-details h3 {
    color: #0F513B;
}

.product-card:hover .product-card-image img {
    transform: scale(1.2);
}

/* Enquiry Button specific styling to fit this design */
.product-card .enquiry-link {
    display: inline-block;
    background-color: transparent;
    color: #0F513B;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    border: 1px solid #0F513B;
    border-radius: 6px;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-card .enquiry-link:hover {
    background-color: #0F513B;
    color: #ffffff;
}

/* Empty state */
.product-empty {
    border: 1px dashed #C6D9D1;
    border-radius: 12px;
    padding: 30px 20px;
    background-color: #F7FBF9;
    max-width: 520px;
    margin: 0 auto;
}

.product-empty h4 {
    font-weight: 600;
    color: #0F513B;
    margin-bottom: 8px;
}

.product-empty p {
    font-size: 15px;
    margin-bottom: 16px;
}