/********** Enhanced Animation CSS **********/
/* Additional animations for elements */

/* Pulse animation for CTA buttons */
.btn-primary.btn-animate-pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(50, 195, 108, 0.7);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(50, 195, 108, 0);
    }
}

/* Float animation for feature icons */
.feature-icon-float {
    transition: transform 0.3s ease;
}

.feature-icon-float:hover {
    transform: translateY(-10px);
}

/* Enhanced hover effects for service cards */
.service-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Fade in animation for elements */
.fadeInUp {
    animation: fadeInUpAnimation 0.8s ease forwards;
}

@keyframes fadeInUpAnimation {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide in animations */
.slideInLeft {
    animation: slideInLeftAnimation 0.8s ease forwards;
}

.slideInRight {
    animation: slideInRightAnimation 0.8s ease forwards;
}

@keyframes slideInLeftAnimation {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRightAnimation {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Background image zoom effect */
.bg-zoom {
    transition: transform 8s ease;
}

.bg-zoom:hover {
    transform: scale(1.1);
}

/* Contact form animations */
.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 15px rgba(50, 195, 108, 0.2);
    transform: translateY(-3px);
}

/* Button animations */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer hover animations */
#footer a {
    transition: all 0.3s ease;
}

#footer a:hover {
    color: var(--primary) !important;
    text-decoration: none;
}

/* Page header animation */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 195, 108, 0.2);
    animation: headerGlow 3s infinite alternate;
}

@keyframes headerGlow {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.4;
    }
}

/* Enhanced Header Animations */

/* Animated topbar elements */
.container-fluid.bg-dark .h-100 {
    transition: all 0.3s ease;
}

.container-fluid.bg-dark .h-100:hover {
    transform: translateY(-3px);
}

/* Enhanced navbar styles */
.navbar {
    transition: all 0.4s ease;
}

.navbar.sticky-top {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}

.navbar.sticky-top.shadow-sm {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    animation: navbarStickyAnimation 0.7s ease;
}

@keyframes navbarStickyAnimation {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Navbar brand animation */
.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand h2 {
    background: linear-gradient(to right, var(--primary), #2c9356);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand:hover h2 {
    transform: scale(1.05);
}

/* Navbar collapse animation */
.navbar-collapse.show {
    animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar links enhanced animation */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
    left: 10%;
}

.navbar-nav .nav-link.active::before {
    width: 80%;
    left: 10%;
}

/* Dark mode toggle enhanced */
#darkModeToggle {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#darkModeToggle:hover {
    transform: rotate(15deg);
    background-color: rgba(50, 195, 108, 0.1);
}

#darkModeToggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(50, 195, 108, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

#darkModeToggle:hover::before {
    width: 200%;
    height: 200%;
}

/* Social icon circles for footer */
.social-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon-circle:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    color: white;
}

/* Map overlay styling */
.map-container {
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.pulse-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
}

/* Enhanced Page Header */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* Feature text shadow for better contrast */
.feature-text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gradient overlays for feature images */
.feature-image-overlay {
    position: relative;
}

.gradient-overlay-primary {
    background: linear-gradient(145deg, rgba(50, 195, 108, 0.6) 0%, rgba(50, 195, 108, 0) 50%);
}

