:root {
    --primary: #6d9773;
    --accent: #c8a97e;
    --bg-light: #fdfaf6;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg-light);
}

.topbar {
    background-color: var(--bg-light);
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}

.topbar i {
    color: var(--primary);
    margin-right: 6px;
}

.navbar {
    background-color: white;
    box-shadow: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.navbar-brand i {
    color: var(--accent);
    margin-right: 6px;
}

.nav-link {
    color: #333 !important;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: 0.4s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-consult,
.btn-quick {
    border-radius: 0;
    padding: 8px 18px;
    font-weight: 500;
}

.btn-quick {
    background-color: #f8f5f0;
    color: #333;
    border: none;
}

.btn-consult {
    background-color: var(--accent);
    color: white;
    border: none;
}

.btn-quick:hover,
.btn-consult:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .topbar {
        font-size: 12px;
    }
}

 :root {
    --primary: #6d9773;
    --accent: #c8a97e;
    --bg-light: #fdfaf6;
    --text-dark: #333;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg-light);
    overflow-x: hidden;
}


/* Hero Section */

.hero-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1 1 50%;
    padding: 60px 40px;
    animation: fadeInLeft 1.2s ease forwards;
}

.hero-content h5 {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .highlight {
    background: var(--accent);
    color: white;
    padding: 2px 6px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-btn {
    background-color: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn:hover {
    background-color: #b58969;
}

.hero-image {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden;
    animation: fadeInRight 1.2s ease forwards;
}

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: brightness(0.95);
}


/* Animations */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }
    .hero-image img {
        clip-path: none;
        height: auto;
    }
    .hero-content {
        text-align: center;
        padding: 40px 20px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

.about-section {
    background-color: #fff9f7;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.container-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    position: relative;
    min-width: 280px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    line-height: 1.4;
}

.about-content {
    flex: 1;
    min-width: 280px;
}

.about-content h5 {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content .highlight {
    color: var(--primary);
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-points {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.about-points li {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-points i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 18px;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.learn-more-btn:hover {
    background-color: var(--accent);
}


/* Responsive styles */

@media (max-width: 992px) {
    .container-about {
        flex-direction: column;
        gap: 40px;
    }
    .about-content h2 {
        font-size: 28px;
    }
    .about-content p,
    .about-points li {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 24px;
    }
    .badge {
        font-size: 14px;
        padding: 10px 15px;
    }
    .learn-more-btn {
        width: 100%;
        text-align: center;
    }
}

.why-choose-section {
    background: linear-gradient(to bottom, #fdfaf6, #f0ece4);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.container-choose {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.choose-header h5 {
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.choose-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.choose-header .highlight {
    color: var(--accent);
}

.choose-header p {
    color: #555;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.choose-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.choose-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.choose-card h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.choose-card p {
    color: #666;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .choose-header h2 {
        font-size: 2rem;
    }
}

.services-section {
    background-color: #fdfaf6;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.container-services {
    max-width: 1200px;
    margin: auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h5 {
    color: var(--accent);
    font-size: 18px;
}

.services-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
    color: var(--text-dark);
}

.services-header .highlight {
    color: var(--primary);
}

.services-header p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
}

.image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .image-container img {
    transform: scale(1.05);
}

.service-card:hover .image-overlay {
    opacity: 1;
}

.service-content {
    padding: 25px 20px;
}

.service-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-content h4 i {
    color: var(--accent);
    margin-right: 8px;
}

.service-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}


/* Responsive Styles */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-header h2 {
        font-size: 26px;
    }
    .service-content h4 {
        font-size: 18px;
    }
    .service-content p {
        font-size: 14px;
    }
}

.banner-section {
    position: relative;
    width: 100%;
    margin: 60px 0;
    overflow: hidden;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(109, 151, 115, 0.85);
    /* green tint overlay */
    width: 100%;
    height: 100%;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
    z-index: 3;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.banner-btn {
    background-color: var(--accent);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.banner-btn:hover {
    background-color: #b18564;
}

@media (max-width: 768px) {
    .banner-content h2 {
        font-size: 1.8rem;
    }
    .banner-content p {
        font-size: 1rem;
    }
}

.doctors-section {
    padding: 100px 20px;
    background-color: #fdfaf6;
    text-align: center;
}

.container-doctors {
    max-width: 1200px;
    margin: auto;
}

.section-header h5 {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header .highlight {
    color: var(--accent);
}

.section-header p {
    max-width: 600px;
    margin: auto;
    color: #555;
    margin-bottom: 60px;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.doctor-card {
    background-color: #eef2e8;
    border-radius: 20px;
    padding: 80px 20px 30px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-10px);
}

.doctor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #fff;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card h4 {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark);
}

.doctor-card h6 {
    color: var(--primary);
    font-weight: 500;
    margin: 10px 0;
}

.doctor-card p {
    font-size: 0.95rem;
    color: #555;
    padding: 0 10px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons i {
    font-size: 1.2rem;
    color: var(--accent);
    transition: color 0.3s ease;
    cursor: pointer;
}

.social-icons i:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

.testimonial-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
}

.testimonial-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -3;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay */
    z-index: -2;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    color: #fff;
    text-align: center;
    width: 100%;
}

.section-title h5 {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--accent, #c8a97e);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #ddd;
    max-width: 600px;
    margin: auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    color: #333;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.patient-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.patient-info h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.patient-info span {
    font-size: 13px;
    color: #777;
}

.appointment-section {
    padding: 80px 20px;
    background-color: #fdfaf6;
    font-family: 'Poppins', sans-serif;
}

.appointment-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.appointment-image {
    position: relative;
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.appointment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom right, rgba(13, 26, 38, 0.5), rgba(13, 26, 38, 0.7));
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay-text h3 i {
    margin-right: 10px;
    color: var(--accent);
}

.overlay-text p {
    font-size: 16px;
    color: #eee;
    margin-bottom: 20px;
}

.paw-prints {
    display: flex;
    gap: 10px;
}

.paw-prints img {
    width: 40px;
    height: 40px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.paw-prints img:hover {
    transform: scale(1.1) rotate(10deg);
}

.appointment-form-box {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.appointment-form-box h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.appointment-form .form-row {
    margin-bottom: 20px;
}

.appointment-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: #555;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    resize: none;
    font-family: 'Poppins', sans-serif;
}

.appointment-form textarea {
    height: 100px;
}

.btn-appointment {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-appointment:hover {
    background-color: var(--accent);
}


/* Responsive Styles */

@media (max-width: 992px) {
    .appointment-content {
        flex-direction: column;
    }
    .appointment-image,
    .appointment-form-box {
        width: 100%;
    }
    .overlay-text {
        padding: 30px;
        text-align: center;
        align-items: center;
    }
    .overlay-text h3 {
        font-size: 24px;
    }
    .overlay-text p {
        font-size: 15px;
    }
    .paw-prints {
        justify-content: center;
    }
    .appointment-form-box {
        padding: 30px;
    }
    .appointment-form-box h2 {
        font-size: 24px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .overlay-text h3 {
        font-size: 20px;
    }
    .overlay-text p {
        font-size: 13.5px;
    }
    .paw-prints img {
        width: 32px;
        height: 32px;
    }
    .btn-appointment {
        width: 100%;
        text-align: center;
    }
}

.blog-section {
    background-color: #fdfaf6;
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    color: var(--primary, #6d9773);
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent, #c8a97e);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.blog-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.blog-entry {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.blog-entry:hover {
    transform: translateY(-5px);
}

.blog-entry.reverse {
    flex-direction: row-reverse;
}

.blog-img {
    flex: 1 1 45%;
    overflow: hidden;
    border-radius: 15px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-entry:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    flex: 1 1 50%;
}

.blog-content h3 {
    font-size: 24px;
    color: var(--text-dark, #333);
    margin-bottom: 12px;
}

.blog-date {
    font-size: 14px;
    color: var(--accent, #c8a97e);
    display: inline-block;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary, #6d9773);
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--accent, #c8a97e);
}

.vet-footer {
    background-color: #1c1f24;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 20px;
    margin-top: -50px;
    margin-bottom: 60px;
    gap: 30px;
    flex-wrap: wrap;
    color: #fff;
}

.footer-cta h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-cta p {
    font-size: 16px;
    margin: 0;
}

.cta-button .cta-btn {
    padding: 12px 30px;
    background-color: #fff;
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button .cta-btn:hover {
    background-color: var(--text-dark);
    color: #fff;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact {
    flex: 1 1 300px;
}

.footer-contact .logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 15px;
    color: #d1d5db;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--accent);
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    font-size: 18px;
    color: #ffffff;
    margin-right: 12px;
    background: #1f2937;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: #0f172a;
}

.footer-links {
    display: flex;
    flex: 2 1 600px;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-links h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #d1d5db;
}

.footer-links li a {
    color: #d1d5db;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #aaa;
    background: #0c1221;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}