/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
    background-color: #F8F5ED; /* Light cream background */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #1E2A38; /* Dark blue/black */
    margin-bottom: 15px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #1E2A38;
    background: linear-gradient(135deg, #A88F6D, #D4B88F); /* Gold gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #A88F6D; /* Gold */
    color: white;
    border: 2px solid #A88F6D;
}

.btn-primary:hover {
    background-color: #8F785A;
    border-color: #8F785A;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #1E2A38; /* Dark Blue/Black */
    color: white;
    border: 2px solid #1E2A38;
}

.btn-secondary:hover {
    background-color: #0F172A;
    border-color: #0F172A;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #A88F6D;
    border: 2px solid #A88F6D;
}

.btn-outline:hover {
    background-color: #A88F6D;
    color: white;
    transform: translateY(-2px);
}

.btn-success {
    background-color: #5CB85C; /* Green for success */
    color: white;
    border: 2px solid #5CB85C;
}

.btn-success:hover {
    background-color: #4CA44C;
    border-color: #4CA44C;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: #FFFFFF;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo {
    height: 50px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #1E2A38;
    font-weight: 600;
    font-size: 1.1em;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #A88F6D;
}

/* Dropdown Menu */
.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFFFFF;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1001;
    border-radius: 5px;
    animation: fadeIn 0.3s ease-out;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #1E2A38;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-link:hover {
    background-color: #F0F0F0;
    color: #A88F6D;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    height: 3px;
    width: 25px;
    background-color: #1E2A38;
    margin-bottom: 5px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px; /* Adjust based on header height */
        left: 0;
        background-color: #FFFFFF;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        border-radius: 0 0 5px 5px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #F8F8F8;
        padding: 0;
        border-radius: 0;
        width: 100%;
    }

    .nav-dropdown .dropdown-menu.active {
        display: block;
    }

    .dropdown-link {
        padding: 10px 0;
    }
}

/* Hero Section */
.hero {
    background-image: url('../images/abstract-bg-hero.png'); /* New abstract background */
    background-size: cover;
    background-position: center;
    color: #1E2A38; /* Dark text for contrast */
    padding: 80px 0;
    display: flex;
    align-items: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent white overlay */
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    margin-right: 40px;
}

.hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1E2A38;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #333;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.8em;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .hero-buttons .btn {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Page Hero Section (for inner pages) */
.page-hero {
    background: linear-gradient(135deg, #A88F6D, #D4B88F); /* Gold gradient */
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.page-hero h1 {
    font-size: 3em;
    color: white;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Who We Help Section */
.who-we-help {
    padding: 80px 0;
    background-color: #F8F5ED;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.help-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.help-icon {
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.help-card h3 {
    font-size: 1.8em;
    color: #1E2A38;
    margin-bottom: 10px;
}

.help-card p {
    color: #555;
}

/* Core Services Section */
.core-services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid #A88F6D; /* Gold border */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    border-bottom-color: #1E2A38; /* Dark blue/black on hover */
}

.service-icon {
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 1.8em;
    color: #1E2A38;
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
}

/* Why Choose JKB Section */
.why-choose {
    padding: 80px 0;
    background-color: #F8F5ED;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #1E2A38; /* Dark blue/black border */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    border-top-color: #A88F6D; /* Gold on hover */
}

.feature-card h3 {
    font-size: 1.8em;
    color: #1E2A38;
    margin-bottom: 10px;
}

.feature-card p {
    color: #555;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #F8F5ED;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 5px solid #D4B88F; /* Lighter gold border */
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #1E2A38;
}

.testimonial-author span {
    display: block;
    font-weight: 400;
    color: #777;
    font-size: 0.9em;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background-color: #F8F5ED;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.blog-content h3 a {
    text-decoration: none;
    color: #1E2A38;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #A88F6D;
}

.blog-content p {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.blog-date {
    font-size: 0.85em;
    color: #777;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #A88F6D, #D4B88F); /* Gold gradient */
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8em;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1E2A38;
    color: white;
    padding: 50px 0 20px;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 150px;
    margin-right: 30px;
}

.footer-logo-img {
    height: 60px; /* Adjust as needed */
    filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-links {
    display: flex;
    flex: 2;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-column h4 {
    color: #A88F6D; /* Gold for footer headings */
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #A88F6D;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 30px;
    }
}

/* Service Details Page Specific Styles */
.services-overview {
    padding: 50px 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro h2 {
    font-size: 2.5em;
    color: #1E2A38;
}

.services-intro p {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.service-details .service-detail {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border-left: 5px solid #A88F6D; /* Gold border */
}

.service-details .service-detail:last-child {
    margin-bottom: 0;
}

.service-details .service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-details .service-icon {
    margin-right: 20px;
}

.service-details .service-header h3 {
    font-size: 2em;
    color: #1E2A38;
    margin: 0;
}

.service-details .service-content p {
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: '✔';
    color: #A88F6D; /* Gold checkmark */
    position: absolute;
    left: 0;
    top: 0;
}

.service-features li strong {
    color: #1E2A38;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: #F8F5ED;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.pricing-section > p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #A88F6D; /* Gold border */
}

.pricing-card.featured {
    border-top-color: #1E2A38; /* Dark blue/black for featured */
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.pricing-card h3 {
    font-size: 2em;
    color: #1E2A38;
    margin-bottom: 10px;
}

.pricing-note {
    color: #777;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.pricing-card ul li:before {
    content: '✓';
    color: #A88F6D; /* Gold checkmark */
    position: absolute;
    left: 0;
    top: 0;
}

.pricing-card.featured ul li:before {
    color: #1E2A38;
}

.pricing-cta p {
    font-size: 1em;
    color: #777;
    margin-bottom: 20px;
}

.pricing-disclaimer {
    margin-top: 50px;
    padding: 20px;
    background-color: #F8F5ED;
    border-left: 5px solid #A88F6D; /* Gold border */
    border-radius: 5px;
    text-align: left;
}

.pricing-disclaimer p {
    color: #1E2A38;
    font-size: 0.95em;
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-form-container {
    flex: 2;
    min-width: 300px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1E2A38;
}

.contact-form-container p {
    color: #555;
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1E2A38;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #DDD;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input[type="submit"] {
    width: auto;
    cursor: pointer;
    background-color: #A88F6D; /* Gold */
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    background-color: #8F785A;
}

.contact-info-container {
    flex: 1;
    min-width: 250px;
    background-color: #F8F5ED;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-container h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1E2A38;
}

.contact-info-container p {
    color: #555;
    margin-bottom: 15px;
}

.contact-info-container ul {
    list-style: none;
    padding: 0;
}

.contact-info-container ul li {
    margin-bottom: 10px;
    color: #555;
}

.contact-info-container ul li strong {
    color: #1E2A38;
}

.contact-info-container a {
    color: #A88F6D; /* Gold */
    text-decoration: none;
}

.contact-info-container a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #F8F5ED;
}

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.5em;
    color: #1E2A38;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
}

/* Policy Pages */
.policy-content {
    padding: 50px 0;
}

.policy-content h1 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 40px;
    color: #1E2A38;
}

.policy-content h2 {
    font-size: 2em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #A88F6D; /* Gold */
}

.policy-content h3 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1E2A38;
}

.policy-content p {
    margin-bottom: 15px;
    color: #555;
}

.policy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-content ol {
    list-style: decimal;
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-content li {
    margin-bottom: 8px;
    color: #555;
}

.policy-content a {
    color: #A88F6D; /* Gold */
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Blog Article Page Styles */
.blog-article-section {
    padding: 50px 0;
}

.blog-article-section h1 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 20px;
    color: #1E2A38;
}

.blog-meta {
    text-align: center;
    color: #777;
    font-size: 0.9em;
    margin-bottom: 40px;
}

.blog-content-body h2 {
    font-size: 2em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #A88F6D; /* Gold */
}

.blog-content-body h3 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1E2A38;
}

.blog-content-body p {
    margin-bottom: 15px;
    color: #555;
}

.blog-content-body ul,
.blog-content-body ol {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.blog-content-body ol {
    list-style: decimal;
}

.blog-content-body li {
    margin-bottom: 8px;
    color: #555;
}

.blog-content-body a {
    color: #A88F6D; /* Gold */
    text-decoration: none;
}

.blog-content-body a:hover {
    text-decoration: underline;
}

.blog-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.blog-content-body blockquote {
    border-left: 4px solid #A88F6D; /* Gold */
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #777;
}

.blog-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.blog-content-body table th,
.blog-content-body table td {
    border: 1px solid #DDD;
    padding: 10px;
    text-align: left;
}

.blog-content-body table th {
    background-color: #F0F0F0;
    color: #1E2A38;
}

/* Card hover glow effect */
.help-card:hover,
.service-card:hover,
.feature-card:hover,
.blog-card:hover {
    box-shadow: 0 0 20px rgba(168, 143, 109, 0.5); /* Gold glow */
}

.service-card:hover {
    box-shadow: 0 0 20px rgba(30, 42, 56, 0.5); /* Dark blue/black glow */
}

.feature-card:hover {
    box-shadow: 0 0 20px rgba(168, 143, 109, 0.5); /* Gold glow */
}

.blog-card:hover {
    box-shadow: 0 0 20px rgba(168, 143, 109, 0.5); /* Gold glow */
}

/* Scroll to top button color */
.scroll-to-top {
    background: #A88F6D; /* Gold */
}

.scroll-to-top:hover {
    background: #8F785A; /* Darker Gold */
}



