@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f3f3f3;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

h4 {
    font-size: 1.5rem;
    font-weight: 400;
}

h5 {
    font-size: 1.25rem;
    font-weight: 300;
}

h6 {
    font-size: 1rem;
    font-weight: 200;
}

p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

a:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

button {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

button:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem;
}

header .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

header .logo span {
    color: #007bff;
}

header .navbar ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

header .navbar a {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

header .navbar a:hover {
    color: #007bff;
}

header .navbar a.active {
    color: #007bff;
    font-weight: 700;
}

header .navbar:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

header .mobile-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2rem;
    z-index: 9999;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

mobile-navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

header .mobile-navbar .mobile-navbar-content #close-icon i {
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

header .mobile-navbar h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

header .mobile-navbar h1 span {
    color: #007bff;
}

header .mobile-navbar.active {
    transform: translateX(0);
}

header .mobile-navbar.active #menu-icon {
    display: none;
}

header .mobile-navbar.active #close-icon i {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

header .mobile-navbar.active #close-icon:hover {
    color: #007bff;
}

header .mobile-navbar.active #close-icon:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

header .mobile-navbar.active #close-icon.active {
    color: #007bff;
    transform: rotate(90deg);
}

header .mobile-navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

header .mobile-navbar ul li {
    font-size: 1.5rem;
    font-weight: 500;
}

header .mobile-navbar ul li a {
    color: #fff;
    transition: color 0.3s ease;
}

header .mobile-navbar ul li a:hover {
    color: #007bff;
}

header .mobile-navbar ul li a:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

header .mobile-navbar ul li a.active {
    color: #007bff;
    font-weight: 700;
}

header .mobile-navbar ul li a.active:hover {
    color: #0056b3;
}

header #menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

header #menu-icon:hover {
    color: #007bff;
}

header #menu-icon:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

header #menu-icon.active {
    color: #007bff;
    transform: rotate(90deg);
}

header #menu-icon.active:hover {
    color: #0056b3;
}

header .navbar #menu-icon.active:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

header #close-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

header #close-icon:hover {
    color: #007bff;
}

header .navbar #close-icon:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

header .navbar #close-icon.active {
    color: #007bff;
    transform: rotate(90deg);
}

header .navbar #close-icon.active:hover {
    color: #0056b3;
}

header .navbar #close-icon.active:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

header .navbar #close-icon.active {
    display: block;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    background-image: url('https://source.unsplash.com/random/1600x900/?nature,water');
    background-size: cover;
    background-position: center;
    color: #333;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section h1 span {
    color: #007bff;
}

.hero-section p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-section .btn {
    background-color: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-section .btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.hero-section .btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.hero-section .btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.hero-section .hero-image {
    width: 100%;
    max-width: 600px;
}

.hero-section .hero-image img {
    width: 93%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 1.2rem;
}

.hero-section .hero-image img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hero-section .hero-image img:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.hero-section .hero-image img:active {
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.hero-section .hero-image img:active:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #007bff;
}

.about-section p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.about-section .btn {
    background-color: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-section .btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.about-section .btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.about-section .btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.about-section .about-image {
    width: 100%;
    max-width: 600px;
}

.about-section .about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about-section .about-image img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.about-section .about-image img:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.about-section .about-image img:active {
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.services-section {
    max-width: 1300px;
    margin: 0 auto;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #007bff;
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.services-section .services-grid .service-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.services-section .services-grid .service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.services-section .services-grid .service-card h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #007bff;
}

.services-section .services-grid .service-card p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.services-section .services-grid .service-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.services-section .services-grid .service-card i:hover {
    color: #0056b3;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.services-section .services-grid .service-card i:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.services-section .services-grid .service-card i:active {
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.services-section .services-grid .service-card i:active:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.projects-section {
    max-width: 1300px;
    margin: 0 auto;
}

.projects-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #007bff;
}

.projects-section .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.projects-section .projects-grid .project-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.projects-section .projects-grid .project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.projects-section .projects-grid .project-card h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #007bff;
}

.projects-section .projects-grid .project-card p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.projects-section .projects-grid .project-card img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.projects-section .projects-grid .project-card img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.projects-section .projects-grid .project-card img:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.contact-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #007bff;
}

.contact-section p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section form input,
.contact-section form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-weight: 400;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section form input:focus,
.contact-section form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    outline: none;
}

