:root {
    --brand: #59AC77;
}

.ki-duotone {
    color: var(--brand);
}

.hero-content a:not(.btn) {
    border: 2px solid #fff;
    color: #fff; 
    display: inline-block;
    padding: 0.5rem 1rem; 
    font-size: 1.25rem;  
    line-height: 1.7;
    border-radius: 10px;
    text-decoration: none; 
    /* font-weight: 600;  */
    margin-left: 0.5rem; 
    transition: all 0.3s ease;
}

.hero-content a:not(.btn):hover {
    background-color: #fff; 
    color: #000 !important; 
}

.navbar-nav .nav-link.active {
    color: #fff !important;
    font-weight: 600;
}

.transparent-navbar {
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px);
}

.navbar {
    transition: all 0.3s ease;
    background: #59AC77;
}

.navbar-brand span {
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

.btn-pill {
    border-radius: 50px;
}

@media (max-width: 991px) {
    .navbar {
        background: rgba(0, 0, 0, 0.95) !important;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 0.5rem;
    }
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.hover-link {
    transition: color 0.3s ease;
}

.hover-link:hover {
    color: #fff !important;
}

.contact-info i {
    width: 16px;
}

.site-footer {
    margin-top: auto;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    color: var(--brand, #007bff);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }
}