* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration:none;
}

/* Styling for the preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c6db8a; /* Light background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it stays on top */
  animation: fadeOut 0.5s ease-out 1.2s forwards; /* Hide preloader after 1.5s */
}


.dots {
  display: flex;
  gap: 15px;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #31511E;
  animation: bounce 1.2s infinite ease-in-out; /* Animation duration is now 1.5s */
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.1s;
}

.dot:nth-child(3) {
  animation-delay: 0.2s;
}

.dot:nth-child(4) {
  animation-delay: 0.3s;
}

.dot:nth-child(5) {
  animation-delay: 0.4s;
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Fade out animation for preloader */
@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}



/******************************/






    /* hero section with slider*/

    .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index:1 !important;
    }

    .carousel-caption {
    bottom: 15rem;
    color: #fff;
    }
section{
    margin-top: 1rem;
}
    .carousel-caption h1 {
    font-size: 4rem;
    font-weight: bold;
    }

    .carousel-caption p {
    font-size: 1.5rem;
    }

    .btn-slider {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: 1px solid white;
    text-transform: uppercase;
    }
    .carousel-inner h1{
    font-size: 4vw;
    }
    .carousel-inner .carousel-item img{
        height: 100%!important; 
        }

    .navbar {
    background-color: #31511E !important;
    }

    .navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    }

    .navbar-light,
    .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
    color: white;
    font-weight: 500;
    }

    @media (max-width: 991.98px) {

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    }
    }

    .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: top 0.3s;
    }

    .nav-item:hover{
    color:#FADF16!important;
    }

    /* Contact Section */

    .contact-info {
    background-image: linear-gradient(-60deg, #31511e 0%, #4b7c3a 50%, #8a9b5b 100%);   
    padding: 40px;
    color: white;
    }

    .contact-info h6 {
    color: #0e0c0c;
    font-size: 20px;
    text-transform: uppercase;
    }

    .contact-info p {
    color: white;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    text-align: left;
    }

    .contact-info a {
    color: white;
    text-decoration: none;
    }

    .contact-info a:hover {
    color: #FADF16;
    }

    .contact-info .text {
    color: black;
    }

    /* Welcome HR */
    .hero-section {
    z-index: 999;
    }

    .hero-title {
    font-size: 50px;
    font-weight: bold;
    color: #fefefe;
    }

    .hero-subtitle {
    font-size: 40px;
    color: black;
    }

    .hero-text {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    }

    .statistics {
    margin-top: 20px;
    }

    .statistics h4 {
    font-size: 30px;
    font-weight: bold;
    padding-top: 20px;
    color: #FF5F6D;
    margin-bottom: -10px;
    }

    .statistics p {
    font-size: 23px;
    color: #666;
    }

    .icon {
    font-size: 30px;
    color: #ccc;
    margin-right: 10px;
    }

    .image-container img {
    max-width: 100%;
    height: auto;
    }

    /* Highly Secure */
    .card-section {
    background-color: #859F3D;
    }

    .card {
    border: 1px solid #e1e1e1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /*/padding: 20px;/*/
    text-align: center;
    margin-bottom: 20px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
    /*/border: 10px solid #FF5F6D;/*/
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #002f60;
    }

    .card-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    }

    .highlight {
    display: inline-block;
    width: 5px;
    height: 100%;
    background-color: #FF5F6D;
    margin-right: 10px;
    }

    .btn-primary {
    background-color: #FF5F6D;
    border: none;
    padding: 10px 20px;
    }

    .btn-primary:hover {
    background-color: #FF5F6D;
    }

    /* contact form */
    .background-img {
    background: linear-gradient(to right, rgba(255, 95, 109, 0.7), rgba(196, 35,
    183, 0.7)),
    url('./img/hero.png');
    background-size: cover;
    background-position: center;
    }

    .form-container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
    }

    .form-control {
    background-color: white;
    border: none;
    border-radius: 5px;
    color: #100e0e;
    font-size: 16px;
    }

    h2 {
    color: #fff;
    font-weight: bold;
    }

    .btn-primary {
    background-color: #FF5F6D;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    }

    .btn-primary:hover {
        
    background-color: yellow;
    }

    /* My Blog */

.blog-desing{
    padding-bottom: 20px;
}    

.blog-desing .header-design {
  width: 100%;
  min-height: 100vh;
  background-color: #f4f4f4;
  min-height: calc(100vh - var(--vh-offset, 0px));

  overflow-x: hidden;
  font-weight: 400;
  top: 0;
  color: #252525;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

.header-design {
  background-color: #a4508b;
  background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%);
  height: 120px;
  text-align: center;
}

.listar-map-button {
  width: 100%;
  position: absolute;
  display: table;
  right: 0;
  top: 0;
  height: 200px;
  line-height: 164px;
  white-space: nowrap;
  font-size: 0;
}

.listar-map-button {
  right: auto;
  /*
    box-shadow: 0 0 65px rgba(0,0,0,.07) inset, 0 0 35px rgba(0,0,0,.05) inset;**/
}

.listar-map-button-text span {
  background-color: #fff;
  color: #252525;
  text-shadow: none;
}

.listar-page-header-content .listar-map-button-text span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  height: 44px;
  line-height: 1.6;
  padding: 10px 25px;
  box-shadow: 0 0 300px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  background-color: rgba(35, 40, 45, 0.9);
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

header .footer-wave {
  max-width: 102%;
  width: 100%;
  height: 187.8px;
  left: 0;
  z-index: 1;
  bottom: -67px;
  background: url(https://1.bp.blogspot.com/-NYl6L8pz8B4/XoIVXwfhlNI/AAAAAAAAU3k/nxJKiLT706Mb7jUFiM5vdCsOSNnFAh0yQCLcBGAsYHQ/s1600/hero-wave.png)
    repeat-x;
  animation: wave 10s cubic-bezier(0.44, 0.66, 0.67, 0.37) infinite;
}

@keyframes wave {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 1440px;
  }
}

.listar-feature-item-wrapper {
  /*/margin-bottom: 120px;/*/
  padding-left: 27px;
  padding-right: 27px;
}

.listar-feature-item {
  height: calc(100% - 20px);
}

.listar-feature-item.listar-feature-has-link
  ~ .listar-feature-fix-bottom-padding.listar-fix-feature-arrow-button-height {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}

.listar-feature-item a {
  position: absolute;
  display:none;
  top: -12px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% + 4px);
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-with-image .listar-feature-item a:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -74px;
  width: 148px;
  height: 148px;
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-item a:after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border-radius: 1000px;
  z-index: 10;
  animation: ripple 0.7s linear infinite;
  box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6),
    -5px -5px 10px rgba(255, 255, 255, 0.5);
}