.contact-section form button {
    background-color: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-section form button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.contact-section form button:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.contact-section form button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.contact-section form button:active {
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.contact-section form button:active:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

footer ul li {
    font-size: 1.25rem;
    font-weight: 500;
}

footer p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

footer a {
    color: #007bff;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0056b3;
}

footer a:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

footer .social-icons a {
    font-size: 2rem;
    color: #fff;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #007bff;
}

footer .social-icons a:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

footer .social-icons a:active {
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

footer .social-icons a:active:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

@media screen and (max-width: 768px) {
    header .navbar {
        display: none;
    }

    header #menu-icon {
        display: block;
    }

    header mobile-navbar.active {
        display: block;
        transform: translateX(-100%);
    }

    header .mobile-navbar.active {
        transform: translateX(0);
    }

    .hero-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-section .hero-image {
        max-width: 100%;
    }

    .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-section .about-image {
        max-width: 100%;
    }
    .services-section .services-grid {
        grid-template-columns: 1fr;
    }
    .projects-section .projects-grid {
        grid-template-columns: 1fr;
    }
    .contact-section form {
        max-width: 100%;
    }
    footer .social-icons {
        flex-direction: column;
        gap: 1rem;
    }
    footer .social-icons a {
        font-size: 1.5rem;
    }
    footer p {
        font-size: 0.875rem;
    }
    footer ul li {
        font-size: 1rem;
    }
    footer ul li a {
        font-size: 1rem;
    }
    footer ul li a:hover {
        color: #0056b3;
    }
    footer ul li a:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer ul li a:active {
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }
    footer ul li a:active:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer ul li a.active {
        color: #007bff;
        font-weight: 700;
    }
    
}

@media screen and (max-width: 480px) {
    header .mobile-navbar ul {
        flex-direction: column;
        gap: 1rem;
    }

    header .mobile-navbar a {
        font-size: 1rem;
    }

    header #menu-icon {
        font-size: 1.5rem;
    }

    header #close-icon {
        font-size: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 1rem;
    }
    .services-section h2 {
        font-size: 2rem;
    }
    .services-section .services-grid {
        grid-template-columns: 1fr;
    }
    .projects-section h2 {
        font-size: 2rem;
    }
    .projects-section .projects-grid {
        grid-template-columns: 1fr;
    }
    .contact-section h2 {
        font-size: 2rem;
    }
    .contact-section p {
        font-size: 1rem;
    }
    .contact-section form input,
    .contact-section form textarea {
        font-size: 0.875rem;
    }
    .contact-section form button {
        font-size: 1rem;
    }
    footer p {
        font-size: 0.875rem;
    }
    footer ul li {
        font-size: 0.875rem;
    }
    footer ul li a {
        font-size: 0.875rem;

    }
    footer .social-icons a {
        font-size: 1.5rem;
    }
    footer .social-icons a:hover {
        color: #0056b3;
    }
    footer .social-icons a:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer .social-icons a:active {
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }
    footer .social-icons a:active:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer .social-icons a.active {
        color: #007bff;
        font-weight: 700;
    }
    footer ul li a:hover {
        color: #0056b3;
    }
    footer ul li a:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer ul li a:active {
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }
    footer ul li a:active:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer ul li a.active {
        color: #007bff;
        font-weight: 700;
    }
    footer ul li a:hover {
        color: #0056b3;
    }
    footer ul li a:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer ul li a:active {
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }
}

@media screen and (max-width: 320px) {
    header .navbar ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    header .navbar a {
        font-size: 0.875rem;
    }

    header #menu-icon {
        font-size: 1.25rem;
    }

    header #close-icon {
        font-size: 1.25rem;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-section p {
        font-size: 0.875rem;
    }

    .about-section h2 {
        font-size: 1.75rem;
    }

    .about-section p {
        font-size: 0.875rem;
    }
    .services-section h2 {
        font-size: 1.75rem;
    }
    .services-section .services-grid {
        grid-template-columns: 1fr;
    }
    .projects-section h2 {
        font-size: 1.75rem;
    }
    .projects-section .projects-grid {
        grid-template-columns: 1fr;
    }
    .contact-section h2 {
        font-size: 1.75rem;
    }
    .contact-section p {
        font-size: 0.875rem;
    }
    .contact-section form input,
    .contact-section form textarea {
        font-size: 0.75rem;
    }
    .contact-section form button {
        font-size: 1rem;
    }
    footer p {
        font-size: 0.75rem;
    }
    footer ul li {
        font-size: 0.75rem;
    }
    footer ul li a {
        font-size: 0.75rem;
    }
    footer .social-icons a {
        font-size: 1.25rem;
    }
    footer .social-icons a:hover {
        color: #0056b3;
    }
    footer .social-icons a:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer .social-icons a:active {
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }
    footer .social-icons a:active:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer .social-icons a.active {
        color: #007bff;
        font-weight: 700;
    }
    footer ul li a:hover {
        color: #0056b3;
    }
    footer ul li a:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer ul li a:active {
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }
    footer ul li a:active:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer ul li a.active {
        color: #007bff;
        font-weight: 700;
    }
    footer ul li a:hover {
        color: #0056b3;
    }
    footer ul li a:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer ul li a:active {
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }
    footer ul li a:active:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    }
    footer ul li a.active {
        color: #007bff;
        font-weight: 700;
    }
    footer ul li a:hover {
        color: #0056b3;
    }
}

@media print {
    body {
        background-color: #fff;
        color: #000;
    }

    header,
    footer {
        display: none;
    }

    .hero-section,
    .about-section,
    .services-section,
    .projects-section,
    .contact-section {
        padding: 0;
        margin: 0;
        background-color: #fff;
        color: #000;
    }

    .hero-section h1,
    .about-section h2,
    .services-section h2,
    .projects-section h2,
    .contact-section h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-align: center;
        color: #000;
    }

   .hero-section p,
   .about-section p,
   .services-section p,
   .projects-section p,
   .contact-section p {
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 1rem;
        text-align: center;
        color: #000;
    }
}

@media screen and (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }

    header,
    footer {
        background-color: #1f1f1f;
        color: #e0e0e0;
    }

    header .navbar a,
    footer a {
        color: #bb86fc;
    }

    header .navbar a:hover,
    footer a:hover {
        color: #3700b3;
    }

    header .navbar a.active,
    footer a.active {
        color: #03dac5;
    }
    header .navbar a:focus,
    footer a:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(3, 218, 197, .25);
    }
    header .navbar a:active,
    footer a:active {
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }
    header.navbar a:active:focus,
    footer a:active:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(3, 218, 197,.25);
    }
    header .navbar a.active {
        color: #03dac5;
        font-weight: 700;
    }
    header .navbar a:hover {
        color: #3700b3;
    }
}