/* ===== CSS Variables ===== */
:root {
    --primary-color: #84cc16; /* Lime Green */
    --primary-dark: #65a30d;
    --primary-light: #a3e635;
    --secondary-color: #1f2937;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Oswald', sans-serif;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.text-accent {
    color: var(--primary-color);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===== Header ===== */
.header {
    position: relative;
    z-index: 1000;
}

.navbar {
    background-color: transparent;
    backdrop-filter: none;
    padding: 0.5rem 0;
    transition: var(--transition);
    box-shadow: none;
}

.navbar.transparent-nav {
    background-color: transparent;
}

.navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.navbar-brand img {
    height: 70px;
    transition: var(--transition);
}

.logo-dark {
    display: none;
}

.navbar-scrolled .logo-light {
    display: none;
}

.navbar-scrolled .logo-dark {
    display: block;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    margin: 0 0.75rem;
    position: relative;
    transition: var(--transition);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar-scrolled .navbar-nav .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(31, 41, 55, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
    padding: 2rem; /* Reduced padding to make hero shorter */
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
	margin-top: 6rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--white); /* Ensure title is white */
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    color: var(--white); /* Ensure description is white */
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
}

/* Fix text colors for about section (white background) */
.about .section-subtitle {
    color: var(--text-dark);
}

.about .section-title {
    color: var(--primary-light);
}

.about .section-description {
    color: var(--text-light);
}

.about-image {
    position: relative;
    margin-bottom: 2rem;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-width: 120px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.experience-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
}

.about-content {
    padding-left: 2rem;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-features i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background-image: url('images/natural_slate.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.6);
    border-color: var(--primary-color);
}

.service-icon {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== Stats Section ===== */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* ===== Projects Section ===== */
.projects {
    padding: 100px 0;
    background-image: url('images/natural_slate.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.ba-slider:hover {
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.6);
}

.ba-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-slider .before {
    z-index: 1;
}

.ba-slider .after {
    z-index: 2;
}

.ba-slider .resizer {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    cursor: ew-resize;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.ba-slider .resizer::before,
.ba-slider .resizer::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary-light);
    background: var(--white);
    transform: translateY(-50%);
}

.ba-slider .resizer::before {
    left: -15px;
    border-right: none;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.ba-slider .resizer::after {
    right: -15px;
    border-left: none;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.project-card:hover .ba-slider img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.project-category {
    color: var(--primary-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Team Section ===== */
.team {
    padding: 100px 0;
}

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover .team-image {
    box-shadow: var(--shadow-lg);
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background-image: url('images/natural_slate.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.author-rating {
    color: #fbbf24;
}

.author-rating i {
    margin-right: 2px;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
}

/* Fix text colors for contact section (white background) */
.contact .section-subtitle {
    color: var(--text-dark);
}

.contact .section-title {
    color: var(--primary-light);
}

.contact .section-description {
    color: var(--text-light);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background-color: var(--white);
    color: var(--primary-color);
}

.contact-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-content p {
    margin: 0;
    font-weight: 500;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(132, 204, 22, 0.25);
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 100px 0;
}

/* Fix text colors for gallery section (white background) */
.gallery .section-subtitle {
    color: var(--text-dark);
}

.gallery .section-title {
    color: var(--primary-light);
}

.gallery .section-description {
    color: var(--text-light);
}

/* ===== Footer ===== */
.footer {
    background-image: url('images/natural_slate.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.footer-logo {
    height: 70px;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .experience-badge {
        position: static;
        margin: 2rem auto 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .service-card,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .stats {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .experience-badge {
        min-width: 100px;
        min-height: 100px;
        padding: 15px;
    }
    
    .experience-number {
        font-size: 1.5rem;
    }
    
    .experience-text {
        font-size: 0.8rem;
    }
}

/* ===== Utility Classes ===== */
.bg-light {
    background-color: var(--light-bg) !important;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ===== Smooth Scrolling Enhancement ===== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===== Focus Styles for Accessibility ===== */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== Loading Animation ===== */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}


/* ===== Project Zoom Icon ===== */
.project-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(132, 204, 22, 0.9);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
    cursor: pointer;
}

.project-card:hover .project-zoom {
    opacity: 1;
    transform: scale(1);
}

.project-zoom:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* ===== Gallery Slider ===== */
.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.gallery-slide {
    display: none;
    width: 100%;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.gallery-prev,
.gallery-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* ===== Testimonial Slider ===== */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonial-slide {
    display: none;
    width: 100%;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(132, 204, 22, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
}

/* ===== Modal Enhancements ===== */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background-color: var(--primary-color);
    color: var(--white);
    border-bottom: none;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body img {
    max-height: 300px;
    object-fit: cover;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
}

/* ===== Enhanced Button Styles ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px; /* More rounded buttons */
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(132, 204, 22, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132, 204, 22, 0.4);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ===== Mobile Responsive Adjustments ===== */
@media (max-width: 991.98px) {
    .gallery-slide img {
        height: 300px;
    }
    
    .gallery-prev,
    .gallery-next,
    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .gallery-slide img {
        height: 250px;
    }
    
    .project-zoom {
        width: 35px;
        height: 35px;
        top: 15px;
        right: 15px;
        font-size: 0.9rem;
    }
    
    .testimonial-slide .row {
        flex-direction: column;
    }
    
    .testimonial-slide .col-lg-6:first-child {
        margin-bottom: 1rem;
    }
}

/* ===== Animation Enhancements ===== */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gallery-slide.active {
    animation: slideInFromLeft 0.5s ease-out;
}

.testimonial-slide.active {
    animation: slideInFromRight 0.5s ease-out;
}

/* ===== Hover Effects Enhancement ===== */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(132, 204, 22, 1.0), 0 0 80px rgba(132, 204, 22, 0.4);
    border-color: var(--primary-color);
    border-width: 3px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(132, 204, 22, 1.0), 0 0 80px rgba(132, 204, 22, 0.4);
    border-color: var(--primary-color);
    border-width: 3px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(132, 204, 22, 1.0), 0 0 80px rgba(132, 204, 22, 0.4);
    border-color: var(--primary-color);
    border-width: 3px;
}