/* ==========================
   BODY & FONTS
========================== */
body {
    font-family: 'Spartan', sans-serif;
}

/* ==========================
   NAVBAR
========================== */
.navbar {
    background: #1b5e20;
}

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

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

/* DROPDOWN */
.dropdown-menu {
    border-radius: 0;
}

/* ==========================
   CARDS
========================== */
.card {
    border-radius: 14px;
    transition: all .3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

/* ==========================
   SCROLL TO TOP
========================== */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #1b5e20;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
}

/* ==========================
   FOOTER
========================== */
.footer-section {
    font-size: 15px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.75);
}

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social:hover {
    background: #198754;
    color: #fff;
}

/* ==========================
   SERVICE CARDS
========================== */
.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.service-link {
    font-weight: 600;
    color: #198754;
}

.service-card:hover .service-link {
    color: #145c32;
}
