body {
    padding: 0;
    margin: 0;
}
.container {
    position: relative;
    /* margin-top: 100px; */
}
.container img {
    display: block;
    width: 100%;
}
nav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    font-family: 'Montserrat', 'sans-serif';
    /* height: 100px; */
    background-color: #ffffff;
    padding: 0 5%;
}
nav .logo { 
    float: left;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #fff;
}
.logo img {
  height: 53px;
  width: auto;
}

nav .links {
    float: right;
    padding: 0;
    margin: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
nav .links li {
    list-style: none;
}
nav .links a {
    display: block;
    padding: 30px 10px 0px 0px;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    position: relative;
    font-family: poppins;
}
nav .links a:hover {
    color: green;
    
}
nav .links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}
nav .links a:hover::before {
    visibility: visible;
    transform: scaleX(1);
    color: green;
    border-bottom: 1px solid green;
}
#nav-toggle {
     position: absolute;
     top: -100px;
}
nav .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}
nav .icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #3b793e;
    margin: 5px;
    border-radius: 3px;
    transition: all .5s ease-in-out;
}

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icons img {
  width: 20px;
  height: 20px;
}
.social-icons img:hover{
   color: #3b793e;
}

@media screen and (max-width: 768px) {
    nav .logo {
        float: none;
        width: auto;
        justify-content: center;
    }
    nav .links {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 100px;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: rgb(227 236 228);
        overflow: hidden;
        transition: all .5s ease-in-out;
    }
    nav .links a {
        font-size: 20px;
    }
    nav :checked ~ .links {
        bottom: 0;
    }
    nav .icon-burger {
        display: block;
    }
    nav :checked ~ .icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(2) {
        opacity: 0;
    }
}
/* ---------------------index */


/* CSS for section section:Hero */
#hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.hero-wrapper {
  /* position: relative; */
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 80px;
}

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  color: var(--primary-green);
  margin-bottom: 24px;
  max-width: 620px;
  font-family: poppins;
font-weight: 700;
font-style: Bold;



}



.hero-subtitle {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 40px;
  max-width: 500px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-wrapper {
    min-height: 430px;
  }
  .hero-bg {
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: none;
}
}

/* CSS for section section:Services */
#services {
  background-color: var(--primary-green);
  padding: 60px 0;
}

.cards-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  flex: 1;
}

.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.card-bg img {
  width: 100%;
  height: 100%;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-content h3 {
  color: var(--primary-green);
  font-size: 16px;
  margin-bottom: 8px;
}

.card-content p {
  color: var(--gray-text);
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .cards-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* CSS for section section:About */
#about {
  /* padding: 80px 0; */
  background-color: var(--white);
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-bottom: 60px; */
    flex-wrap: wrap;
    gap: 31px;
    padding: 20px;
    padding-top: 60px;
}

.about-title h2 {
  font-size: 48px;
  color: var(--dark-text);
  line-height: 1.1;
}

.about-desc {
  max-width: 500px;
}

.about-desc p {
  color: var(--gray-text);
  font-size: 16px;
}

.about-stats-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.stats-container {
  display: flex;
  gap: 60px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-green);
}

.stat-label {
  font-size: 14px;
  color: var(--dark-text);
  margin-top: 8px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-header {
    flex-direction: column;
  }
  .about-stats-row {
    justify-content: flex-start;
  }
}

/* CSS for section section:WhoWeAre */
#who-we-are {
  position: relative;
  background-color: var(--primary-green);
  overflow: hidden;
  margin-top: 25px;
}

.who-bg-wrapper {
  position: relative;
  padding: 80px 0;
}

.who-bg-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.who-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.who-text {
  flex: 1;
  color: var(--white);
  max-width: 500px;
}

.who-text h2 {
  font-size: 48px;
  margin-bottom: 24px;
}

.who-text p {
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.who-image {
  flex: 1;
  max-width: 460px;
  transition: 2s;
}
.who-image:hover{
    /*margin-bottom: 10px;*/
}

.who-image img {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .who-content {
    flex-direction: column;
  }
  .who-text {
    max-width: 100%;
  }
}

/* CSS for section section:Gallery */
#gallery {
  padding: 40px 0;
  background-color: var(--white);
}

.gallery-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.gallery-item {
  flex: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gallery-container {
    flex-direction: column;
  }
}

/* CSS for section section:Solutions360 */
#solutions-360 {
  background-color: var(--primary-green);
  position: relative;
  padding: 80px 0;
  color: var(--white);
}

.solutions-bg {
  position: relative;
}

.bg-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.solutions-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding-top: 30px;
}

.solutions-illustration {
  flex: 1;
  max-width: 612px;
}

.solutions-text {
  flex: 1;
}

