/* Reset and Base Styles */
:root {
    --black: #000000;
    --neon-green: #00ff88;
    --text-light: #ffffff;
    --text-dark: #333333;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--neon-green);
    color: var(--black);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.btn-secondary:hover {
    background-color: var(--neon-green);
    color: var(--black);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    background: linear-gradient(45deg, #11998e, #38ef7d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-dot {
    color: #11998e;
    -webkit-text-fill-color: #11998e;
    margin-left: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: var(--transition);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float-popup {
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    position: absolute;
    right: 75px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float-popup::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-float-popup {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float-btn {
    animation: pulse 2s infinite;
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 50px;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    position: relative;
    padding: 15px;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    background: linear-gradient(45deg, var(--neon-green), #38ef7d);
    animation: borderAnimation 8s ease-in-out infinite alternate;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    background: var(--black);
    animation: borderAnimation 8s ease-in-out infinite alternate;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    position: relative;
    z-index: 1;
    animation: borderAnimation 8s ease-in-out infinite alternate;
}

@keyframes borderAnimation {
    0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    }


    100% {
        border-radius: 40% 60% 30% 70%/40% 40% 60% 50%;
    }
}

.hero-greeting {
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 0.2s;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 0.4s;
}

.typing-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    min-height: 2em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 0.6s;
    color: var(--neon-green);
}

.hero-description {
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 0.8s;
    max-width: 500px;
}

.hero-description p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-highlights span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.hero-highlights i {
    color: var(--neon-green);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
}

.stat-item i {
    font-size: 2rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.stat-count {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    margin: 0.5rem 0;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-green), #38ef7d);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    border: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Add floating animation to the image */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

.hero-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-social a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.hero-social a:hover {
    color: var(--neon-green);
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    text-align: center;
}

.scroll-indicator a {
    color: var(--neon-green);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

/* Responsive Hero Section */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }

    .hero-image {
        max-width: 350px;
    }
}

@media screen and (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-highlights {
        align-items: center;
    }

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

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

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

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-greeting {
        font-size: 1rem;
    }

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

    .hero-highlights span {
        font-size: 1rem;
    }

    .hero-image {
        max-width: 250px;
    }

    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.skills {
    margin: 30px 0;
}

.skill {
    margin-bottom: 20px;
}

.skill-name {
    display: block;
    margin-bottom: 5px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.skill-percentage {
    color: var(--text-light);
    font-weight: 500;
}

.skill-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: var(--neon-green);
    width: 0;
    transition: width 1.5s ease;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--black);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.service-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--black);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--neon-green);
    color: var(--black);
}

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

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 136, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--black);
    margin-bottom: 10px;
}

.portfolio-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
}

.portfolio-overlay p {
    color: var(--black);
    margin: 10px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--black);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(0, 255, 136, 0.2),
            rgba(0, 255, 136, 0.3),
            rgba(0, 255, 136, 0.2),
            transparent);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
}

.contact-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-green), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-text>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.1);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--neon-green);
}

.info-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--neon-green);
}

.info-details p {
    font-size: 1rem;
    color: #fff;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
    justify-content: center;
}

/* Responsive Contact Section */
@media screen and (max-width: 768px) {
    .contact-content {
        gap: 2rem;
        padding: 1rem 0;
    }

    .contact-text h3 {
        font-size: 1.75rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .contact-text h3 {
        font-size: 1.5rem;
    }

    .contact-info-item {
        padding: 1rem;
    }

    .info-details h4 {
        font-size: 1.1rem;
    }

    .cta-buttons .btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Footer */
.footer {
    padding: 70px 0 30px;
    background: var(--black);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

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

.footer-section h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links,
.contact-info,
.location-info {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neon-green);
    padding-left: 5px;
}

.contact-info li,
.location-info li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--neon-green);
    width: 20px;
}

.footer-whatsapp {
    margin-top: 20px;
}

.footer-whatsapp .btn-whatsapp {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.footer-whatsapp .btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp .btn-whatsapp i {
    font-size: 1.2rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(0, 255, 136, 0.2),
            rgba(0, 255, 136, 0.3),
            rgba(0, 255, 136, 0.2),
            transparent);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-separator {
    color: var(--neon-green);
    opacity: 0.5;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--neon-green);
}

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