@keyframes ripple {
  0% {
        box-shadow: 0 0 0 0 rgba(163, 177, 198, 0.3), 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.01);
  }
  100% {
    box-shadow: 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.03), 0 0 0 8em rgba(163, 177, 198, 0.01);
  }
}



.listar-feature-item .listar-feature-item-inner {
  padding: 50px 30px;
  border-radius: 6px;
  z-index: 5;
  position: relative;
  height: 100%;
}

.listar-feature-item .listar-feature-item-inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

.listar-feature-item .listar-feature-item-inner:before {
  border: 0;
  box-shadow: 120px 0px 150px rgba(80, 80, 80, 0.15),
    10px 0px 10px rgba(80, 80, 80, 0.02);
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(40%, rgba(255, 255, 255, 0)),
    color-stop(100%, rgba(255, 255, 255, 1))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#ffffff',GradientType=1);
}

.listar-feature-item .listar-feature-item-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.listar-feature-right-border {
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  top: -12px;
  left: 50%;
  overflow: hidden;
}

.listar-feature-items {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  border: 11px solid #2f53bf;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before,
.listar-hovering-features-grey
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 11px solid #31511e;
  border-radius: 800px;
  left: -50%;
}

.listar-feature-item .listar-feature-block-content-wrapper {
  position: relative;
  display: block;
  text-decoration: none;
  margin: -30px;
  padding: 30px;
  height: calc(100% + 100px);
}

