

@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Inter", sans-serif;
  --heading-font: "Manrope", sans-serif;
  --nav-font: "Inter", sans-serif;
  --highlight-font: "Montez", "cursive";
}


:root { 
  --background-color: #ffffff;
  --default-color: #3c4049;
  --heading-color: #112344;
  --accent-color: #175cdd;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  --primary-color:#324166;
  --secondary-color:#8eb949;
  --third-color:#afb445;
  --fourth-color:#f0a035;
  --txt-color-default:#333333;

  --light-green:#d2e288;
}

:root {
  --nav-color: #6e6e6e; 
  --nav-hover-color: #324166; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #6e6e6e;
  --nav-dropdown-hover-color: #8eb949;
}


.light-background {
  --background-color: #f4f8ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-family: var(--heading-font);
}

main.main{
  margin-top: 150px;
}
/* PHP Email Form Messages
------------------------------*/


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--primary-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--secondary-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--secondary-color);
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 110px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.scrolled .header .branding {
  min-height: 75px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--secondary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--secondary-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    padding: 10px 0;
    margin: 0;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    width: 60%;
    right: 0px;
    bottom: 0px;
    top: 0px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--txt-color-default);
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-16 {
  background: #ecf3d1;
  color: var(--default-color);
  font-size: 15px;
  padding: 100px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  position: relative;
}


.footer-16 .container,
.footer-16 .footer-bottom{
  position: relative;
  z-index: 1;
}

.footer-16::after{
  content: '';
  background: url(../img/pattern-4.svg);
  background-repeat: no-repeat;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  opacity: .5;
}
.footer-16 .footer-main {
  margin-bottom: 80px;
}

.footer-16 .brand-section .logo {
  text-decoration: none;
}
.footer-16 .brand-section .logo img{
  width: 300px;
}
.footer-16 .brand-section .logo .sitename {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.footer-16 .brand-section .brand-description {
  color: var(--txt-color-default);
}

.footer-16 .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--txt-color-default)
}

.footer-16 .brand-section .contact-info .contact-item i {
  font-size: 16px;
  color: var(--secondary-color);
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-16 .brand-section .contact-info .contact-item span {
  line-height: 1.6;
}
.footer-16 .brand-section .contact-info .contact-item a {
  color: var(--txt-color-default);
  transition: all 0.3s ease;
}
.footer-16 .brand-section .contact-info .contact-item a:hover {
  color: var(--secondary-color);
}

.footer-16 .footer-nav-wrapper {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .footer-16 .footer-nav-wrapper {
    padding-left: 0;
  }
}

.footer-16 .nav-column h6 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer-widgets h4{
  margin-bottom: 20px;
}
.footer-16 .nav-column .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0px;
}

.footer-16 .nav-column .footer-nav li{
  position: relative;
  list-style: none;
}
.footer-16 .nav-column .footer-nav li:before{
  content: '';
  position: absolute;
  background: url(../img/leaf.svg) center center / cover no-repeat;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 5px;
}

.footer-16 .nav-column .footer-nav li a {
  color:var(--txt-color-default);
  text-decoration: none;;
  transition: all 0.3s ease;
  line-height: 1.4;
  margin-left: 25px;
}

.footer-16 .nav-column .footer-nav li a:hover {
  color: var(--secondary-color);
  margin-left: 35px;
}

.footer-16 .footer-social {
  padding: 50px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.footer-16 .footer-social .newsletter-section h5 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.footer-16 .footer-social .newsletter-section p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.6;
  max-width: 340px;
}