.solutions-text h2 {
  font-size: 48px;
  margin-bottom: 24px;
  text-align: center;
}

.solutions-intro {
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 600px;
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.solution-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.solution-item p {
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .solutions-content {
    flex-direction: column;
  }
  .solutions-illustration {
    width: 100%;
    max-width: 100%;
  }
  .merged-image-wrapper {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 612/440;
  }
}

/* CSS for section section:Innovative */
#innovative {
  padding: 80px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--dark-text);
  max-width: 800px;
  margin: 0 auto;
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  border-radius: 20px;
  width: 100%;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 32px;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.feature-content p {
  font-size: 16px;
  color: var(--dark-text);
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn-sm {
  padding: 12px 24px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .feature-row {
    flex-direction: column;
  }
  .feature-content {
    text-align: left;
  }
}

/* CSS for section section:Testimonials */
#testimonials {
  background-color: var(--primary-green);
  padding: 80px 0;
  color: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 48px;
}

.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.stars {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.6;
}

/* -----------------our craft----- */

/* CSS for section section:Hero */
#section-hero {
  background-color: var(--primary-green);
  color: var(--text-white);
  padding: 80px 0;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.hero-content {
  flex: 1;
  /*max-width: 700px;*/
}

.hero-title h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-image {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .merged-image-wrapper {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 477/544;
  }
}

/* CSS for section section:Purpose */
#section-purpose {
  background-color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.purpose-container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.purpose-image {
  flex: 0 0 400px;
}

.purpose-image img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.purpose-content {
  flex: 1;
  max-width: 606px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 32px;
}

.purpose-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--text-gray);
}

.purpose-text p {
  font-size: 16px;
  line-height: 1.6;
}

.bg-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .purpose-container {
    flex-direction: column;
  }
  
  .purpose-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }
}

/* CSS for section section:Vision */
#section-vision {
  background-color: var(--primary-green);
  color: var(--text-white);
  padding: 80px 0;
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.vision-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.vision-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: #fff;
}

.vision-block {
  flex: 1;
  max-width: 420px;
}

.vision-block h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.vision-block p {
  font-size: 16px;
  line-height: 1.6;
}

.vision-block.right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.vision-image {
  flex: 0 0 371px;
}

@media (max-width: 1024px) {
  .vision-container {
    flex-direction: column;
    text-align: center;
  }
  
  .vision-block.right {
    text-align: center;
    align-items: center;
  }
  
  .vision-image {
    flex: 0 0 auto;
    width: 200px;
  }
}

/* CSS for section section:WhyUs */
#section-why-us {
  background-color: #fff;
  /* padding: 80px 0; */
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.why-us-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.why-us-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.bg-graphic-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}


/* CSS for section section:Footer */
#footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials img {
  width: 24px;
  height: 24px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  width: 100%;
}

.form-label {
  font-size: 16px;
  font-weight: 600;
}

.input-group input {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #b8c0cc;
  background: var(--white);
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  border-radius: 50px;
  font-size: 14px;
  padding: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-form {
    width: 100%;
  }
}



@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");
* {
	font-family: "Roboto", sans-serif;
}
button.wh-ap-btn {
	outline: none;
	width: 60px;
	height: 60px;
	border: 0;
	background-color: #2ecc71;
	padding: 0;
	border-radius: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	cursor: pointer;
	transition: opacity 0.3s, background 0.3s, box-shadow 0.3s;
}

button.wh-ap-btn::after {
	content: "";
	background-image: url("//i.imgur.com/cAS6qqn.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 60%;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 1;
}

button.wh-ap-btn:hover {
	opacity: 1;
	background-color: #20bf6b;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wh-api {
	position: fixed;
	bottom: 0;
	right: 0;
}

.wh-fixed {
	margin-right: 15px;
	margin-bottom: 15px;
}

.wh-fixed > a {
	display: block;
	text-decoration: none;
}

button.wh-ap-btn::before {
	content: "Chat with me";
	display: block;
	position: absolute;
	margin-left: -130px;
	margin-top: 16px;
	height: 25px;
	background: #49654e;
	color: #fff;
	font-weight: 400;
	font-size: 15px;
	border-radius: 3px;
	width: 0;
	opacity: 0;
	padding: 0;
	transition: opacity 0.4s, width 0.4s, padding 0.5s;
	padding-top: 7px;
	border-radius: 30px;
	box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

.wh-fixed > a:hover button.wh-ap-btn::before {
	opacity: 1;
	width: auto;
	padding-top: 7px;
	padding-left: 10px;
	padding-right: 10px;
	width: 100px;
}

/* animacion pulse */

.whatsapp-pulse {
	width: 60px;
	height: 60px;
	right: 10px;
	bottom: 10px;
	background: #10b418;
	position: fixed;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	border-radius: 50%;
	z-index: -99;
	display: inline-block;
	line-height: 65px;
}

.whatsapp-pulse:before {
	position: absolute;
	content: " ";
	z-index: -1;
	bottom: -15px;
	right: -15px;
	background-color: #10b418;
	width: 90px;
	height: 90px;
	border-radius: 100%;
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
	opacity: 0.6;
	-webkit-animation: pulse 1s ease-out;
	animation: pulse 1.8s ease-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0);
		opacity: 0;
	}
	25% {
		-webkit-transform: scale(0.3);
		opacity: 1;
	}
	50% {
		-webkit-transform: scale(0.6);
		opacity: 0.6;
	}
	75% {
		-webkit-transform: scale(0.9);
		opacity: 0.3;
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 0;
	}
}

