/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #D4AF37; /* White text */
    background-color: #000000; /* Black background */
    line-height: 1.6;
}

a {
    color: #D4AF37; /* Gold color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff; /* White on hover */
}

h1, h2, h3, h4, h5, h6 {
    color: #D4AF37; /* Gold headings */
    font-weight: 600;
}

p {
    color: #ffffff; /* White text */
    font-size: 16px;
    line-height: 1.8;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000; /* Black background */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-outter, .loader-inner {
    position: absolute;
    border: 4px solid #D4AF37; /* Gold border */
    border-radius: 50%;
}

.loader-outter {
    width: 100%;
    height: 100%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

.loader-inner {
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    border-bottom-color: transparent;
    animation: spinReverse 0.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinReverse {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Header Area */
.header {
    background-color: #000000; /* Black background */
    border-bottom: 1px solid #D4AF37; /* Gold border */
}

.topbar {
    background-color: #1a1a1a; /* Dark gray background */
    padding: 10px 0;
}

.top-link a, .top-contact li {
    color: #D4AF37; /* White text */
    font-size: 14px;
    transition: color 0.3s ease;
}

.top-link a:hover, .top-contact li:hover {
    color: #D4AF37; /* Gold on hover */
}

.logo img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #ffffff !important; /* White text */
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #D4AF37 !important; /* Gold on hover */
}

/* Slider Area */
.slider {
    background-color: #000000; /* Black background */
}

.single-slider {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.single-slider .text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #D4AF37; /* Gold heading */
}

.single-slider .text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.single-slider .btn {
    background-color: #D4AF37; /* Gold button */
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    color: #000000; /* Black text */
    transition: background-color 0.3s ease;
}

.single-slider .btn:hover {
    background-color: #ffffff; /* White on hover */
    color: #000000; /* Black text */
}

/* Features Section */
.features {
    background-color: #1a1a1a; /* Dark gray background */
    padding: 100px 0;
}

.section-title h2 {
    color: #D4AF37; /* Gold heading */
    font-size: 36px;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 16px;
    margin-bottom: 30px;
}

.single-feature {
    background-color: #000000; /* Black background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.single-feature:hover {
    transform: translateY(-10px); /* Lift effect on hover */
}

.single-feature i {
    font-size: 48px;
    color: #D4AF37; /* Gold icon */
    margin-bottom: 20px;
}

.single-feature h3 {
    color: #D4AF37; /* Gold heading */
    font-size: 24px;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    background-color: #000000; /* Black background */
    padding: 100px 0;
}

.single-service {
    background-color: #1a1a1a; /* Dark gray background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.single-service:hover {
    transform: translateY(-10px); /* Lift effect on hover */
}

.single-service i {
    font-size: 48px;
    color: #D4AF37; /* Gold icon */
    margin-bottom: 20px;
}

.single-service h4 {
    color: #D4AF37; /* Gold heading */
    font-size: 24px;
    margin-bottom: 15px;
}

/* Inquiry Form */
.appointment {
    background-color: #1a1a1a; /* Dark gray background */
    padding: 100px 0;
}

.appointment .form-group input, .appointment .form-group textarea {
    background-color: #000000; /* Black background */
    border: 1px solid #D4AF37; /* Gold border */
    color: #ffffff; /* White text */
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
}

.appointment .btn {
    background-color: #D4AF37; /* Gold button */
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    color: #000000; /* Black text */
    transition: background-color 0.3s ease;
}

.appointment .btn:hover {
    background-color: #ffffff; /* White on hover */
    color: #000000; /* Black text */
}

/* Footer */
.footer {
    background-color: #000000; /* Black background */
    padding: 50px 0;
}

.footer h2 {
    color: #D4AF37; /* Gold heading */
    font-size: 24px;
    margin-bottom: 20px;
}

.footer p {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer .social li {
    display: inline-block;
    margin: 0 10px;
}

.footer .social a {
    color: #D4AF37; /* Gold icons */
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer .social a:hover {
    color: #ffffff; /* White on hover */
}

.copyright {
    background-color: #1a1a1a; /* Dark gray background */
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    font-size: 14px;
    margin: 0;
}

.copyright a {
    color: #D4AF37; /* Gold link */
    text-decoration: none;
}

.copyright a:hover {
    color: #ffffff; /* White on hover */
}
/* Header Area */
.header {
    background-color: #000000; /* Black background */
    border-bottom: 1px solid #D4AF37; /* Gold border */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.topbar {
    background-color: #1a1a1a; /* Dark gray background */
    padding: 10px 0;
}

.top-link, .top-contact {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-link li, .top-contact li {
    margin-right: 20px;
}

.top-link a, .top-contact li {
    color: #ffffff; /* White text */
    font-size: 14px;
    transition: color 0.3s ease;
}

.top-link a:hover, .top-contact li:hover {
    color: #D4AF37; /* Gold on hover */
}

.top-contact li i {
    margin-right: 5px;
    color: #D4AF37; /* Gold icon */
}

/* Header Inner (Logo and Main Menu) */
.header-inner {
    padding: 15px 0;
    background-color: #000000; /* Black background */
}

.inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
}

/* Main Menu */
.main-menu {
    display: flex;
    align-items: center;
}

.navigation {
    display: flex;
    align-items: center;
}

.nav.menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav.menu li {
    margin-left: 20px;
}

.nav.menu li a {
    color: #ffffff; /* White text */
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav.menu li a:hover {
    color: #D4AF37; /* Gold on hover */
}

/* Mobile Menu Toggle */
.navbar-toggler {
    display: none; /* Hide by default */
    background-color: #D4AF37; /* Gold background */
    border: none;
    padding: 10px;
    cursor: pointer;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000000; /* Black icon */
    margin: 5px 0;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .topbar {
        display: none; /* Hide topbar on mobile */
    }

    .header-inner {
        padding: 10px 0;
    }

    .logo img {
        height: 40px; /* Smaller logo for mobile */
    }

    .navbar-toggler {
        display: block; /* Show toggle button */
    }

    .main-menu {
        display: none; /* Hide menu by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000000; /* Black background */
        padding: 10px 0;
    }

    .main-menu.active {
        display: block; /* Show menu when active */
    }

    .nav.menu {
        flex-direction: column;
    }

    .nav.menu li {
        margin: 10px 0;
    }

    .nav.menu li a {
        font-size: 18px;
    }
}
/* Navbar Links in Gold Color */
.nav.menu li a {
    color: #D4AF37; /* Gold color for navbar links */
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav.menu li a:hover {
    color: #ffffff; /* White on hover */
}

/* Active Link (Current Page) */
.nav.menu li.active a {
    color: #ffffff; /* White for active link */
    font-weight: 600;
}
/* Feature Section Images */
.single-feature {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a; /* Dark gray background */
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.single-feature:hover {
    transform: translateY(-10px); /* Lift effect on hover */
}

.single-feature .feature-image {
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px; /* Optional: Add rounded corners */
    margin-bottom: 20px; /* Space between image and heading */
}

.single-feature h3 {
    color: #D4AF37; /* Gold heading */
    font-size: 24px;
    margin-bottom: 15px;
}

.single-feature p {
    color: #ffffff; /* White text */
    font-size: 16px;
}
.fixed-textarea {
    resize: none; /* Disable resizing */
}
/* Blog Section */
.blog {
    background-color: #000000; /* Black background */
    padding: 100px 0;
}

.section-title h2 {
    color: #D4AF37; /* Gold heading */
    font-size: 36px;
    margin-bottom: 20px;
}

.section-title p {
    color: #ffffff; /* White text */
    font-size: 16px;
    margin-bottom: 40px;
}

.single-blog {
    background-color: #1a1a1a; /* Dark gray background */
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.single-blog:hover {
    transform: translateY(-10px); /* Lift effect on hover */
}

.blog-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    color: #D4AF37; /* Gold heading */
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #ffffff; /* White on hover */
}

.blog-content p {
    color: #ffffff; /* White text */
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-content .read-more {
    color: #D4AF37; /* Gold link */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-content .read-more:hover {
    color: #ffffff; /* White on hover */
}

/* Service Header */
.service-header {
    text-align: center;
    padding: 60px 20px;
    background-color: #2c3e50;
    color: #fff;
    margin-bottom: 40px;
}

.service-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-header p {
    font-size: 1.2rem;
    font-style: italic;
    color: #ecf0f1;
}

/* Service Details Section */
.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    flex: 2;
    min-width: 300px;
}

.service-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.service-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-content ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

/* Call-to-Action Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #3498db;
    color: #fff;
    margin-bottom: 40px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #2c3e50;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #34495e;
}

/* Footer Section */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: #fff;
    margin-top: 40px;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* General Styles */
body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37; /* Gold */
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-style: italic;
}

/* Socials Grid */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.social-card {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.social-card i {
    font-size: 2.5rem;
    color: #d4af37; /* Gold */
    margin-bottom: 20px;
}

.social-card h3 {
    font-size: 1.5rem;
    color: #d4af37; /* Gold */
    margin-bottom: 15px;
}

.social-card p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #121212;
    background-color: #d4af37; /* Gold */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #b89c30; /* Darker Gold */
}

/* Contact Information Section */
.contact-info {
    background: #1e1e1e;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #2c2c2c;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.contact-card i {
    font-size: 2.5rem;
    color: #d4af37; /* Gold */
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #d4af37; /* Gold */
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Footer Section */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    color: #e0e0e0;
    margin-top: 60px;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}
* Mobile Navigation */
@media (max-width: 991px) {
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .main-menu.active {
        right: 0;
    }
    
    .nav.menu {
        flex-direction: column;
    }
    
    .nav.menu li {
        margin: 10px 0;
    }
    
    .navbar-toggler {
        display: block;
        z-index: 1001;
    }
    
    .navbar-toggler.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggler.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggler.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Service Section Styling */
.services {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-4, .col-md-6, .col-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.single-service {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.single-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.single-service h4 {
    padding: 20px 20px 0;
    margin-bottom: 15px;
}

.single-service h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.single-service h4 a:hover {
    color: #8e7037; /* Gold color for hover */
}

.single-service p {
    padding: 0 20px;
    color: #666;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #8e7037; /* Gold color */
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin: 0 20px 20px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #6d572a; /* Darker gold */
    color: white;
}

/* Responsive Grid */
@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Ensure equal height for all cards */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-4, .col-md-6 {
    display: flex;
}
/* Footer Styles */
.footer {
    background-color: #222;
    color: #fff;
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
    margin-bottom: 20px;
    max-width: 120px;
}

.footer-title {
    color: #d4af37;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #d4af37;
}

.footer-description {
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-list {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-list a:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #bbb;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.footer-menu i {
    margin-right: 8px;
    font-size: 12px;
    color: #d4af37;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: #d4af37;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 16px;
}

.contact-info a {
    color: #bbb;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #d4af37;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.newsletter-form button {
    background: #d4af37;
    color: #222;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f1c40f;
}

.footer-bottom {
    padding: 20px 0;
    background: #111;
}

.copyright-text p {
    margin: 0;
    color: #bbb;
    font-size: 14px;
}

.copyright-text a {
    color: #d4af37;
}

.footer-legal {
    text-align: right;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-legal a {
    color: #bbb;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #d4af37;
}

@media (max-width: 991px) {
    .footer-legal {
        text-align: left;
        margin-top: 15px;
    }
    
    .footer-legal ul {
        justify-content: flex-start;
    }
}
.social-links {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #d4af37;
    transform: translateY(-3px);
}

.social-links i {
    font-size: 18px;
}

/* For screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.social-links {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    color: #d4af37; /* Gold color */
    border: 2px solid #d4af37; /* Gold border */
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #d4af37; /* Gold background on hover */
    color: #222; /* Dark text on gold background */
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.social-links i {
    font-size: 18px;
}

/* Gold color variations */
:root {
    --gold-primary: #d4af37; /* Classic gold */
    --gold-dark: #b8860b;    /* Darker gold */
    --gold-light: #f8de7e;   /* Lighter gold */
}

/* For screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Optional: Different gold shades for each icon */
.social-links li:nth-child(1) a { color: var(--gold-primary); border-color: var(--gold-primary); }
.social-links li:nth-child(2) a { color: var(--gold-light); border-color: var(--gold-light); }
.social-links li:nth-child(3) a { color: var(--gold-primary); border-color: var(--gold-primary); }
.social-links li:nth-child(4) a { color: var(--gold-dark); border-color: var(--gold-dark); }

.social-links li:nth-child(1) a:hover { background-color: var(--gold-primary); }
.social-links li:nth-child(2) a:hover { background-color: var(--gold-light); color: #222; }
.social-links li:nth-child(3) a:hover { background-color: var(--gold-primary); }
.social-links li:nth-child(4) a:hover { background-color: var(--gold-dark); color: #fff; }
