:root {
    --primary-green: #2e7d32;
    --secondary-green: #4caf50;
}
.nav-link {
    position: relative;
}
.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.hero-section {
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.card {
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}

p {
    font-size: 24px !important;
}

h3 {
    font-size: 25px !important;
}

h2 {
    font-size: 34px !important;
}

.hero-section {
    height: 70vh; /* Default for desktop */
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Adjust this breakpoint as needed */
    .hero-section {
        height: 100vh !important; /* For mobile devices */
    }

    #removeOnDesktop {
        display: block !important;
    }

    .our_logo {
        height: 4rem !important;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
}

nav {
    background-color: #d0e3cd !important;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ffeb3b;
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 199000;
}

.scroll-top-btn:hover {
    background-color: #fce833;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.visible {
    display: flex;
    opacity: 1;
}

/* Arrow icon */
.scroll-top-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