.gradient-overlay-bottom {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.feature-badge {
    background-color: rgba(50, 195, 108, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.feature-icon-circle {
    transition: all 0.3s ease;
}

.feature-icon-circle:hover {
    transform: rotate(360deg);
}

/* Animated counter display */
[data-toggle="counter-up"] {
    position: relative;
}

[data-toggle="counter-up"]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

[data-toggle="counter-up"]:hover::after {
    transform: scaleX(1);
}

/* Slower animations for accessibility */
.slower {
    animation-duration: 3s !important;
}

/* Contact form submission feedback */
.form-feedback {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.form-feedback.active {
    height: auto;
    padding: 15px;
}

/* Enhanced topbar and announcement styles */
.announcement-banner {
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.5s ease;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Animated icon */
.animated-icon {
    animation: pulse 2s infinite;
}

.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

/* Enhanced navbar styling */
.navbar-brand {
    position: relative;
}

.navbar-brand h2 {
    position: relative;
    z-index: 2;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 195, 108, 0.05);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 1;
}

.navbar-brand:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Improved active state for navbar links */
.navbar-nav .nav-link.active {
    position: relative;
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
}

/* Enhanced navbar styles */
.navbar {
    transition: all 0.4s ease;
}

.navbar.sticky-top {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}

.navbar.sticky-top.shadow-sm {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    animation: navbarStickyAnimation 0.7s ease;
}

@keyframes navbarStickyAnimation {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Navbar brand animation */
.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand h2 {
    background: linear-gradient(to right, var(--primary), #2c9356);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand:hover h2 {
    transform: scale(1.05);
}

/* Navbar collapse animation */
.navbar-collapse.show {
    animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar links enhanced animation */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
    left: 10%;
}

.navbar-nav .nav-link.active::before {
    width: 80%;
    left: 10%;
}

/* Dark mode toggle enhanced */
#darkModeToggle {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#darkModeToggle:hover {
    transform: rotate(15deg);
    background-color: rgba(50, 195, 108, 0.1);
}

#darkModeToggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(50, 195, 108, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

#darkModeToggle:hover::before {
    width: 200%;
    height: 200%;
}

/* Social icon circles for footer */
.social-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon-circle:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    color: white;
}

/* Map overlay styling */
.map-container {
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.pulse-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
}

/* Enhanced Page Header */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* Feature text shadow for better contrast */
.feature-text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gradient overlays for feature images */
.feature-image-overlay {
    position: relative;
}

.gradient-overlay-primary {
    background: linear-gradient(145deg, rgba(50, 195, 108, 0.6) 0%, rgba(50, 195, 108, 0) 50%);
}

.gradient-overlay-bottom {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.feature-badge {
    background-color: rgba(50, 195, 108, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.feature-icon-circle {
    transition: all 0.3s ease;
}

.feature-icon-circle:hover {
    transform: rotate(360deg);
}

/* Animated counter display */
[data-toggle="counter-up"] {
    position: relative;
}

[data-toggle="counter-up"]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

[data-toggle="counter-up"]:hover::after {
    transform: scaleX(1);
}

/* Slower animations for accessibility */
.slower {
    animation-duration: 3s !important;
}

/* Contact form submission feedback */
.form-feedback {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.form-feedback.active {
    height: auto;
    padding: 15px;
}

/* Enhanced topbar and announcement styles */
.announcement-banner {
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.5s ease;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Animated icon */
.animated-icon {
    animation: pulse 2s infinite;
}

.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

/* Enhanced navbar styling */
.navbar-brand {
    position: relative;
}

.navbar-brand h2 {
    position: relative;
    z-index: 2;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 195, 108, 0.05);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 1;
}

.navbar-brand:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Improved active state for navbar links */
.navbar-nav .nav-link.active {
    position: relative;
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
}

/* Enhanced navbar styles */
.navbar {
    transition: all 0.4s ease;
}

.navbar.sticky-top {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}

.navbar.sticky-top.shadow-sm {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    animation: navbarStickyAnimation 0.7s ease;
}

@keyframes navbarStickyAnimation {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Navbar brand animation */
.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand h2 {
    background: linear-gradient(to right, var(--primary), #2c9356);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand:hover h2 {
    transform: scale(1.05);
}

/* Navbar collapse animation */
.navbar-collapse.show {
    animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar links enhanced animation */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
    left: 10%;
}

.navbar-nav .nav-link.active::before {
    width: 80%;
    left: 10%;
}

/* Dark mode toggle enhanced */
#darkModeToggle {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#darkModeToggle:hover {
    transform: rotate(15deg);
    background-color: rgba(50, 195, 108, 0.1);
}

#darkModeToggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(50, 195, 108, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

#darkModeToggle:hover::before {
    width: 200%;
    height: 200%;
}

/* Social icon circles for footer */
.social-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon-circle:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    color: white;
}

/* Map overlay styling */
.map-container {
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.pulse-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
}

/* Enhanced Page Header */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* Feature text shadow for better contrast */
.feature-text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gradient overlays for feature images */
.feature-image-overlay {
    position: relative;
}

.gradient-overlay-primary {
    background: linear-gradient(145deg, rgba(50, 195, 108, 0.6) 0%, rgba(50, 195, 108, 0) 50%);
}

.gradient-overlay-bottom {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.feature-badge {
    background-color: rgba(50, 195, 108, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.feature-icon-circle {
    transition: all 0.3s ease;
}

.feature-icon-circle:hover {
    transform: rotate(360deg);
}

/* Animated counter display */
[data-toggle="counter-up"] {
    position: relative;
}

[data-toggle="counter-up"]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

[data-toggle="counter-up"]:hover::after {
    transform: scaleX(1);
}

/* Slower animations for accessibility */
.slower {
    animation-duration: 3s !important;
}

/* Contact form submission feedback */
.form-feedback {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.form-feedback.active {
    height: auto;
    padding: 15px;
}

/* Enhanced topbar and announcement styles */
.announcement-banner {
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.5s ease;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Animated icon */
.animated-icon {
    animation: pulse 2s infinite;
}

.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

/* Enhanced navbar styling */
.navbar-brand {
    position: relative;
}

.navbar-brand h2 {
    position: relative;
    z-index: 2;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 195, 108, 0.05);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 1;
}

.navbar-brand:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Improved active state for navbar links */
.navbar-nav .nav-link.active {
    position: relative;
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
}

/* Enhanced navbar styles */
.navbar {
    transition: all 0.4s ease;
}

.navbar.sticky-top {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}

.navbar.sticky-top.shadow-sm {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    animation: navbarStickyAnimation 0.7s ease;
}

@keyframes navbarStickyAnimation {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Navbar brand animation */
.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand h2 {
    background: linear-gradient(to right, var(--primary), #2c9356);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand:hover h2 {
    transform: scale(1.05);
}

/* Navbar collapse animation */
.navbar-collapse.show {
    animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar links enhanced animation */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
    left: 10%;
}

.navbar-nav .nav-link.active::before {
    width: 80%;
    left: 10%;
}

/* Dark mode toggle enhanced */
#darkModeToggle {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#darkModeToggle:hover {
    transform: rotate(15deg);
    background-color: rgba(50, 195, 108, 0.1);
}

#darkModeToggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(50, 195, 108, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

#darkModeToggle:hover::before {
    width: 200%;
    height: 200%;
}

/* Social icon circles for footer */
.social-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon-circle:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    color: white;
}

/* Map overlay styling */
.map-container {
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.pulse-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
}

/* Enhanced Page Header */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* Feature text shadow for better contrast */
.feature-text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gradient overlays for feature images */
.feature-image-overlay {
    position: relative;
}

.gradient-overlay-primary {
    background: linear-gradient(145deg, rgba(50, 195, 108, 0.6) 0%, rgba(50, 195, 108, 0) 50%);
}

.gradient-overlay-bottom {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.feature-badge {
    background-color: rgba(50, 195, 108, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.feature-icon-circle {
    transition: all 0.3s ease;
}

.feature-icon-circle:hover {
    transform: rotate(360deg);
}

/* Animated counter display */
[data-toggle="counter-up"] {
    position: relative;
}

[data-toggle="counter-up"]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

[data-toggle="counter-up"]:hover::after {
    transform: scaleX(1);
}

/* Slower animations for accessibility */
.slower {
    animation-duration: 3s !important;
}

/* Contact form submission feedback */
.form-feedback {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.form-feedback.active {
    height: auto;
    padding: 15px;
}

/* Enhanced topbar and announcement styles */
.announcement-banner {
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.5s ease;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Animated icon */
.animated-icon {
    animation: pulse 2s infinite;
}

.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

/* Enhanced navbar styling */
.navbar-brand {
    position: relative;
}

.navbar-brand h2 {
    position: relative;
    z-index: 2;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 195, 108, 0.05);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 1;
}

.navbar-brand:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Improved active state for navbar links */
.navbar-nav .nav-link.active {
    position: relative;
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
}

/* Enhanced navbar styles */
.navbar {
    transition: all 0.4s ease;
}

.navbar.sticky-top {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}

.navbar.sticky-top.shadow-sm {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    animation: navbarStickyAnimation 0.7s ease;
}

@keyframes navbarStickyAnimation {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Navbar brand animation */
.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand h2 {
    background: linear-gradient(to right, var(--primary), #2c9356);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand:hover h2 {
    transform: scale(1.05);
}

/* Navbar collapse animation */
.navbar-collapse.show {
    animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar links enhanced animation */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
    left: 10%;
}

.navbar-nav .nav-link.active::before {
    width: 80%;
    left: 10%;
}

/* Dark mode toggle enhanced */
#darkModeToggle {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#darkModeToggle:hover {
    transform: rotate(15deg);
    background-color: rgba(50, 195, 108, 0.1);
}

#darkModeToggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(50, 195, 108, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

#darkModeToggle:hover::before {
    width: 200%;
    height: 200%;
}

/* Social icon circles for footer */
.social-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon-circle:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    color: white;
}

/* Map overlay styling */
.map-container {
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.pulse-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
}

/* Enhanced Page Header */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* Feature text shadow for better contrast */
.feature-text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gradient overlays for feature images */
.feature-image-overlay {
    position: relative;
}

.gradient-overlay-primary {
    background: linear-gradient(145deg, rgba(50, 195, 108, 0.6) 0%, rgba(50, 195, 108, 0) 50%);
}

.gradient-overlay-bottom {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.feature-badge {
    background-color: rgba(50, 195, 108, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.feature-icon-circle {
    transition: all 0.3s ease;
}

.feature-icon-circle:hover {
    transform: rotate(360deg);
}

/* Animated counter display */
[data-toggle="counter-up"] {
    position: relative;
}

[data-toggle="counter-up"]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

[data-toggle="counter-up"]:hover::after {
    transform: scaleX(1);
}

/* Slower animations for accessibility */
.slower {
    animation-duration: 3s !important;
}

/* Contact form submission feedback */
.form-feedback {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.form-feedback.active {
    height: auto;
    padding: 15px;
}

/* Enhanced topbar and announcement styles */
.announcement-banner {
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.5s ease;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Animated icon */
.animated-icon {
    animation: pulse 2s infinite;
}

.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

/* Enhanced navbar styling */
.navbar-brand {
    position: relative;
}

.navbar-brand h2 {
    position: relative;
    z-index: 2;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 195, 108, 0.05);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 1;
}

.navbar-brand:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Improved active state for navbar links */
.navbar-nav .nav-link.active {
    position: relative;
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
}

/* Enhanced navbar styles */
.navbar {
    transition: all 0.4s ease;
}

.navbar.sticky-top {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}

.navbar.sticky-top.shadow-sm {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    animation: navbarStickyAnimation 0.7s ease;
}

@keyframes navbarStickyAnimation {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Navbar brand animation */
.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand h2 {
    background: linear-gradient(to right, var(--primary), #2c9356);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand:hover h2 {
    transform: scale(1.05);
}

/* Navbar collapse animation */
.navbar-collapse.show {
    animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar links enhanced animation */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
    left: 10%;
}

.navbar-nav .nav-link.active::before {
    width: 80%;
    left: 10%;
}

/* Dark mode toggle enhanced */
#darkModeToggle {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#darkModeToggle:hover {
    transform: rotate(15deg);
    background-color: rgba(50, 195, 108, 0.1);
}

#darkModeToggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(50, 195, 108, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

#darkModeToggle:hover::before {
    width: 200%;
    height: 200%;
}

/* Social icon circles for footer */
.social-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon-circle:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    color: white;
}

/* Map overlay styling */
.map-container {
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.pulse-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
}

/* Enhanced Page Header */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* Feature text shadow for better contrast */
.feature-text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gradient overlays for feature images */
.feature-image-overlay {
    position: relative;
}

.gradient-overlay-primary {
    background: linear-gradient(145deg, rgba(50, 195, 108, 0.6) 0%, rgba(50, 195, 108, 0) 50%);
}

.gradient-overlay-bottom {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.feature-badge {
    background-color: rgba(50, 195, 108, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.feature-icon-circle {
    transition: all 0.3s ease;
}

.feature-icon-circle:hover {
    transform: rotate(360deg);
}

/* Animated counter display */
[data-toggle="counter-up"] {
    position: relative;
}

[data-toggle="counter-up"]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

[data-toggle="counter-up"]:hover::after {
    transform: scaleX(1);
}

/* Slower animations for accessibility */
.slower {
    animation-duration: 3s !important;
}

/* Contact form submission feedback */
.form-feedback {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.form-feedback.active {
    height: auto;
    padding: 15px;
}

/* Enhanced topbar and announcement styles */
.announcement-banner {
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.5s ease;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Animated icon */
.animated-icon {
    animation: pulse 2s infinite;
}

.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

/* Enhanced navbar styling */
.navbar-brand {
    position: relative;
}

.navbar-brand h2 {
    position: relative;
    z-index: 2;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 195, 108, 0.05);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 1;
}

.navbar-brand:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Improved active state for navbar links */
.navbar-nav .nav-link.active {
    position: relative;
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
}

/* Enhanced navbar styles */
.navbar {
    transition: all 0.4s ease;
}

.navbar.sticky-top {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}

.navbar.sticky-top.shadow-sm {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    animation: navbarStickyAnimation 0.7s ease;
}

@keyframes navbarStickyAnimation {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Navbar brand animation */
.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand h2 {
    background: linear-gradient(to right, var(--primary), #2c9356);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand:hover h2 {
    transform: scale(1.05);
}

/* Navbar collapse animation */
.navbar-collapse.show {
    animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar links enhanced animation */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
    left: 10%;
}

.navbar-nav .nav-link.active::before {
    width: 80%;
    left: 10%;
}

/* Dark mode toggle enhanced */
#darkModeToggle {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#darkModeToggle:hover {
    transform: rotate(15deg);
    background-color: rgba(50, 195, 108, 0.1);
}

#darkModeToggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(50, 195, 108, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

#darkModeToggle:hover::before {
    width: 200%;
    height: 200%;
}

/* Social icon circles for footer */
.social-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon-circle:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    color: white;
}

/* Map overlay styling */
.map-container {
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.pulse-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
}

/* Enhanced Page Header */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* Feature text shadow for better contrast */
.feature-text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gradient overlays for feature images */
.feature-image-overlay {
    position: relative;
}

.gradient-overlay-primary {
    background: linear-gradient(145deg, rgba(50, 195, 108, 0.6) 0%, rgba(50, 195, 108, 0) 50%);
}

.gradient-overlay-bottom {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.feature-badge {
    background-color: rgba(50, 195, 108, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.feature-icon-circle {
    transition: all 0.3s ease;
}

.feature-icon-circle:hover {
    transform: rotate(360deg);
}

/* Animated counter display */
[data-toggle="counter-up"] {
    position: relative;
}

[data-toggle="counter-up"]::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

[data-toggle="counter-up"]:hover::after {
    transform: scaleX(1);
}

/* Slower animations for accessibility */
.slower {
    animation-duration: 3s !important;
}

/* Contact form submission feedback */
.form-feedback {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.form-feedback.active {
    height: auto;
    padding: 15px;
}

/* Enhanced topbar and announcement styles */
.announcement-banner {
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.5s ease;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Animated icon */
.animated-icon {
    animation: pulse 2s infinite;
}

.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

/* Enhanced navbar styling */
.navbar-brand {
    position: relative;
}

.navbar-brand h2 {
    position: relative;
    z-index: 2;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 195, 108, 0.05);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 1;
}

.navbar-brand:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Improved active state for navbar links */
.navbar-nav .nav-link.active {
    position: relative;
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
}

/* Enhanced navbar styles */
.navbar {
    transition: all 0.4s ease;
}

.navbar.sticky-top {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}

.navbar.sticky-top.shadow-sm {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    animation: navbarStickyAnimation 0.7s ease;
}

@keyframes navbarStickyAnimation {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Navbar brand animation */
.navbar-brand {
    position: relative;
    overflow: hidden;
}

.navbar-brand h2 {
    background: linear-gradient(to right, var(--primary), #2c9356);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transition: all 0.3s ease;
}

.navbar-brand:hover h2 {
    transform: scale(1.05);
}

/* Navbar collapse animation */
.navbar-collapse.show {
    animation: slideDown 0.35s ease forwards;
}

@keyframes slide