.footer-16 .footer-social .social-section {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .footer-16 .footer-social .social-section {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

.footer-16 .footer-social .social-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 576px) {
  .footer-16 .footer-social .social-links {
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {

  .footer-16 .footer-main{
    margin-bottom: 30px;
  }
}
.footer-16 .footer-social .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link span {
  transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.footer-16 .footer-social .social-links .social-link:hover i {
  transform: scale(1.1);
}

.footer-16 .footer-bottom {
  padding: 30px 0;
}

.footer-16 .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: var(--txt-color-default);
}

.footer-16 .footer-bottom .copyright p .sitename {
  color: var(--primary-color);
  font-weight: 500;
}

.footer-16 .footer-bottom .legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

@media (max-width: 991px) {
  .footer-16 .footer-bottom .legal-links {
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

.footer-16 .footer-bottom .legal-links a {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-16 .footer-bottom .legal-links a:hover {
  color: var(--accent-color);
}

.footer-16 .footer-bottom .legal-links .credits {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .footer-16 .footer-bottom .legal-links .credits {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
    margin-top: 12px;
  }
}

.footer-16 .footer-bottom .legal-links .credits a {
  color: var(--accent-color);
  font-size: 12px;
}

.footer-16 .footer-bottom .legal-links .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-16 {
    padding: 70px 0 0;
  }
  .footer-16 .brand-section .brand-description {
    max-width: none;
  }

  .footer-16 .brand-section .contact-info {
    text-align: left;
    display: inline-block;
  }

  .footer-16 .footer-nav-wrapper .nav-column {
    text-align: left;
  }

  .footer-16 .footer-nav-wrapper .nav-column h6 {
    margin-bottom: 16px;
  }

  .footer-16 .footer-nav-wrapper .nav-column .footer-nav {
    gap: 10px;
  }

  .footer-16 .footer-social {
    text-align: center;
  }

  .footer-16 .footer-social .newsletter-section p {
    max-width: none;
  }

  .footer-16 .footer-social .social-links {
    justify-content: center;
  }

  .footer-16 .footer-bottom {
    text-align: center;
  }

  .footer-16 .footer-bottom .legal-links {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  /* width: 100%;
  height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}
#preloader img{
  position: relative;
  z-index: 2;
  width: 45px;
  height: 45px;
}
@keyframes animate-preloader {
  0% {
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    opacity: 1;
  }

  100% {
    width: 100px;
    height: 100px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--fourth-color), transparent 0%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-image: url(../img/sub_banner.jpg);
  position: relative;
  padding: 140px 0px;
  height: 400px;
}

.page-title .heading h1 {
  font-size: 50px;
  font-weight: 700;
}

.page-title nav {
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  justify-content:center;
}
.page-title nav ol li a{
  color: var(--secondary-color);
}
.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--txt-color-default);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 30px;
  position: relative;
}
.section-title h6{
    font-family: var(--highlight-font);
    color: var(--secondary-color);
    font-size: 38px;
}
.section-title h2 {
  font-size: 44px;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1.3;
}


.section-title p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-title h6{
    font-size: 26px;
  }
  .section-title h2 {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .section-title h6{
    font-size: 30px;
  }
  .section-title h2 {
    font-size: 34px;
  }
}
/*--------------------------------------------------------------
# Waves Animation Css
--------------------------------------------------------------*/
.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Theme Icon Css
--------------------------------------------------------------*/
.thme_icon {
    height: 60px;
    position: relative;
    width: 60px;
    transform: all 0.3s ease;
}
.thme_icon::before{
  background: var(--light-green);
  border-radius: 50px;
  content: "";
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  transition: .3s;
  width: 100%;
  z-index: 1;
}
.thme_icon img{
  position: absolute;
  z-index: 1;
  left: 10px;
  top: -10px;
  height: 50px;
  width: 50px;
  transform: all 0.3s ease;
}

/*--------------------------------------------------------------
# Global Button style
--------------------------------------------------------------*/
.thme_btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-family: var(--body-font);
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
    border: none;
    font-size: 16px;
    font-weight: 400;
    padding: 18.8px 35px;
    border-radius: 48px;
    -webkit-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    gap: 8px;
}
.thme_btn:before {
    content: '';
    width: 0;
    height: 100%;
    border-radius: 30em;
    position: absolute;
    top: 0;
    left: -5%;
    background-color: var(--title-color);
    -webkit-transition: .5s ease;
    transition: .5s ease;
    display: block;
    z-index: -1;
}
.thme_btn.thme_btn_sty1:before {
    background-color: var(--fourth-color);
}
.thme_btn.theme_btn_icon:after {
    content: '\f061';
    position: relative;
    color: var(--contrast-color);
    width: 24px;
    height: 24px;
    display: block;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-family: 'Font Awesome 6 Pro';
    font-weight: 500;
}
.thme_btn.thme_btn_sty1 {
    background-color: var(--primary-color);
    color: var(--contrast-color);
    box-shadow: none;
    border: none;
}
.thme_btn:hover{
    color: var(--contrast-color);
    box-shadow: none;
}
.thme_btn:hover:before{
    width: 110%;
}
/*--------------------------------------------------------------
# inner content style
--------------------------------------------------------------*/
.thme_img img.img-sty1{
  border-top-right-radius:50px;
  border-bottom-left-radius:50px;
}
.inner_content ul{
  line-height: 40px;
  padding-left: 0px;
}
.inner_content ul li {
    position: relative;
    list-style: none;
    padding-left: 30px;
}
.inner_content ul li::after {
    content: '';
    background: url(../img/leaf.svg) center center / cover no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0px;
    top: 10px;
}
/*--------------------------------------------------------------
# Home Slider
--------------------------------------------------------------*/
.home_slider{
  position: relative;
  /* padding-bottom: 70px; */
}

.home_slider:after, .home_slider:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 70px;
    width: 100%;
    content: "";
    background-image: url(../img/pattern-1.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: 2;
}
.home_slider:after {
    top: auto;
    bottom: auto;
    background-image: url(../img/pattern-2.png);
}
.home_slider .swiper {
  width: 100%;
  height: 100%;
}

.home_slider .swiper-slide {
  background-image: url(../img/bg-1.jpg);
  padding: 130px 0px;
}

.home_slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-sub-title {
  font-family: var(--highlight-font);
  color: var(--secondary-color);
  font-size: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}
.slide-title {
  font-size: 62px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease 0.2s forwards;
}
.slide-brief {
    font-size: 18px;
    color: var(--txt-color-default);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease 0.4s forwards;
}
.btn-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease 0.6s forwards;
}

.theme-btn-1 {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.theme-btn-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}


.slide-item-img img {
    /* max-width: 500px; */
    width: 100%;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1s ease 0.3s forwards;
}

    /* Navigation Arrows */
.home_slider .swiper-button-prev,
.home_slider .swiper-button-next {
    width: 60px;
    height: 60px;
    background:rgb(50 65 102 / 20%);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.home_slider .swiper-button-prev:hover,
.home_slider .swiper-button-next:hover {
    background: rgb(50 65 102 / 90%);
    transform: scale(1.1);
}

.home_slider .swiper-button-prev::after,
.home_slider .swiper-button-next::after {
    font-size: 20px;
    color:var(--secondary-color);
    font-weight: bold;
}

/* Pagination */
.home_slider .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.home_slider .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
        /* Reset animations for inactive slides */
.home_slider .swiper-slide:not(.swiper-slide-active) .slide-sub-title,
.home_slider .swiper-slide:not(.swiper-slide-active) .slide-title,
.home_slider .swiper-slide:not(.swiper-slide-active) .slide-brief,
.home_slider .swiper-slide:not(.swiper-slide-active) .btn-wrapper,
.home_slider .swiper-slide:not(.swiper-slide-active) .slide-item-img img {
    opacity: 0;
    transform: translateY(30px);
}

/* Responsive Design */
@media (max-width: 767px) {
    .slide-item-info-inner{
      text-align: center;
    }
    .slide-sub-title{
      font-size: 26px;
    }
    .slide-title {
        font-size: 30px;
    }
    .slide-brief{
      font-size: 14px;
    }
    .home_slider .swiper-slide{
      padding: 80px 0px;
    }
    .col-lg-12 {
        flex-direction: column;
        text-align: center;
    }
    
    .slide-item-info {
        margin-bottom: 30px;
    }
    
    .btn-wrapper {
        justify-content: center;
    }
}
@media (min-width: 769px) and (max-width: 992px) {
  .slide-sub-title{
    font-size: 30px;
  }
  .slide-title{
    font-size: 38px;
  }
  .home_slider .swiper-slide{
    padding: 90px 0px;
  }
}
/*--------------------------------------------------------------
# Home Why Us Section
--------------------------------------------------------------*/
.why_us{

}
.whyus_container{
  display: flex;
  align-items: center;
  padding: 15px 0;
  transition: transform 0.3s ease;
}
.whyus_container:hover{
  transform: translateY(-5px);
}
.whyus_container .thme-txt{
  margin-left: 20px;
  margin-bottom: 0;
}
.whyus_container .thme-txt h5{
  color: var(--txt-color-default);
}

/*--------------------------------------------------------------
# Section Collaborate
--------------------------------------------------------------*/
.section-collaborate{
  background-color: #ecf3d1;
}
.section-collaborate .collaborate-bg{
  background: url(../img/bg/collaborate-bg.jpg) center center/cover no-repeat;
  height: 100%;
  width: 100%;
}
.collaborate-column-left{
  padding-left: 300px;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}
.collaborate-column-left::after{
  content: '';
  background:url(../img/pattern-4.svg);
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100%;
  right: -450px;
  background-repeat: no-repeat;
  opacity: .5;
}

.collaborate-column-right {
  height: 600px;
  position: relative;
}

@media (max-width: 767px) {
  .collaborate-column-left{
    padding: 50px 10px;
  }
  .collaborate-column-right  {
    height: 300px;
  }
  .collaborate-column-left::after{
    bottom: -60px;
    right: -30px;
  }
}
/*--------------------------------------------------------------
# Farmer Network Section
--------------------------------------------------------------*/
.farmer_network{
  background-color: #ecf3d1;
    position: relative;
}
.farmer_network .farmer-left::before{
  content: '';
  background: url(../img/pattern-5.png);
  position: absolute;
  bottom: -150px;
  width: 100%;
  height: 100%;
  left: -180px;
  background-repeat: no-repeat;
  opacity: .5;
}
.farmer_network .farmer-left{
  padding-left: 300px;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}

.farmer_network .farmer-left h2{
  font-size: 44px;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1.3;
}
.farmer_network .farmer-right {
  height: 330px;
  position: relative;
}
.farmer_network .farmer-right .farmer-bg{
  background: url(../img/bg/farmer_network_bg.jpg) center center/cover no-repeat;
  height: 100%;
  width: 100%;
  border-bottom-left-radius:200px;
  border-top-left-radius:200px;
}

@media (max-width: 767px) {
  .farmer_network{
    padding-bottom: 50px !important;
  }
  .farmer_network .farmer-left{
    padding: 50px 10px;
  }
  .farmer_network .farmer-left h2{
    font-size: 32px;
  }
  .farmer_network .farmer-right  {
    height: 200px;
  }
  .farmer_network .farmer-right .farmer-bg{
    border-radius: 200px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
.farmer_network .farmer-left h2{
    font-size: 34px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.mission_vision {
  padding: 100px 0;
  background-color: #ecf3d1;
}

.mission_vision_bg{
  background: url(../img/pattern-3.png);
  bottom:250px;
  left: 160px;
  background-position:right;
  opacity: .5;
  z-index: 0;
}
.mission_vision_bg_2{
  background: url(../img/pattern-3.png);
  bottom:-400px;
  left: -60px;
  background-position:left;
  opacity: .5;
   z-index: 0;
}
.mission_vision .mission_vision_main {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mission_vision .mission_vision_image_wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.mission_vision .mission_vision_image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-top-right-radius:50px;
  border-bottom-left-radius:50px;
}

.mission_vision .mission_vision_image_wrapper:hover img {
  transform: scale(1.02);
}

.mission_vision .mission_vision_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--secondary-color), transparent 20%) 0%, transparent 70%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px;
  border-top-right-radius:50px;
  border-bottom-left-radius:50px;
}

.mission_vision .main-cta {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.mission_vision .main-cta::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-color);
  transition: transform 0.3s ease;
}

.mission_vision .main-cta:hover {
  color: var(--heading-color);
}

.mission_vision .main-cta:hover::after {
  transform: scaleX(1.1);
}

.mission_vision .mission_vision_sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 60px;
}

.mission_vision .mission_vision_item {
  padding: 32px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.mission_vision .mission_vision_item:last-child {
  border-bottom: none;
}

.mission_vision .mission_vision_item:hover {
  transform: translateX(8px);
}

.mission_vision .service-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mission_vision .service-icon-wrapper i {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.mission_vision_item:hover .mission_vision .service-icon-wrapper {
  background: var(--accent-color);
  transform: scale(1.1);
}

.mission_vision_item:hover .mission_vision .service-icon-wrapper i {
  color: var(--contrast-color);
}

.mission_vision .mission_vision_info {
  flex: 1;
}

.mission_vision .mission_vision_info h4 {
  margin-bottom: 8px;
  color: var(--primary-color);
  line-height: 1.4;
}

.mission_vision .mission_vision_info p {
  line-height: 1.6;
  color: var(--txt-color-default);
  margin-bottom: 12px;
}

@media (max-width: 992px) {
  .mission_vision .mission_vision_sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
}

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

  .mission_vision .mission_vision_image_wrapper {
    height: 280px;
  }

  .mission_vision .mission_vision_overlay {
    padding: 24px;
  }

  .mission_vision .mission_vision_item {
    padding: 24px 0;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.farming_practices .farming-item {
  text-align: center;
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.farming_practices .farming-item .thme_icon{
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
.farming_practices .farming-item:hover {
  transform: translateY(-5px);
}

.farming_practices .farming-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.farming_practices .farming-item:hover h4 {
  color: var(--secondary-color);
}

.farming_practices .farming-item p {
  line-height: 1.7;
  color: var(--txt-color-default);
  margin: 0;
}
@media (max-width: 768px) {

  .farming_practices .farming-item {
    margin-bottom: 2rem;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
}

.contact .contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact .contact-info-item .info-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-item .info-content p {
  margin-bottom: 5px;
  color: var(--txt-color-default);
  line-height: 1.7;
}

.contact .contact-info-item .info-content p a{
  color: var(--txt-color-default);
}

.contact .contact-info-item .info-content p a:hover{
  color: var(--secondary-color);
}
.contact .contact-info-item .info-content p:last-child {
  margin-bottom: 0;
}

.contact-info-social h3{
  font-size: 20px;
  font-weight: 600;
}
.contact-info-social ul{
  list-style: none;
  padding-left: 0px;
}
.contact-info-social ul li{
  display: inline-block;
  margin-right: 10px;
}
.contact-info-social ul li a{
  color: var(--primary-color);
  font-size: 30px;
}
.contact-info-social ul li a:hover{
  color: var(--fourth-color);
}
.contact .contact-form-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.contact .contact-form-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact .contact-form-card .form-control {
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 15px 20px;
  height: calc(3.5rem + 2px);
  background-color: var(--surface-color);
  color: var(--txt-color-default);
  margin-bottom: 20px;
}

.contact .contact-form-card .form-control:focus {
  border-color: var(--txt-color-default);
  box-shadow: none;
}

.contact .contact-form-card .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-card textarea.form-control {
  min-height: 150px;
  margin-bottom: 25px;
}

.contact .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
}

.contact .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact .map-container {
  position: relative;
  margin-top: 50px;
  padding: 0;
}

.contact .map-container iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

@media (max-width: 992px) {
  .contact .contact-form-card {
    padding: 30px;
  }

  .contact .map-container {
    margin-top: 40px;
  }

  .contact .map-container .map-overlay {
    top: -25px;
    height: 50px;
  }

  .contact .map-container iframe {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-wrapper {
    gap: 25px;
  }

  .contact .contact-info-item {
    gap: 15px;
  }

  .contact .contact-form-card {
    padding: 25px;
  }

  .contact .contact-form-card h2 {
    font-size: 24px;
  }

  .contact .map-container {
    margin-top: 30px;
  }

  .contact .map-container .map-overlay {
    top: -20px;
    height: 40px;
  }

  .contact .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .contact .contact-form-card {
    padding: 20px;
  }

  .contact .map-container {
    margin-top: 25px;
  }

  .contact .map-container .map-overlay {
    top: -15px;
    height: 30px;
  }

  .contact .map-container iframe {
    height: 350px;
    border-radius: 8px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  padding-top: 60px;
  padding-bottom: 60px;
  /* Add your styles here */
}


/*--------------------------------------------------------------
# Pattern Backgroud css
--------------------------------------------------------------*/
.patter-bg{
  position: absolute;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 100%;
}
.patter-bg-1{
  background: url(../img/pattern-3.png);
  bottom:-130px;
  left: -200px;
  background-position: left center;
  opacity: .5;
}
.patter-bg-2{
  background: url(../img/pattern-3.png);
  bottom:250px;
  left: 160px;
  background-position:right;
  opacity: .5;
}

@media (max-width: 767px) {
  .patter-bg-1{
    bottom:-200px;
    left: 190px;
    background-position: bottom right;
  }
}

/*--------------------------------------------------------------
# Home Product Css
--------------------------------------------------------------*/
.home_products{
  position: relative;
  background-color: #ecf3d1;
}
.product_container .product_block {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product_container .product_block figure.image img{
  border-top-right-radius:50px;
  border-bottom-left-radius:50px;
}
.product_container .product_block:hover figure.image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.product_container .product_block:hover .product_content_box:before {
  height: 100%;
  z-index: -1;
}
.product_container .product_block:hover .product_content_box h4 {
  color: var(--contrast-color);
}
.product_container .product_block figure.image {
  overflow: hidden;
}
.product_container .product_block figure.image img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.product_container .product_block .product_content_box {
  background: rgb(142 185 73 / 90%);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  padding: 15px;
  position: absolute;
  bottom: 10px;
  right: 0;
  min-width: 230px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.product_container .product_block .product_content_box:before {
  background-color: rgba(var(--primary-color), 0.84);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.product_container .product_block .product_content_box h4 {
  line-height: 30px;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
    color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Products Detail Css
--------------------------------------------------------------*/
.products_details .products_details_bg{
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  position: relative;
  overflow: hidden;
}
.products_details .products_details_bg::after{
    content: '';
    background: url(../img/pattern-5.png);
    position: absolute;
    bottom: -250px;
    width: 100%;
    height: 100%;
    right: -275px;
    background-repeat: no-repeat;
    opacity: .3;
    transform: rotateY(180deg);
    pointer-events: none;
    z-index: 0;

}
.products_details .inner_content,
.products_details .thme_img {
  position: relative;
  z-index: 1;
}
.products_details .products_details_bg.bg_odd{
  background-color: var(--background-color);
}
.products_details .products_details_bg.bg_even{
  background-color: #ecf3d1;
}
.products_details .inner_content h3{
  margin-bottom: 20px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .products_details .products_details_bg{
    margin-right: 10px;
    margin-left: 10px;
    padding: 20px;
  }
.products_details .products_details_bg::after{
    background-position:bottom;
    right: -200px;
}
}
/*--------------------------------------------------------------
# Floting Whatsapp Css
--------------------------------------------------------------*/
.floting_whatsapp{
  position: fixed;
  right: 15px;
  bottom: 75px;
  z-index: 99999;
  background-color: #42db87;
  border-radius: 50px;
  transition: all 0.4s;
  padding: 7px 12px;
}
.floting_whatsapp i{
  color: #fff;
  font-size: 20px;
}