@keyframes pulse {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	25% {
		transform: scale(0.3);
		opacity: 1;
	}
	50% {
		transform: scale(0.6);
		opacity: 0.6;
	}
	75% {
		transform: scale(0.9);
		opacity: 0.3;
	}
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

/*Animationn on Image --------------------------------------*/
/* Add these hover animation classes to your existing CSS */

/* 1. Zoom In Effect - for hero images */
.hero-bg img:hover,
.hero-image img:hover {
  transform: scale(1.1);
  transition: transform 0.4s ease-in-out;
}

/* 2. Lift Shadow Effect - for service cards */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.service-card .card-bg img {
  transition: transform 0.3s ease;
}

.service-card:hover .card-bg img {
  transform: scale(1.05);
}

/* 3. Slide Up Reveal - for about section image */
.about-image img {
  transition: all 0.4s ease;
  overflow: hidden;
}

.about-image:hover img {
  transform: translateY(-20px);
}

/* 4. Rotate & Glow - for who-we-are image */
.who-image {
  overflow: hidden;
}

.who-image img {
  transition: all 0.5s ease;
}

.who-image:hover img {
  transform: rotate(2deg) scale(1.05);
  filter: brightness(1.1) drop-shadow(0 10px 20px rgba(59,121,62,0.3));
}

/* 5. Grayscale to Color - for gallery images */
.gallery-item img {
  transition: all 0.4s ease;
  filter: grayscale(20%);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1.1);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* 6. Overlay Slide - for solutions illustration */
.solutions-illustration img {
  position: relative;
  transition: all 0.4s ease;
}

.solutions-illustration::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59,121,62,0.8), transparent);
  transition: left 0.5s ease;
}

.solutions-illustration:hover::before {
  left: 100%;
}

.solutions-illustration:hover img {
  transform: scale(1.02);
}

/* 7. Flip Effect - for feature images */
.feature-image {
  perspective: 1000px;
}

.feature-image img {
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.feature-image:hover img {
  transform: rotateY(10deg) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* 8. Pulse Effect - for testimonial background images (if any) */
.testimonial-card {
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.testimonial-card:hover::before {
  width: 300px;
  height: 300px;
}

/* 9. Border Glow - for section-hero image */
.hero-image img {
  transition: all 0.3s ease;
  border-radius: 20px;
}

.hero-image:hover img {
  box-shadow: 0 0 30px rgba(59,121,62,0.6);
  transform: scale(1.03);
}

/* 10. Shutter Effect - for purpose image */
.purpose-image {
  overflow: hidden;
}

.purpose-image img {
  transition: all 0.4s ease;
}

.purpose-image:hover img {
  transform: scale(1.1) translateY(-5px);
  filter: contrast(1.2);
}

/* 11. Corner Fold - for vision image */
.vision-image img {
  transition: all 0.4s ease;
  transform-origin: top left;
}

.vision-image:hover img {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 5px 5px 20px rgba(0,0,0,0.3);
}

/* 12. Floating Effect - for why-us image */
.why-us-image {
  transition: all 0.4s ease;
}


.why-us-image:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.f-img-container{
  transition: all 0.4s ease;
}
.f-img-container:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
/* Logo hover animation */
/*.logo img {*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.logo:hover img {*/
/*  transform: scale(1.1) rotate(5deg);*/
/*  filter: drop-shadow(0 5px 10px rgba(59,121,62,0.4));*/
/*}*/

/* Social icons enhanced hover */
.social-icons img {
  transition: all 0.3s ease;
}

.social-icons img:hover {
  transform: translateY(-3px) scale(1.2);
  filter: brightness(1.2) drop-shadow(0 5px 15px rgba(59,121,62,0.5));
}

/* General image transition base */
img {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth transitions for all containers */
[class*="hero"] img,
[class*="card"] img,
[class*="image"] img,
.service-card,
.about-image,
.who-image,
.gallery-item,
.solutions-illustration,
.feature-image {
  will-change: transform;
}