.social-links a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-whatsapp .btn-whatsapp {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-height: 35px;
    }

    .footer-whatsapp .btn-whatsapp i {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 5px var(--neon-green),
            0 0 10px var(--neon-green),
            0 0 15px var(--neon-green);
    }

    to {
        text-shadow: 0 0 10px var(--neon-green),
            0 0 20px var(--neon-green),
            0 0 30px var(--neon-green);
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-30px) translateX(-50%);
    }

    60% {
        transform: translateY(-15px) translateX(-50%);
    }
}

@keyframes gradientMove {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: var(--transition);
}

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

/* Responsive Design */
@media screen and (max-width: 968px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .about-content {
        gap: 30px;
    }

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

@media screen and (max-width: 768px) {

    /* Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        z-index: 1000;
    }

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

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    /* Mobile Menu Animation */
    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

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

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

    /* Hero Section */
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

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

    .hero-highlights {
        gap: 1rem;
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Services Section */
    .service-card {
        padding: 30px 20px;
    }

    /* Portfolio Section */
    .portfolio-filters {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-item img {
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-greeting {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .typing-text {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .skill-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .whatsapp-float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        font-size: 1.3rem;
    }
}

/* Additional Responsive Improvements */
@media screen and (max-height: 600px) {
    .hero {
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (hover: none) {
    .nav-link:hover::after {
        width: 0;
    }

    .portfolio-overlay {
        opacity: 1;
        background: rgba(0, 255, 136, 0.8);
    }
}

/* Client Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--black);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(0, 255, 136, 0.2),
            rgba(0, 255, 136, 0.3),
            rgba(0, 255, 136, 0.2),
            transparent);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    color: rgba(0, 255, 136, 0.1);
    font-family: serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.review-stars {
    color: var(--neon-green);
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    gap: 5px;
}

.review-stars i {
    filter: drop-shadow(0 0 2px rgba(0, 255, 136, 0.5));
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.reviewer-details h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.reviewer-details span {
    color: var(--neon-green);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Update Responsive Design for Reviews */
@media screen and (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .review-card {
        padding: 30px;
    }

    .review-text {
        font-size: 1rem;
    }

    .review-card::before {
        font-size: 100px;
        top: 15px;
        right: 20px;
    }
}

@media screen and (max-width: 480px) {
    .review-card {
        padding: 25px;
    }

    .review-stars {
        font-size: 1.1rem;
    }

    .reviewer-image {
        width: 50px;
        height: 50px;
    }

    .reviewer-details h4 {
        font-size: 1rem;
    }

    .review-card::before {
        font-size: 80px;
        top: 10px;
        right: 15px;
    }
}

/* Policy Pages Styles */
.policy-section {
    padding: 120px 0 80px;
    background: var(--black);
    min-height: 100vh;
}

.policy-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(to right, #fff, var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-date {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.policy-block {
    margin-bottom: 40px;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    color: var(--neon-green);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.policy-block h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 25px 0 15px;
}

.policy-block p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-block ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-block ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    position: relative;
}

.policy-block ul li::before {
    content: '•';
    color: var(--neon-green);
    position: absolute;
    left: -20px;
    top: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Policy Pages */
@media screen and (max-width: 768px) {
    .policy-section {
        padding: 100px 0 60px;
    }

    .policy-title {
        font-size: 2rem;
    }

    .policy-content {
        padding: 30px;
        margin: 0 15px;
    }

    .policy-block h2 {
        font-size: 1.3rem;
    }

    .policy-block h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .policy-section {
        padding: 80px 0 40px;
    }

    .policy-title {
        font-size: 1.8rem;
    }

    .policy-content {
        padding: 20px;
    }

    .policy-block {
        margin-bottom: 30px;
    }

    .policy-block h2 {
        font-size: 1.2rem;
    }
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: var(--neon-green);
}

.back-btn i {
    font-size: 1.1rem;
}

@media screen and (max-width: 480px) {
    .back-btn {
        font-size: 0.9rem;
    }

    .back-btn i {
        font-size: 1rem;
    }
}

/* Footer Brand Styles */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.2);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #11998e, #38ef7d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

@media screen and (max-width: 768px) {
    .footer-brand {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-logo {
        width: 35px;
        height: 35px;
    }

    .footer-title {
        font-size: 1.3rem;
    }
}