.listar-features-design-2 .listar-feature-item-wrapper {
  margin-bottom: 120px;
  padding-left: 27px;
  padding-right: 27px;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
  content: "";
  background-color: #fff;
  z-index: 6;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
}

.listar-feature-icon-wrapper {
  width: 148px;
  height: 148px;
  line-height: 148px;
  border-radius: 500px;
  position: relative;
  background-color: #fff;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.06);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 50%;
  vertical-align: middle;
  margin-left: -74px;
  top: -66px;
  margin-top: -74px;
}

.listar-feature-icon-inner {
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 500px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
  background: #fff;
}

.listar-feature-icon-inner div {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  display: inline-block;
  position: relative;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: left;
}

.listar-feature-icon-inner img {
  position: relative;
  margin: 0 auto;
  vertical-align: middle;
  display: inline-block;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  height: 55px;
}

.listar-feature-item img,
.listar-feature-item i {
  position: relative;
  display: inline-block;
  border-bottom: 0;
  font-size: 40px;
  top: 0;
  padding: 0;
  color: #258bd5;
  width: 70px;
  height: auto;
}

.listar-feature-with-image .listar-feature-content-wrapper {
  top: 0;
}
.listar-feature-content-wrapper {
  position: relative;
  margin-top: -15.5px;
}

.listar-feature-item .listar-feature-item-title {
  padding-top: 0;
  margin: 0 0 30px;
  text-align: center;
  line-height: 1.5;
}

.listar-feature-item
  .listar-feature-item-title.listar-feature-counter-added
  > span {
  margin-left: 25px;
  border-radius: 0 50px 50px 0;
}

.listar-feature-item .listar-feature-item-title > span {
  box-shadow: 15px 20px 30px rgba(80, 80, 80, 0.12),
    5px 0px 40px rgba(80, 80, 80, 0.1);
  padding: 10px 20px;
  display: inline-block;
  position: relative;
  background-color: #fff;
}

.listar-feature-item .listar-feature-item-title > span span {
  box-shadow: 15px 15px 30px rgba(80, 80, 80, 0.2),
    5px 0px 80px rgba(80, 80, 80, 0.15);
  padding: 10px 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 30px;
  white-space: nowrap;
  position: absolute;
  top: -3px;
  left: -40px;
  border-radius: 50px;
  background-color: #fff;
}

.listar-feature-item .listar-feature-item-title span {
  display: inline-block;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  text-shadow: none;
  border-radius: 50px;
  /*/color: red;/*/
  font-size: 18px;
}

.listar-feature-item-excerpt {
  padding: 0 20px;
}

