/********** Template CSS **********/

@media (max-width: 768px) {
  h1{
    font-size: 28px!important;
  }
  h2{
    font-size: 26px!important;
  }
  h3{
    font-size: 24px!important;
  }
}

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #9B9B9B;
    background: white;
}

p {
  color: #474545;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 15px;
}



:root {
    --primary: #65B530;
    --secondary: #9B9B9B;
    --light: #F5F5F5;
    --dark: #161616;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.header-carousel .carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(22, 22, 22, .7);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
   background: linear-gradient(rgba(22, 22, 22, 0.253), rgba(22, 22, 22, 0.281)), url(../img/bg-interactive.jpg) center center no-repeat;
    background-size: cover;
}

.page-header h1 {
    background-color: rgba(0, 0, 0, 0.6); 
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    font-size: 2.5rem;
    font-weight: bold;
    display: inline-block;
    animation: fadeSlideIn 1.2s ease forwards;
    opacity: 0;
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 38px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.portfolio-inner img {
    transition: .5s;
}

.portfolio-inner:hover img {
    transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.portfolio-inner:hover .portfolio-text {
    bottom: 0;
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 22, .7);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    opacity: 0;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    border-radius: 60px;
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}




.custom-section {
  background-color: #161616;
  color: #fff;
  padding: 60px 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(101, 181, 48, 0.3);
  position: relative;
  overflow: hidden;
}

.custom-section h2 {
  color: #65B530;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.custom-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #65B530;
  margin: 15px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px #65B530;
}

@keyframes glow-text {
  0% {
    text-shadow: 0 0 5px #65B530, 0 0 10px #65B530;
  }
  100% {
    text-shadow: 0 0 15px #65B530, 0 0 30px #65B530;
  }
}

.custom-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, #65b53080 0%, transparent 70%);
  z-index: 0;
}

.custom-section p {
  position: relative;
  z-index: 1;
  line-height: 1.8;
  text-align: center;
  color: #ccc;
}


.featuree {
  background: url("/img/bg-interactive.jpg");
  background-position: center 94px;
  display: block;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 30px;
  background-color: rgba(0, 0, 0, 0.7);
}

.featuree::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.featuree h2 {
  margin-bottom: 30px;
  color: #bbd8b2;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}

.featuree h3 {
  margin-bottom: 30px;
  color: #73a87a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.featuree p {
  color: #c2cec6;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.featuree ul {
  padding-left: 0;
  position: relative;
  z-index: 1;
}

.featuree ul li {
  color: #ffc49c;
  margin-bottom: 15px;
  list-style-type: none;
  font-size: 1.1rem;
  padding-left: 30px;
  position: relative;
}

.featuree ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .featuree {
    padding: 70px 20px;
  }
}


.custom-bg-wrapper {
  background-color: #f9f7f2; 
  padding: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(101, 181, 48, 0.1);
}

.fancy-box-content {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(101, 181, 48, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fancy-box-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(101, 181, 48, 0.25);
}

.fancy-heading {
  color: #65B530;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: glow-h2 2s ease-in-out infinite alternate;
}

.fancy-heading::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: #65B530;
  margin: 10px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px #65B53099;
}

@keyframes glow-h2 {
  0% {
    text-shadow: 0 0 5px #65B530;
  }
  100% {
    text-shadow: 0 0 15px #65B530aa;
  }
}

.fancy-paragraph {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}



