/* Hover Effects for Home Page */
.services__one-item {
    transition: all 0.4s ease;
    transform: translateY(0);
}

.services__one-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(8, 160, 69, 0.2) !important;
}

.services__one-item:hover h4,
.services__one-item:hover h3 {
    color: #08A045;
    transition: color 0.3s ease;
}

.services__one-item:hover p {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.services__one-item:hover i {
    color: #0B6E4F;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* More button hover effects */
.more_btn {
    transition: all 0.3s ease;
}

.more_btn:hover {
    color: #0B6E4F;
    transform: translateX(5px);
}

/* About list item hover effects */
.about__one-left-list-item:hover {
    background: rgba(8, 160, 69, 0.05);
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
}

.about__one-left-list-item:hover i {
    color: #08A045;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.about__one-left-list-item:hover h4 {
    color: #0B6E4F;
    transition: color 0.3s ease;
}

/* FAQ hover effects */
.faq-item:hover h5 {
    color: #08A045;
    transition: color 0.3s ease;
}

.faq-item:hover {
    background: rgba(8, 160, 69, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

/* Experience list hover effects */
.experience__area-list-item:hover {
    background: rgba(8, 160, 69, 0.05);
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
}

.experience__area-list-item:hover i {
    color: #08A045;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Image hover effects */
.about__one-right img:hover,
.faq__area-image img:hover,
.experience__area-image img:hover,
.choose__us-left img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Video play button hover */
.video-pulse:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Counter hover effects */
.choose__us-left-counter:hover {
    background: linear-gradient(135deg, #08A045 0%, #6BBF59 100%);
    color: white;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.choose__us-left-counter:hover h2,
.choose__us-left-counter:hover p {
    color: white;
    transition: color 0.3s ease;
}

/* CTA button hover effects */
.build_button {
    transition: all 0.3s ease;
}

.build_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(8, 160, 69, 0.3);
    background: #0B6E4F;
}

.build_button:active {
    transform: translateY(-1px);
}

/* Footer link hover effects */
.footer-widget-menu ul li a:hover {
    color: #08A045;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.copyright__area-social ul li a:hover {
    background: #08A045;
    color: white;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Text slider hover effects */
.text-slide a:hover {
    color: #08A045;
    transition: color 0.3s ease;
}

/* Navigation hover effects */
#mobilemenu li a:hover {
    color: #08A045;
    transition: color 0.3s ease;
}

/* Project Gallery Styles */
.project-gallery-item {
    margin-bottom: 30px;
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(8, 160, 69, 0.2);
    transition: all 0.4s ease;
}

.project-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(8, 160, 69, 0.3);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 160, 69, 0.9) 0%, rgba(11, 110, 79, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 15px;
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.project-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.project-image:hover .project-content {
    transform: translateY(0);
}

.project-content h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.project-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.project-image:hover img {
    transform: scale(1.1);
}

/* Text Animation */
@keyframes floatText {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Banner specific styles */
.banner__one {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.banner__one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 160, 69, 0.4) 0%, rgba(107, 191, 89, 0.3) 100%);
    z-index: 1;
}

.banner__one-content {
    position: relative;
    z-index: 2;
}