.listar-feature-item-excerpt {
  /*/color: red;/*/
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.pset {
  padding-top: 80px;
  margin-bottom: -10px;
}

.listar-map-button-text span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  height: 44px;
  line-height: 1.6;
  padding: 10px 25px;
  box-shadow: 0 0 31px rgba(0, 0, 0, 0.65), 0 0 4px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  background-color: rgba(35, 40, 45, 0.9);
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.listar-map-button-text span {
  background-color: red;
  color: #252525;
  text-shadow: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.listar-map-button-text span:after {
  border: 12px solid #fff;
}

.listar-map-button-text span:after {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  border-radius: 36px;
}

.listar-map-button:hover .listar-map-button-text span {
  padding: 10px 43px 10px 51px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.listar-feature-with-image .listar-feature-item a:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -74px;
  width: 148px;
  height: 148px;
  border-radius: 1000px;
  z-index: 10;
}

.star-rating {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 40px;
        }

        .star {
            color: #dba204;
            cursor: pointer;
        }


    /* Blog-end */

    /* FAQ */

    .faq {
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
    }

    .faq__title {
    text-transform: uppercase;
    color: #859F3D;
    }

    details {
    background-color: #859F3D;
    border-radius: 10px;
    cursor: pointer;
    padding: 20px 30px;
    margin-block: 30px;
    }

    summary{
    color:white;
    font-size: 17px;
    font-weight: 500;
    }

    p {
    text-align: center;
    color:black;
    }

    summary {
    list-style-position: outside;
    }

    summary::marker {
    color: #ffc107;
    font-size: 18px;
    }
    
    /* faq Animation */
.hover-animate {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.col-lg-6:hover .hover-animate {
    cursor:pointer;
    transform: scale(1.04);  
    opacity: 0.9;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);  
}
  /* faq Animation End*/

    /* Footer */
    .footer {
    background-color: #FF5F6D !important;
    color: #0b0b0b !important;
    }

    .footer h3 {
    margin-bottom: 20px;
    font-size: 20px;
    }

    .footer p {
    font-size: 14px;
    color: #0b0b0b !important;
    }

    .footer ul li a {
    color: #0b0b0b !important;
    text-decoration: none;
    transition: color 0.3s ease;
    }

    .footer ul li a:hover {
    color: #060606 !important;
    }

    .footer .logo {
    font-size: 24px;
    }

    .footer .highlight {
    color: #f39c12;
    }

    .social-icons a {
    font-size: 20px;
    color: #0a0a0a !important;
    margin: 0 10px;
    transition: color 0.3s ease;
    }

    .social-icons a:hover {
    color: #f39c12;
    }

    /* Responsive adjustments if needed */
    @media (max-width: 768px) {
    .footer {
    text-align: center;
    }
    }

    /*/.bi{/*/
    /* color: white!important;*/
    /*/}/*/

    /* ===================================================== About Us ========================================================== */
    
    /* Style the card container */
.card {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;  /* Default border, invisible */
    transition: all 0.3s ease-in-out;  /* Smooth transition for other hover effects */
}

/* The hover effect will animate the border */
.card:hover {
    animation: borderAnimation 0.5s forwards;  /* Trigger the animation on hover */
}

/* Keyframes for the animated border */
@keyframes borderAnimation {
    0% {
        border-width: 0;
        border-color: transparent;
    }
    25% {
        border-width: 5px;
        border-color: #31511E;  /* Start with border on top */
    }
    50% {
        border-width: 5px;
        border-color: #31511E;  /* Continue on the right side */
    }
    75% {
        border-width: 5px;
        border-color: #31511E;  /* Continue on the bottom side */
    }
    100% {
        border-width: 5px;
        border-color: #31511E;  /* Complete the border on the left side */
    }
}

/* Optional: Add a subtle shadow effect on hover */
.card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* For the text and button */
.card-body {
    height: 330px;
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #31511E;
    border: none;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2a4320;
}

    
    /* img Animation*/
    .image-column .image-1, .image-column .image-2 {
    position: relative;
    display: block;
    width: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-column:hover .image-1, .image-column:hover .image-2 {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
  /* img Animation End*/
  
    /* Breadcrumb Section */
    
    .breadcrumb-section {
    top: -32px;
    position: relative;
    background-image: url('../img/img.jpg');
    /* Replace with your background image URL */
    background-size: cover;
    background-position: top;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .breadcrumb-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .breadcrumb-container {
    text-align: center;
    color: white;
    }

    .breadcrumb-container h1 {
    font-size: 36px;
    margin-bottom: 10px;
    }

    .breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    margin-right: 5px;
    }

    .breadcrumb a:hover {
    color: #FADF16;
    }

    .breadcrumb {
    font-size: 18px;
    }

    /* About Us Content */
    
     .our-company, p {
        text-align: justify;
    } 
    
    .about-content {
    padding: 40px;
    text-align: center;
    }

    .about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    }

    .about-content p {
    font-size: 18px;
    color: #555;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
    .breadcrumb-section {
    height: 150px;
    }

    .breadcrumb-container h1 {
    font-size: 28px;
    }

    .about-content h2 {
    font-size: 26px;
    }

    .about-content p {
    font-size: 16px;

    }
    }

    /* our-vision */

    .vision-text {
    text-align: center;
    margin: 30px 0;
    font-size: 1.5rem;
    font-weight: bold;
    }

    .accordion-button {
    background-color: #212529;
    color: white;
    border: none;
    }

    .accordion-button:not(.collapsed) {
    background-color: #343a40;
    color: white;
    }

    /* Company About */
    a,
    a:active,
    a:focus {
    color: #6f6f6f;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
    }

    ul {
    margin: 0;
    padding: 0;
    list-style: none;
    }

    img {
    max-width: 100%;
    height: auto;
    }


    .sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    }

    .sec-title .title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #31511E;
    font-weight: 500;
    margin-bottom: 15px;
    }

    .sec-title h2 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.28em;
    color: #222222;
    font-weight: 600;
    padding-bottom: 18px;
    }

    .sec-title h2:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 50px;
    height: 3px;
    background-color: #4b7c3a;
    }

    .sec-title .text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    margin-top: 35px;
    }

    .sec-title.light h2 {
    color: #ffffff;
    }

    .sec-title.text-center h2:before {
    left: 50%;
    margin-left: -25px;
    }

    .list-style-one {
    position: relative;
    }

    .list-style-one li {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #222222;
    font-weight: 400;
    padding-left: 35px;
    margin-bottom: 12px;
    }

    .list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: #ff2222;
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
    }

    .list-style-one li a:hover {
    color: #44bce2;
    }

    .btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: #ff2222;
    }

    .btn-style-one:hover {
    background-color: #001e57;
    color: #ffffff;
    }

    .about-section {
    position: relative;
    }

    .about-section .sec-title {
    margin-bottom: 45px;
    }

    .about-section .content-column {
    position: relative;
    margin-bottom: 50px;
    }

    .about-section .content-column .inner-column {
    position: relative;
    padding-left: 30px;
    }

