/* Clients Section */
#clients {
    padding: 80px 0;
    background-color: var(--darker-gray);
    overflow: hidden;
}

#clients h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.clients-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.clients-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
    padding: 10px 0;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Projects Section */
#projects {
    padding: 5rem 0;
    background-color: transparent;
}

.projects-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.project-slide {
    display: none;
    background: rgb(151, 54, 54);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.project-image {
    height: 100%;
    min-height: 400px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-details h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.project-meta i {
    color: white;
    margin-right: 5px;
}

.project-details p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    color: white;
}

.slider-arrow:hover {
    background-color: var(--red);
    color: white;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slider-dots {
    position: relative;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Project CTA Buttons */
.project-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0 2rem;
    flex-wrap: wrap;
}

.project-cta .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.project-cta .btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.project-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.project-cta .btn-primary {
    background: var(--red);
    color: white;
    border: 2px solid var(--red);
}

.project-cta .btn-primary:hover {
    background: #d32f2f;
    border-color: #d32f2f;
}

/* Responsive */
@media (max-width: 992px) {
    .project-slide.active {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        min-height: 300px;
    }
    
    .project-details {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .project-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

.client-logo img {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0) brightness(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 10 - 30px * 9)); /* (logo width * number of logos) + (gap * (number of logos - 1)) */
    }
}

/* Pause animation on hover */
.clients-container:hover .clients-track {
    animation-play-state: paused;
}

/* Base Styles */
:root {
    --dark-gray: #1a1a1a;
    --darker-gray: #0d0d0d;
    --light-gray: #333333;
    --red: #ff3333;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('../images/body-bg.webp') no-repeat center center/cover fixed;
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
}

a:hover {
    color: var(--red);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* Top Bar Styles */
.top-bar {
    background-color: #2a0a0a; /* Very dark red */
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.top-bar .container {
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-link {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
}

.contact-link span {
    transition: opacity 0.3s ease;
}

/* Show only icons on mobile */
@media (max-width: 768px) {
    .contact-link span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-link {
        width: 28px;
        height: 28px;
        justify-content: center;
        border-radius: 50%;
    }
    
    .contact-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

.contact-link:hover {
    color: var(--red);
    opacity: 1;
}

.contact-link i {
    font-size: 0.9em;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--red);
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header Styles */
.header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 40px; /* Height of the top bar */
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

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

/* Add background color when scrolled */
.header.scrolled {
    background-color: rgba(13, 13, 13, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px; /* Adjust based on your logo's aspect ratio */
    width: auto;
    max-width: 100%;
    transition: var(--transition);
    filter: brightness(0) invert(1); /* Makes the logo white */
}

/* Adjust logo size on smaller screens */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    opacity: 0.7;
    transition: var(--transition);
}

.lang-btn:hover {
    opacity: 1;
    color: var(--red);
}

.lang-btn.active {
    opacity: 1;
    font-weight: 600;
    color: var(--red);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-links li {
    position: relative;
    padding: 0 1.5rem;
}

.nav-links li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -0.5rem;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--red);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 30vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: left;
    padding: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .container {
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.highlight-text {
    color: #8B0000; /* Dark red color */
    font-family: 'Bowlby One SC', cursive;
    font-weight: 400;
    text-shadow: none;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ccc;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--red);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

/* Sections */
section {
    padding: 0.5rem 0;
}

/* Adjust hero section bottom padding */
.hero {
    padding-bottom: 0.5rem;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    color: var(--white);
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--red);
    margin: 1rem auto 0;
}

/* Services */
.services .container {
    max-width: 2000px;
    width: 100%;
    margin: -1rem auto 0;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 1600px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #222);
    padding: 1.8rem 1.2rem;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
    border-left: 4px solid var(--red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--red);
}

.service-card h3 {
    margin: 0 0 1rem 0;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    color: #aaa;
    margin: 0.4rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.2rem;
}

.service-card p::before {
    content: '•';
    color: var(--red);
    font-weight: bold;
    display: inline-block;
    width: 1.2rem;
    margin-left: -1.2rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--red);
    background: #ffffff;
}

.service-card:hover h3,
.service-card:hover p {
    color: #333;
}

.service-card:hover h3::after {
    background: #333;
}

.service-card:hover p::before {
    color: #333;
}

/* About Section */
#about {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 5rem 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--white);
}

.about-content p {
    color: #ccc;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .gallery-grid {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================
   Footer
   ===================== */
.footer {
    background-color: #0a192f;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer > .container {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #ff8a00);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.company-desc {
    color: #b3b3b3;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-contact p {
    color: #b3b3b3;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--red);
    margin-top: 4px;
    min-width: 18px;
}

.footer h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--red);
}

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

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    width: 100%;
}

.footer-links a:hover {
    color: var(--red);
    padding-left: 0;
}

.footer-links i {
    font-size: 0.7rem;
    color: var(--red);
    min-width: 12px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    margin: 1.5rem 0;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #2a3a5c;
    background: #0f2444;
    color: #fff;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: #6c7a91;
}

.newsletter-form button {
    background: var(--red);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff5252;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #081428;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright {
    color: #8a99b5;
    font-size: 0.9rem;
}

.copyright strong {
    color: #fff;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #8a99b5;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--red);
}

.footer-legal span {
    color: #3a4a6b;
    font-size: 0.8rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer-legal span {
        display: none;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--red);
}

.footer-section p {
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #aaa;
    transition: var(--transition);
    display: block;
}

.footer-section ul li a:hover {
    color: var(--red);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 0.9rem;
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--dark-gray);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}
