/* Custom Styles for Networth Solution */
body {
    font-family: 'Poppins', sans-serif;
    color: #1A1A1A;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Custom Colors */
.text-charcoal { color: #1A1A1A; }
.bg-emerald { background-color: #1D5F4B; }
.text-emerald { color: #1D5F4B; }
.border-emerald { border-color: #1D5F4B; }
.text-gold { color: #C7A008; }
.border-gold { border-color: #C7A008; }

/* Navigation Underline Effect */
.nav-link {
    position: relative;
    padding-bottom: 8px;
    color: #1A1A1A;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1D5F4B;
    transition: width 0.3s ease-in-out;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.nav-link.active {
    color: #C7A008;
}

/* Button Glow Effect */
.btn-glow {
    transition: all 0.3s ease;
}
.btn-glow:hover {
    box-shadow: 0 0 15px rgba(29, 95, 75, 0.5);
    transform: translateY(-2px);
}
.btn-glow-gold:hover {
    box-shadow: 0 0 20px rgba(199, 160, 8, 0.6);
    transform: translateY(-2px);
}

/* Hero Background Animation */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-size: 1000px 100px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,50 C250,100 750,0 1000,50 L1000,100 L0,100 Z" fill="rgba(29,95,75,0.05)"></path></svg>');
    animation: wave-anim 15s linear infinite;
}
.wave.wave2 {
    animation-delay: -5s;
    animation-duration: 20s;
    opacity: 0.7;
}
@keyframes wave-anim {
    0% { background-position-x: 0; }
    100% { background-position-x: 1000px; }
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Staggered animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/*
  Hover effect for feature cards on the About page
  --- NEW CODE ADDED HERE ---
*/
.feature-card {
    transition: all 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    border-radius: 0.75rem; /* 12px */
}

/*
  Custom style for blockquotes on the About page
*/
.quote-style {
    border-left: 4px solid #C7A008; /* Gold border */
    padding-left: 1.5rem;
    font-style: italic;
    color: #1A1A1A;
}

/*
  Subtle gradient background for special sections
*/
.bg-subtle-gradient {
    background-image: linear-gradient(to bottom right, #FFFFFF, rgba(29, 95, 75, 0.05));
}

/* Add this to your style.css or in a <style> tag in the header */
.active-service {
    background-color: #e6f3ee; /* A light green color */
    font-weight: bold;
    color: #059669; /* A darker green color */
}