.about-section .text {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    }

.about-section .list-style-one {
    margin-bottom: 45px;
    }

.about-section .btn-box {
    position: relative;
    }

.about-section .btn-box a {
    text-decoration: none;
    border-radius: 10px;
    padding: 15px 50px;
    background-color: #31511E;
    transition: transform 0.3s ease;

    
}

.about-section .btn-box a{
    background-image: linear-gradient(-60deg, #31511e 0%, #4b7c3a 50%, #8a9b5b 100%);  
    transform: scale(1.1);
}

.about-section .image-column {
    position: relative;
    }

.about-section .image-column .text-layer {
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
    }

    .about-section .image-column .inner-column {
    position: relative;
    padding-left: 120px;
    padding-bottom: 125px;
    }

    .about-section .image-column .inner-column:before {
    position: absolute;
    left: -75px;
    top: 65px;
    height: 520px;
    width: 520px;
    /*background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);*/
    content: "";
    }

    .about-section .image-column .image-1 {
    position: relative;
    }

    .about-section .image-column .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    }

    .about-section .image-column .image-2 img,
    .about-section .image-column .image-1 img {
    box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
    }

    .about-section .image-column .video-link {
    position: absolute;
    left: 70px;
    top: 170px;
    }

    .about-section .image-column .video-link .link {
    position: relative;
    display: block;
    font-size: 22px;
    color: #191e34;
    font-weight: 400;
    text-align: center;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    }

    .about-section .image-column .video-link .link:hover {
    background-color: #191e34;
    }

    /* why-chooes us */

    a,
    a:active,
    a:focus {
    color: #333;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
    }

    ul {
    margin: 0;
    padding: 0;
    list-style: none;
    }

    img {
    max-width: 100%;
    height: auto;
    }

    span,
    a,
    a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    }

    .section-head {
    /margin-bottom: 60px;/
    }

    .section-head h4 {
    position: relative;
    padding: 0;
    color: #859f3d;
    line-height: 1;
    letter-spacing: 0.3px;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
    }

    .section-head h4:before {
    content: '';
    width: 60px;
    height: 3px;
    background: #859f3d;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
    }

    .section-head h4 span {
    padding-top:20px;
    font-weight: 700;
    padding-bottom: 5px;
    color: #2f2f2f
    }

    p.service_text {
    color: #cccccc !important;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    }

    .section-head p,
    p.awesome_line {
    color: #818181;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    }

    .extra-text {
    font-size: 34px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 25px;
    position: relative;
    text-transform: none;
    }

    .extra-text::before {
    content: '';
    width: 60px;
    height: 3px;
    background: #859f3d;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
    }

    .extra-text span {
    font-weight: 700;
    color: #859f3d;
    }

    .item {
    height: 350px;
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border: 5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease ;
    transition: all .5s ease 0s;
    transition: all 0.5s ease 0s;
    }

/***/

.item:hover {
  background: #859f3d;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover .item,
.item:hover span.icon {
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item:hover h6,
.item:hover p {
  color: #fff;
  -webkit-transition: all .5s ease 0;
  transition: all .5s ease 0;
  transition: all 0.5s ease 0s;
}

.item .icon {
  font-size: 40px;
  margin-bottom: 25px;
  color: #859f3d;
  width: 90px;
  height: 90px;
  line-height: 96px;
  border-radius: 50px;
}

.item .feature_box_col_one {
  background: rgba(247, 198, 5, 0.20);
  color: #859f3d
}

.item .feature_box_col_two {
  background: rgba(255, 77, 28, 0.15);
  color: #859f3d
}

.item .feature_box_col_three {
  background: rgba(0, 147, 38, 0.15);
  color: #859f3d
}

.item .feature_box_col_four {
  background: rgba(0, 108, 255, 0.15);
  color: #859f3d
}

.item .feature_box_col_five {
  background: rgba(146, 39, 255, 0.15);
  color: #859f3d
}

.item .feature_box_col_six {
  background: rgba(23, 39, 246, 0.15);
  color: #859f3d
}

.item p {
  font-size: 15px;
  line-height: 26px;
}

.item h6 {
  margin-bottom: 20px;
  color: #2f2f2f;
  font-weight:700;
}

.mission p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
}

.mission i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #859f3d;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
}

.mission .small-text {
  margin-left: 10px;
  font-size: 13px;
  color: #666;
}

.skills {
  padding-top: 0px;
}

.skills .prog-item {
  margin-bottom: 25px;
}

.skills .prog-item:last-child {
  margin-bottom: 0;
}

.skills .prog-item p {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.skills .prog-item .skills-progress {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 20px;
  position: relative;
}

.skills .prog-item .skills-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #f1db33;
  width: 10%;
  border-radius: 10px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.skills .prog-item .skills-progress span:after {
  content: attr(data-value);
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  padding: 3px 7px;
  border-radius: 30px;
}

/* Service Page */

.section-services {
  font-family: "Poppins", sans-serif;
  background-color: #e6edf7;
  color: #202020;
  padding-top: 115px;
  padding-bottom: 120px;
}

.section-services .header-section {
  margin-bottom: 34px;
}

.section-services .header-section .title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 32px;
}

.section-services .header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #859F3D;
  border-radius: 3px;
}

.section-services .header-section .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(30px);
  width: 10px;
  height: 3px;
  background-color: #504f93;
  border-radius: 3px;
}

