/* LumiCode - Dark Theme Stylesheet */

/* Base Styles and Variables */
:root {
    --primary-color: #f4e9cd; /* Cream */
    --primary-color-rgb: 244, 233, 205;
    --secondary-color: #9dbebb; /* Sage green */
    --secondary-color-rgb: 157, 190, 187;
    --dark-bg: #031926; /* Dark blue */
    --dark-bg-rgb: 3, 25, 38;
    --darker-bg: #1a2023; /* Darker blue-gray */
    --darker-bg-rgb: 26, 32, 35;
    --light-bg: #468189; /* Teal */
    --lighter-bg: #77aca2; /* Light teal */
    --text-color: #ffffff;
    --text-muted: #999999;
    --border-color: #4d4d4d;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --glow: 0 0 15px rgba(244, 233, 205, 0.5);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    padding-top: 70px; /* Default navbar height */
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.highlight {
    color: var(--primary-color);
}

/* Buttons */

/* General Page Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.bg-alt {
    background-color: var(--darker-bg);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}


/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(var(--primary-color-rgb), 0.2);
    width: 140px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(var(--primary-color-rgb), 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
    border-color: rgba(var(--primary-color-rgb), 0.5);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--light-bg), var(--lighter-bg));
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

/* Homepage Hero Styles */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(var(--darker-bg-rgb), 0.7), rgba(var(--dark-bg-rgb), 0.8)), no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--primary-color);
}

.hero-homepage {
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at top right, rgba(var(--primary-color-rgb), 0.4), transparent 50%),
        radial-gradient(circle at bottom left, rgba(var(--secondary-color-rgb), 0.4), transparent 50%);
    z-index: 0;
}

/* Add animated elements to the background */
.splash-container::before,
.splash-container::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 15s infinite alternate ease-in-out;
}

.splash-container::before {
    top: -100px;
    right: -50px;
    background: rgba(var(--primary-color-rgb), 0.1);
    animation-delay: -5s;
}

.splash-container::after {
    bottom: -100px;
    left: -50px;
    background: rgba(var(--secondary-color-rgb), 0.1);
    animation-duration: 20s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.1); }
    100% { transform: translate(-20px, 40px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
}

.homepage-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.logo-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.homepage-logo-img {
    height: 100px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(var(--primary-color-rgb), 0.5));
}

.company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.3);
    margin: 0;
}

.splash-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: var(--secondary-color);
}

.splash-logo img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(var(--primary-color-rgb), 0.5));
    animation: glow 3s infinite alternate ease-in-out;
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 10px rgba(var(--primary-color-rgb), 0.5)); }
    50% { filter: drop-shadow(0 0 50px rgba(var(--primary-color-rgb), 0.8)); }
    100% { filter: drop-shadow(0 0 15px rgba(var(--primary-color-rgb), 0.6)); }
}

.splash-logo .logo-text {
    font-size: 4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.splash-content {
    max-width: 700px;
    animation: fadeIn 1.5s ease-out;
    padding: 0 15px;
}

.splash-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.splash-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}



.social-links {
    margin-top: 50px;
    animation: fadeInUp 2s ease-out;
}

.homepage-social {
    margin-top: 30px;
    justify-content: center;
}

.cta-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.social-icon {
    font-size: 1.5rem;
    margin: 0 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.coming-soon {
    position: absolute;
    bottom: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Adjusted navbar height for mobile */
    }

    .splash-logo .logo-text {
        font-size: 3rem;
    }
    
    .splash-logo img {
        max-width: 100px;
        margin-bottom: 10px;
    }
    
    .splash-content h1 {
        font-size: 2rem;
    }
    
    .splash-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .social-icon {
        margin: 0 10px;
    }
    
    .splash-container::before,
    .splash-container::after {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .homepage-logo-img {
        height: 60px;
        margin-right: 10px;
    }
    
    .company-name {
        font-size: 3.5rem;
    }
    
    .splash-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .splash-content h1 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .splash-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
    
    .social-icon {
        font-size: 1.3rem;
        margin: 0 8px;
    }
    
    .coming-soon {
        bottom: 20px;
        font-size: 0.8rem;
    }
    
    .splash-container::before,
    .splash-container::after {
        width: 150px;
        height: 150px;
        filter: blur(50px);
    }
}

/* Fix for mobile viewport height issues */
@media (max-height: 600px) {
    .splash-logo {
        margin-bottom: 15px;
    }
    
    .splash-content p {
        margin-bottom: 20px;
    }
    
    .social-links {
        margin-top: 25px;
    }
    
    .coming-soon {
        bottom: 15px;
    }
}

/* Header and Navigation */
header {
    background-color: var(--darker-bg);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: fixed;
    top: 0; /* Stick to the top */
    left: 0; /* Align to the left */
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    padding-left: 5%;
}

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

.nav-logo {
    height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    padding-right: 5%;
}

.nav-links a {
    margin: 0 15px;
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.cta-button):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.nav-links a:not(.cta-button):hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding-right: 5%;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent, var(--darker-bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    flex: 1;
    min-width: 300px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 150px;
    flex: 1;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(var(--primary-color-rgb), 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
    border-color: rgba(var(--primary-color-rgb), 0.5);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: var(--lighter-bg);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
}

/* Projects Section */
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    border-radius: 15px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(var(--primary-color-rgb), 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-image {
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* 16:9 aspect ratio container */
    aspect-ratio: 16/9;
}

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

.project-info {
    padding: 25px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.project-category {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(var(--primary-color-rgb), 0.5);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    letter-spacing: 1px;
}

.project-info .btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.project-info .btn-primary {
    background: rgba(0, 0, 0, 0.6);
    color: var(--primary-color);
    border: 1px solid rgba(var(--primary-color-rgb), 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.project-info .btn-primary:hover {
    background: rgba(var(--primary-color-rgb), 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(var(--primary-color-rgb), 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--light-bg);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

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

.social-icon:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.captcha-container {
    position: relative;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.captcha-image {
    border-radius: 5px;
    border: 1px solid var(--border-color);
    max-width: 100%;
    height: auto;
    display: block;
}

.refresh-captcha {
    background: var(--light-bg);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
    transition: var(--transition);
}

.refresh-captcha:hover {
    background: var(--primary-color);
    color: var(--darker-bg);
    transform: rotate(180deg);
}

.refresh-cap.btn-primary:hover {
    background: rgba(var(--primary-color-rgb), 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(var(--primary-color-rgb), 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--lighter-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #f44336;
    background-color: rgba(244, 67, 54, 0.1);
}

.validation-feedback {
    font-size: 0.85rem;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.validation-feedback.error {
    color: #f44336;
    max-height: 50px;
    opacity: 1;
    margin-top: 5px;
}


::-webkit-input-placeholder {
    color: var(--text-color);
}

::-moz-placeholder {
    color: var(--text-color);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--text-color);
}

input:-ms-input-placeholder {
    color: var(--text-color);
}


.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(123, 104, 238, 0.3);
}

#form-messages {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    display: none; /* Hidden by default */
}

#form-messages.success {
    background-color: var(--lighter-bg);
    color: var(--text-color);
    display: block;
}

#form-messages.error {
    background-color: #a83232;
    color: var(--text-color);
    display: block;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 60px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo p {
    margin-top: 15px;
    color: var(--text-muted);
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }
    
    .nav-logo {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);
        padding: 20px 0;
        text-align: center;
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        margin: 0;
        padding: 15px 0;
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-content,
    .contact-container {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}