/* Generated By Apice Software  */
html {
    scroll-behavior: smooth;
}

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

:root {
    --logo-green: #00ff99;
    --text-light: rgba(255, 255, 255, 0.8);
    --border-color: rgba(255, 255, 255, 0.15);
    --card-bg: rgba(28, 28, 30, 0.6);
    --gradient-green: linear-gradient(135deg, #00ff99 0%, #00e676 100%);
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: white;
    --text-secondary: rgba(255, 255, 255, 0.8);
}

body.light-mode {
    --bg-primary: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --bg-secondary: rgba(255, 255, 255, 0.7);
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --border-color: rgba(0, 0, 0, 0.08);
    --card-bg: rgba(255, 255, 255, 0.85);
    --text-light: rgba(44, 62, 80, 0.7);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--logo-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(2.5px 2.5px at 10% 20%, #00d4ffaa, transparent),
        radial-gradient(1.8px 1.8px at 80% 30%, #8b5cf6aa, transparent),
        radial-gradient(3px 3px at 50% 80%, #ec4899aa, transparent),
        radial-gradient(1.2px 1.2px at 20% 60%, #00ff99aa, transparent),
        radial-gradient(2px 2px at 70% 5%, #d4ff00aa, transparent),
        radial-gradient(2.8px 2.8px at 40% 40%, #ff00d4aa, transparent),
        radial-gradient(1.5px 1.5px at 90% 95%, #00aaffaa, transparent),
        radial-gradient(2.3px 2.3px at 5% 10%, #ffaa00aa, transparent);
    animation: dots-move 120s ease-in-out infinite alternate;
    background-size: 100% 200%;
}

body.light-mode::before {
    opacity: 0.3;
    background:
        radial-gradient(2px 2px at 15% 25%, #00d4ff44, transparent),
        radial-gradient(1.5px 1.5px at 75% 35%, #8b5cf644, transparent),
        radial-gradient(2.5px 2.5px at 45% 75%, #ec489944, transparent),
        radial-gradient(1px 1px at 25% 55%, #00ff9944, transparent),
        radial-gradient(1.8px 1.8px at 65% 10%, #d4ff0044, transparent),
        radial-gradient(2.2px 2.2px at 35% 45%, #ff00d444, transparent);
}

@keyframes dots-move {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(150px, -300px);
    }
}

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

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: background-color 0.4s, backdrop-filter 0.4s, height 0.4s;
    height: 100px;
}

body.light-mode .navbar {
    background: #a0e0c7;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(0, 255, 153, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 153, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

body.light-mode .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-primary);
    text-decoration: none;
    height: 100%;
}

body.light-mode .nav-logo {
    color: #2c3e50;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.nav-logo span {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1;
    transition: color 0.3s;
}

.nav-logo:hover span {
    color: var(--logo-green);
}

.nav-logo:hover .logo {
    transform: scale(1.05);
}

.navbar .logo {
    height: 85px;
}

.footer-section .logo {
    height: 200px;
}

.logo {
    transition: transform 0.3s ease;
    border-radius: 8px;
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
}

body.light-mode .nav-link {
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--logo-green);
    color: #0a0a0a;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-primary);
    transition: 0.3s;
}

body.light-mode .bar {
    background-color: #2c3e50;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.light-mode .card {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 153, 0.5);
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    background: var(--logo-green);
    color: #000;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 153, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content .highlight {
    color: var(--logo-green);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 1.5rem 0 2.5rem 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image-area {
    position: relative;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    text-align: center;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    animation: float 10s ease-in-out infinite;
    transform: rotate(var(--rotation, 0deg));
    transition: transform 0.3s ease-out;
}

.floating-card i {
    font-size: 3rem;
    color: var(--logo-green);
    margin-bottom: 1rem;
}

.floating-card-1 {
    width: 280px;
    top: 5%;
    left: 10%;
    --rotation: -5deg;
    animation-delay: 0s;
}

.floating-card-2 {
    width: 300px;
    top: 35%;
    right: 5%;
    --rotation: 8deg;
    z-index: 2;
    animation-delay: -5s;
}

.floating-card-3 {
    width: 290px;
    bottom: 0%;
    left: 25%;
    --rotation: -3deg;
    animation-delay: -8s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

.page-hero {
    text-align: center;
    padding-top: 10rem;
    padding-bottom: 3rem;
    margin-top: 100px;
}

.page-hero h1 {
    font-size: 3rem;
}

.page-hero p {
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--text-secondary);
}

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

.stats-grid,
.portfolio-grid,
.team-grid {
    display: grid;
    gap: 2rem;
}

.stats-grid {
    grid-template-columns: 1fr 1fr;
}

.portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--logo-green);
}

.team-member {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.team-member p {
    color: var(--logo-green);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--logo-green) 0%, #00d4aa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 255, 153, 0.3);
}

.team-skills {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.team-skills span {
    background: rgba(0, 255, 153, 0.1);
    color: var(--logo-green);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(0, 255, 153, 0.2);
}

body.light-mode .team-skills span {
    background: rgba(0, 255, 153, 0.15);
    border-color: rgba(0, 255, 153, 0.3);
}

.stat-highlight {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--logo-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 153, 0.3);
}

.stat-highlight h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.stat-highlight p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.stat-highlight:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 153, 0.6);
}

.stat-highlight:hover .stat-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

body.light-mode .stat-number {
    text-shadow: 0 0 15px rgba(0, 255, 153, 0.4);
}

.comments-section {
    padding: 2rem 0;
}

.comments-list {
    margin-bottom: 3rem;
}

.comment-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(15px);
    transition: transform 0.3s, border-color 0.3s;
}

.comment-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 153, 0.3);
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--logo-green) 0%, #00d4aa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #000;
    font-weight: 600;
    font-size: 1.2rem;
}

.comment-info h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.comment-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.comment-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.comment-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(15px);
}

.comment-form h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.comment-form .form-group {
    margin-bottom: 1.5rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--logo-green);
    box-shadow: 0 0 0 2px rgba(0, 255, 153, 0.1);
}

.no-comments {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.portfolio-section {
    padding-top: 2rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover {
    background-color: var(--card-bg);
    border-color: var(--logo-green);
}

.filter-btn.active {
    background: var(--logo-green);
    color: #0a0a0a;
    border-color: var(--logo-green);
}

.portfolio-item .card {
    background-color: var(--bg-secondary);
    backdrop-filter: none;
    padding: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-image {
    height: 220px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    flex-shrink: 0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

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

.portfolio-content {
    padding: 1.5rem 2rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    min-height: 2.4em;
    line-height: 1.2;
}

.portfolio-tech {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.portfolio-tech span {
    color: var(--logo-green);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: stretch;
    gap: 2rem;
}

.contact-form-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--logo-green);
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    height: 1.2em;
}

.contact-info-grid {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    gap: 1rem;
    height: 100%;
}

.contact-info-grid .card {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s, padding 0.4s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.footer {
    background-color: #000;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    align-items: start;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-section {
    overflow: hidden;
}

@media (max-width: 768px) {
    .footer-section {
        align-items: center;
    }

    .footer-section ul {
        padding-left: 0;
    }
}

.footer-section:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-section a.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 2rem;
}

.footer-section .logo {
    height: 60px;
}

.footer-section:first-child p {
    margin-top: 0;
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 320px;
    line-height: 1.6;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--logo-green);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--logo-green);
}

.footer-section i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    color: var(--logo-green);
    vertical-align: middle;
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.whatsapp-btn,
.theme-toggle,
.scroll-to-top {
    position: fixed;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s, background-color 0.3s, opacity 0.3s;
}

.whatsapp-btn {
    bottom: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #1DA851;
}

.theme-toggle {
    bottom: 90px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

body.light-mode .theme-toggle {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.theme-toggle:hover {
    transform: scale(1.1);
    background-color: var(--logo-green);
    color: #000;
}

.scroll-to-top {
    bottom: 150px;
    background-color: var(--logo-green);
    border: none;
    color: #000;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 255, 153, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover {
    transform: scale(1.1) translateY(0);
}

.error-page {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

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

.error-content {
    text-align: center;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--logo-green);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 255, 153, 0.3);
}

.error-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-image {
    text-align: center;
}

.error-image i {
    font-size: 15rem;
    color: var(--border-color);
    opacity: 0.3;
}

@media (max-width: 992px) {

    .hero-container,
    .about-story,
    .contact-grid,
    .error-page .container {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .error-code {
        font-size: 6rem;
    }

    .error-image {
        order: -1;
    }

    .error-image i {
        font-size: 8rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-area {
        margin-top: 4rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: left 0.4s ease-in-out;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-image-area {
        display: none;
    }

    .navbar {
        height: 90px;
    }

    .nav-logo {
        font-size: 1.5rem;
        gap: 10px;
    }

    .navbar .logo,
    .footer-section .logo {
        height: 60px;
    }
}