.section-services .header-section .description {
  font-size: 14px;
  color: #282828;
}

.section-services .single-service {
  position: relative;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden;
}

.section-services .single-service .content {
  position: relative;
  z-index: 20;
}

.section-services .single-service .circle-before {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: #859F3D;
  border: 6px solid #859F3D;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: all .6s;
}

.section-services .single-service:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.section-services .single-service .icon {
  display: inline-block;
  margin-bottom: 26px;
  width: 70px;
  height: 70px;
  background-color: #859F3D;
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  transition: all .3s;
}

.section-services .single-service:hover .icon {
  background-color: #fff;
  color: #859F3D;
}

.section-services .single-service .title {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 23px;
  transition: color .3s;
}

.section-services .single-service:hover .title {
  color: #fff;
}

.section-services .single-service .description {
  margin-bottom: 20px;
  font-size: 14px;
  transition: color .3s;
}

.section-services .single-service:hover .description {
  color: #fff;
}

.section-services .single-service a {
  position: relative;
  font-size: 18px;
  color: #202020;
  text-decoration: none;
  font-weight: 500;
  transition: color .3s;
}

.section-services .single-service:hover a {
  color: #fff;
}

.section-services .single-service a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ff4500;
  transition: background-color .3s;
}

.section-services .single-service:hover a:after {
  background-color: #859F3D;
}

