:root {
    /* Green Color Palette */
    --green-50: #e8f5e9;
    --green-100: #c8e6c9;
    --green-200: #a5d6a7;
    --green-300: #81c784;
    --green-400: #66bb6a;
    --green-500: #4caf50; /* Primary green */
    --green-600: #43a047;
    --green-700: #388e3c;
    --green-800: #2e7d32; /* Dark green */
    --green-900: #1b5e20;
    
    /* Theme Colors */
    --primary-green: var(--green-600);
    --dark-green: var(--green-800);
    --light-green: var(--green-300);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-color: #333333;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-green);
}

.text-green {
    color: var(--primary-green) !important;
}

.bg-dark-green {
    background-color: var(--dark-green) !important;
}

.bg-light-green {
    background-color: var(--green-50) !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

/* Buttons */
.btn-green {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

.btn-green:hover {
    background-color: var(--dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.btn-outline-green {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background-color: transparent;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-green:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 160, 71, 0.2);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark-green);
    transform: translateY(-2px);
}

/* Arrow Button */
.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-arrow i {
    transition: transform 0.3s ease;
}

.btn-arrow:hover i {
    transform: translateX(5px);
}

/* Navigation */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--dark-green) !important;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.company-name {
    color: white;
    margin-left: 10px;
}

.navbar-brand:hover {
    opacity: 0.9;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: white;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--light-green);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: var(--green-50);
    color: var(--dark-green);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, var(--green-50) 0%, white 100%);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-shapes div {
    position: absolute;
    border-radius: 50%;
    background: rgba(67, 160, 71, 0.1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    left: -50px;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 20%;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

.hero-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 8px solid white;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.hero-image-badge i {
    color: var(--primary-green);
    margin-right: 8px;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    background: rgba(255,255,255,0.8);
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.feature-item i {
    margin-right: 8px;
}

/* Section Headers */
.section-header {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-header:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-icon {
    width: 70px;
    height: 70px;
    background: var(--green-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    box-shadow: 0 5px 15px rgba(67, 160, 71, 0.1);
}

/* Services Section */
.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png') repeat;
    opacity: 0.03;
    z-index: 0;
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: white;
    position: relative;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(67, 160, 71, 0.1);
    border-top: 3px solid var(--primary-green);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-icon-circle-lg {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-circle-lg {
    background-color: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.service-features span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.bg-green-light {
    background-color: var(--green-50);
}

/* About Section */
.about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-badge span {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge small {
    font-size: 0.7rem;
    display: block;
    margin-top: 5px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-green);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    background: white;
}

.feature-box i {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.feature-box h5 {
    color: var(--dark-green);
    margin-bottom: 10px;
}

/* Testimonials */
.testimonial-card {
    border-left: 3px solid var(--primary-green);
    transition: all 0.3s ease;
    background: white;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(67, 160, 71, 0.1);
}

.rating {
    color: #ffc107;
}

/* CTA Section */
#contact {
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

#contact::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    position: relative;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: white;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
}

/* Creative Dropdown Styles */
.dropdown-menu-creative {
    border: none;
    border-radius: 10px;
    padding: 15px 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 300px;
}

.dropdown-menu-creative .dropdown-item {
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.dropdown-menu-creative .dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-menu-creative .dropdown-item:hover {
    background-color: var(--green-50);
    transform: translateX(5px);
}

.dropdown-menu-creative h6 {
    color: var(--dark-green);
    margin-bottom: 3px;
    font-weight: 600;
}

.dropdown-menu-creative p {
    color: var(--text-color);
    font-size: 0.85rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.dropdown-menu-creative .dropdown-item:hover .service-icon-circle {
    background-color: var(--primary-green);
}

.dropdown-menu-creative .dropdown-item:hover .service-icon-circle i {
    color: white !important;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-section {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .service-icon-circle-lg {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 70px 0 50px;
        text-align: center;
    }
    
    .hero-image-container {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .navbar-brand img {
        height: 30px;
    }
    
    .dropdown-menu-creative {
        min-width: auto;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 10px 0;
    }
    
    .section-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-image-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .btn-green, .btn-outline-green {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}
 /* Custom hover animations */
 .service-card {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,100,0,0.1);
}

.service-card:hover .service-icon-circle-lg {
    background: linear-gradient(135deg, #28a745, #a1e5af);
    transform: rotate(5deg) scale(1.1);
}

.service-card:hover .btn-outline-green {
    background-color: #28a745;
    color: white;
}

.transition-all {
    transition: all 0.3s ease;
}

.btn-arrow i {
    transition: transform 0.3s ease;
}

.service-card:hover .btn-arrow i {
    transform: translateX(3px);
}