.sidebar-section {
  background-color: #F7F9FC; 
  padding: 10px; 
  border-radius: 8px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

.sidebar-section p {
  font-size: 1rem;
  margin-bottom: 5px; 
  align-items: center;
  position: relative;
  padding-left: 8px;
}

.sidebar-section p:before {
  content: "➪"; 
  font-size: 1.7rem; 
  margin-right: 8px;
  left: 0; 
  top: 0;
  color: #65B530; 
}

.sidebar-section p a {
  text-decoration: none;
  color: #333; 
}

.sidebar-section h3 a:hover {
  color: #1F77B4;
}


.styled-section {
  background: linear-gradient(135deg, #65B530, #8CD367);
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.styled-section::before,
.styled-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.styled-section::before {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.styled-section::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

.styled-section h2 {
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #ffffff, #e8f5d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.styled-section h3 {
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #ffffff, #e8f5d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




.styled-section p {
  color: #F0FFE0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #CFF09E;
}


.main-title h2 {
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, #65B530, #CFF09E, #65B530);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;

  padding-bottom: 15px;
  margin-bottom: 30px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  animation: shineText 5s linear infinite;
}

.main-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(to right, #CFF09E, #65B530);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(101, 181, 48, 0.4);
}

@keyframes shineText {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}


.sectn {
  background: linear-gradient(145deg, #60AB2E, #204D14);
  padding: 60px 20px;
  border-radius: 25px;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.05), 0 15px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  color: #e9ffe3;
  overflow: hidden;
}

.sectn::before,
.sectn::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.sectn::before {
  top: -40px;
  left: -40px;
}

.sectn::after {
  bottom: -40px;
  right: -40px;
}

.sectn h2 {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 10px;
  border: 2px solid #60AB2E;
  box-shadow: 0 4px 15px rgba(96, 171, 46, 0.6);
  letter-spacing: 3px;
  z-index: 1;
  margin-bottom: 30px;
}

.sectn h3 {
  color: #65B530;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(to right, #f7f9fcc1, #e0f4d28b);
  border-left: 6px solid #65B530;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.sectn h3:hover {
  background: linear-gradient(to right, #E0F4D2, #F7F9FC);
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}



.sectn p {
  color: #fff;
}

.sectn p,
.sectn ul,
.sectn li {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.sectn p {
  animation-delay: 0.2s;
}

.sectn ul {
  animation-delay: 0.4s;
  list-style: none;
  padding-left: 0;
}

.sectn li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
  animation-delay: 0.5s;
}

.sectn li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  h1{
    font-size: 28px!important;
  }
  h2{
    font-size: 26px!important;
  }
  h3{
    font-size: 24px!important;
  }
} 



.section-decorated {
  background: linear-gradient(135deg, #F7F9FC, #E6F5DA);
  border-left: 6px solid #65B530;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 60px 0;
  color: #333;
}

.section-decorated h2 {
  color: #65B530;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.section-decorated p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.section-decorated i.bi {
  color: #65B530;
}

.audio-section {
  background: linear-gradient(135deg, #e0f8e9, #ccf3dd);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 25px rgba(0, 128, 0, 0.1);
  transition: all 0.4s ease-in-out;
}

.audio-box {
  background-color: #d4f5e0;
  border-left: 6px solid #70d09c;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(112, 208, 156, 0.2);
  animation: slideIn 1s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-box:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(112, 208, 156, 0.3);
}

.audio-box h3 {
  color: #147a44;
  margin: 0;
}

.audio-box i {
  font-size: 1.4em;
  color: #0c5d31;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.audio-box:hover i {
  background-color: #a0e6c0;
  transform: rotate(8deg);
}

@keyframes slideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.green-section {
    background: linear-gradient(135deg, #d4fbd4, #f0fff0, #e4f6e4);
    padding: 60px 20px;
    animation: fadeInSection 1.2s ease-out;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.green-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #407B21;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    animation: slideInTop 1.4s ease;
}

.green-heading::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #65B530, #a3e68a);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

@keyframes slideInTop {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.green-card {
    background: linear-gradient(135deg, #ffffff, #f6fff6);
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(64, 123, 33, 0.15);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.green-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(101, 181, 48, 0.3);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.green-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 4px solid #65B530;
}

.green-card-body {
    padding: 25px;
}

.green-title a {
    font-size: 1.6rem;
    font-weight: bold;
    color: #407B21;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.green-title a::before {
    content: "✦ ";
    color: #65B530;
    font-weight: normal;
}

.green-title a:hover {
    color: #65B530;
    transform: scale(1.05);
}

.green-text {
    color: #333;
    font-size: 1rem;
    margin-top: 12px;
    line-height: 1.6;
    animation: fadeUp 1.5s ease;
}


.video-container {
position: relative;
padding-bottom: 56.25%;    
padding-top: 30px;
height: 0;
overflow: hidden;
border-radius: 20px;
}

.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}