body {
    background: linear-gradient(135deg, #f8fafc 0%, #e7eaf6 100%);
    min-height: 100vh;
    animation: fadeInBg 1.5s;
}
@keyframes fadeInBg {
    from { opacity: 0; }
    to { opacity: 1; }
}
.navbar {
    transition: box-shadow 0.3s;
}
.navbar-nav .nav-link {
    transition: background 0.2s, color 0.2s;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
    background: #c7a34b;
    color: #232e33 !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.active:focus {
    background: #c7a34b !important;
    color: #232e33 !important;
    font-weight: 700;
    box-shadow: 0 2px 12px 0 rgba(199,163,75,0.18), 0 1.5px 6px rgba(35,46,51,0.08);
    border: 2px solid #fff3cd;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    letter-spacing: 0.5px;
}
.service-card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 6px 24px rgba(199,163,75,0.10), 0 1.5px 6px rgba(35,46,51,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(199,163,75,0.18), 0 3px 12px rgba(35,46,51,0.10);
}
.service-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #232e33;
    margin-bottom: 1.2rem;
}
.service-icon {
    font-size: 2.5rem;
    color: #c7a34b;
    margin-bottom: 0.7rem;
    animation: popIn 0.7s;
}
@keyframes popIn {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.learn-more {
    font-weight: 600;
    border-radius: 2rem;
    transition: background 0.2s, color 0.2s;
}
.learn-more:hover {
    background: #c7a34b;
    color: #fff;
}
.main-content-animate {
    animation: fadeInUp 1.2s;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}
footer {
    background: #232e33;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}
.footer-social {
    margin-top: 0.5rem;
}
.footer-social a {
    color: #c7a34b;
    margin: 0 0.5rem;
    font-size: 1.4rem;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #fff;
}