/* home-contact */

.container-form {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background-color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 1000px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #859F3D;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #31511E);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #859F3D;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #31511E;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #859F3D;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #859F3D;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #859F3D;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #ffffff;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #31511E, #859F3D);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #859F3D;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #31511E, #859F3D);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}

/*home contact end  */

/* Empoloyer */

section {
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #31511E;
  ;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #31511E;
  ;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #31511E;
  ;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #31511E;
  ;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: rgb(228, 228, 9);
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}    

/*              NEW NAVBAR              */

   /* Default header styles */
/*/.header {/*/
/*    position: relative;*/
/*    width: 100%;*/
/*    padding-bottom: 6px ;*/
/*    background-color: #fff;*/
/*    transition: top 3s ease-in-out; */
/*/}/*/

/* Sticky header styles */
/*/.sticky {/*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    z-index: 1000;*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*/}/*/

/* Prevents content jump when header becomes sticky */
/*/body.sticky-header-active {/*/
/*    padding-top: 60px; */
/*/}/*/





.header {
    background: linear-gradient(-60deg, #31511e 0%, #4b7c3a 50%, #8a9b5b 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*/padding-bottom: 13px;/*/
     box-shadow: 2px 11px 10px -10px rgba(168, 226, 130, 0.3), inset -2px 0px 7px 0px rgba(128, 175, 96, 0.5);
     /*/box-shadow: -11px -10px 10px -10px rgba(0, 0, 0, 0.3), inset -5px 3px 7px 3px/*/
}

.logo img {
    max-width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content:center;
    /*/padding:10px;/*/
}

.nav-links ul {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links ul li a {
    color: yellow;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 18px;
}

.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 60px;
        right: 0;
        background: #4b7c3a;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;
    }

    .nav-links.active {
        display: flex;
        z-index: 1000;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-links ul li a {
        padding: 15px;
        width: 100%;
        text-align: center;
        font-size: 16px;
        background: #31511e;
        color: yellow;
        border-radius:5px;
    }

    .nav-links ul li a:hover {
        background: #8a9b5b;
        color: white;
    }
}

.left {
  float: left;
  width: 66.66666%;
  padding: 20px;
}

.right {
  float: left;
  width: 33.33333%;
  padding: 20px;
}

.large-font {
  font-size: 48px;
  color: #31511E;
}

.xlarge-font {
  font-size: 64px
}

.btn_read{
  border: none;
  border-radius: 10px;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  background-color: #31511E;
  text-decoration: none;
}

.btn_read:hover{
  color: white;
  padding: 14px 28px;
  background: linear-gradient(-60deg, #31511e 0%, #4b7c3a 50%, #8a9b5b 100%);
}

.right img {
  display: block;
  height: auto;
  max-width: 100%;
}

@media screen and (max-width: 1000px) {
  .left,
  .right {
    width: 100%;
    text-align: center;
  }
.right img {
    margin: auto;
  }
}

.text-light{
    text-decoration: none;
}

.slick-slide{
    padding: 10px;
}