:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099cc;
    --purple-color: #9945ff;
    --purple-gradient-start: #e147ff;
    --background-start: #0a0a0a;
    --background-mid: #1a1a2e;
    --background-end: #16213e;
    --text-color: #ffffff;
    --text-muted-color: #a0a0a0;
    --card-background: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --card-hover-background: rgba(255, 255, 255, 0.08);
}

/* Language display rules */
[lang="en"] {
    display: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--background-start) 0%, var(--background-mid) 50%, var(--background-end) 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

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

/* Typography */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-muted-color);
    max-width: 600px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.gradient-text-purple {
    background: linear-gradient(45deg, var(--purple-gradient-start), var(--purple-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(225, 71, 255, 0.5));
    text-shadow: 0 0 20px rgba(225, 71, 255, 0.3);
}

.white-text {
    color: var(--text-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    height: 80px;
    backdrop-filter: blur(10px);
}

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

.nav-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

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

.nav-link {
    color: var(--text-muted-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.lang-toggle {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.lang-toggle:hover {
    background: var(--primary-color);
    color: var(--background-mid);
}

/* Buttons */
.btn,
a[class*="btn"] {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 250px;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4),
                0 0 20px rgba(0, 212, 255, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6),
                0 0 30px rgba(0, 212, 255, 0.4),
                0 0 50px rgba(0, 212, 255, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: var(--card-background);
    color: var(--text-color);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2),
                inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background: var(--card-hover-background);
    transform: translateY(-2px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4),
                0 4px 20px rgba(0, 212, 255, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
}



/* Ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
}
}

/* Hover effects */
.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon, .feature-icon, .portfolio-item {
    transition: transform 0.3s ease;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

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

.hero-logo {
    margin-top: -2rem;
    margin-bottom: 1rem;
}

.logo-diamond {
    width: 180px;
    height: 180px;
    animation: float 3s ease-in-out infinite, pulse-blue 2s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.9))
            drop-shadow(0 0 50px rgba(0, 212, 255, 0.6))
            drop-shadow(0 0 100px rgba(0, 212, 255, 0.3));
}

@keyframes pulse-blue {
    0% {
        filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.9))
                drop-shadow(0 0 50px rgba(0, 212, 255, 0.6))
                drop-shadow(0 0 100px rgba(0, 212, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(0, 212, 255, 1))
                drop-shadow(0 0 65px rgba(0, 212, 255, 0.8))
                drop-shadow(0 0 130px rgba(0, 212, 255, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.9))
                drop-shadow(0 0 50px rgba(0, 212, 255, .6))
                drop-shadow(0 0 100px rgba(0, 212, 255, 0.3));
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.08rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Stats */
.stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #00d4ff;
    display: inline-block;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6),
                 0 0 40px rgba(0, 212, 255, 0.3);
}

.stat-suffix {
    font-size: 3rem;
    font-weight: 900;
    color: #00d4ff;
    display: inline-block;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6),
                 0 0 40px rgba(0, 212, 255, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-top: 0.5rem;
}



/* About Section */
.about {
    padding: 8rem 0;
    position: relative;
}

.about-content {
    text-align: center;
    margin-bottom: 6rem;
}

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

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-text p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-stats {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.years-stat {
    text-align: center;
    position: relative;
    z-index: 2;
}

.years-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}

.years-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.years-subtitle {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.glow-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, rgba(153, 69, 255, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 4s ease-in-out infinite;
    box-shadow: 0 0 100px rgba(0, 212, 255, 0.3),
                0 0 200px rgba(153, 69, 255, 0.2);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Features Section */
.features {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3),
                0 0 50px rgba(0, 212, 255, 0.1),
                0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4),
                0 0 40px rgba(0, 212, 255, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.feature-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 8rem 0;
}

.services-header {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default to four columns */
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: stretch; /* Ensure all cards in a row have the same height */
    justify-items: center; /* Center grid items within their tracks */
}

@media (max-width: 1200px) { /* Added breakpoint for 3 columns */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) { /* Added breakpoint for 2 columns */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) { /* Adjusted breakpoint for 1 column */
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally within the card */
    text-align: center; /* Center text within the card */
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3),
                0 0 60px rgba(0, 212, 255, 0.15),
                0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4),
                0 0 40px rgba(0, 212, 255, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.service-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center; /* Keep title centered */
    min-height: 4rem;
}

.service-card > p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center; /* Center description */
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left; /* Keep checklist left-aligned */
    width: 100%;
    margin-top: 2rem;
}

.card-top-content {
    min-height: 25rem;
}

.service-features li {
    color: #a0a0a0;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start; /* Justify checklist items to the left */
}

.service-features li::before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    margin-right: 0.5rem; /* Add some space */
}

/* Removed .service-link as per request */

.services-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.services-cta p {
    color: #a0a0a0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Section */
.portfolio {
    padding: 4rem 0;
}

.portfolio-header {
    margin-bottom: 4rem;
}

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

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3),
                0 0 80px rgba(0, 212, 255, 0.15),
                0 10px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

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

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

.portfolio-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5),
                0 0 30px rgba(0, 212, 255, 0.3);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.portfolio-content p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.portfolio-tech span {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-metric {
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
}

.portfolio-view-all {
    display: block;
    margin: 0 auto;
    background: none;
    border: 1px solid rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-view-all:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

/* Process Section */
.process {
    padding: 8rem 0;
}

.process-header {
    margin-bottom: 4rem;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00d4ff, #9945ff);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5),
                0 0 40px rgba(153, 69, 255, 0.3);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.process-step.animated {
    opacity: 1;
    transform: translateY(0);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6),
                0 0 60px rgba(0, 212, 255, 0.3),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.step-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #9945ff;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(153, 69, 255, 0.6),
                0 0 40px rgba(153, 69, 255, 0.3);
}

.step-content {
    flex: 1;
    max-width: 300px;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-content p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.step-features img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(0.7);
}

.step-number-large {
    position: absolute;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 212, 255, 0.1);
    z-index: 1;
    right: 0;
}

.process-step:nth-child(even) .step-number-large {
    left: 0;
    right: auto;
}

.process-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.process-cta p {
    color: #a0a0a0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
}

.testimonials-header {
    margin-bottom: 4rem;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.testimonial-item {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
    margin-bottom: 2rem;
}

.testimonial-quote img {
    width: 40px;
    height: 40px;
    opacity: 0.6;
}

.testimonial-item blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.testimonial-rating img {
    width: 20px;
    height: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.author-title {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.author-company {
    color: #00d4ff;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.testimonial-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00d4ff;
    display: block;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6),
                 0 0 40px rgba(0, 212, 255, 0.3);
}

.testimonial-stat .stat-label {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-header {
    margin-bottom: 4rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-section h3,
.contact-info-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3),
                0 0 40px rgba(0, 212, 255, 0.1),
                inset 0 0 20px rgba(0, 212, 255, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.contact-info {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(0.7);
}

.contact-label {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.contact-value {
    color: #ffffff;
    font-weight: 500;
}

.social-links h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.social-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(0.7);
}

.consultation-cta {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consultation-cta h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.consultation-cta p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    height: 80px;
}

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

.footer-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.footer .social-icons {
    margin-bottom: 0;
}

/* Animations */
.animate-on-scroll {
    /* opacity: 0; */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.slide-in-up {
    transform: translateY(50px);
}

.slide-in-up.animated {
    transform: translateY(0);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-left.animated {
    transform: translateX(0);
}

.slide-in-right {
    transform: translateX(50px);
}

.slide-in-right.animated {
    transform: translateX(0);
}

.scale-up {
    transform: scale(0.9);
}

.scale-up.animated {
    transform: scale(1);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-children.animated > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.animated > *:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children.animated > *:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children.animated > *:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children.animated > *:nth-child(4) {
    transition-delay: 0.4s;
}


/* Chatbot Button */
.chatbot-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.chatbot-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.chatbot-btn svg {
    color: #ffffff;
    width: 32px;
    height: 32px;
}

#free-audit {
    padding: 4rem 0;
    background: #10101a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav {
        padding: 0.5rem 1rem;
    }

    .brand-logo {
        height: 60px;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .step-icon {
        position: absolute;
        left: 0;
        margin: 0;
    }

    .step-number-large {
        display: none;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .feature-card,
    .service-card,
    .portfolio-item {
        margin: 0 -1rem;
    }
}

.brand-logo {
    height: 60px;
    width: auto;
    margin: 10px;
}

.service-video {
    display: block;
    margin: 2rem auto; /* Add margin-top for spacing and auto for horizontal centering */
    max-width: 800px; /* Limit video width */
    width: 100%; /* Ensure it's responsive */
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3),
                0 0 60px rgba(0, 212, 255, 0.15);
}
.service-card {
    position: relative;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px; /* Added to ensure consistent card height */
}
.service-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.package-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap; /* Prevent text wrapping */
}
.popular-tag {
    background: linear-gradient(45deg, var(--purple-gradient-start), var(--purple-color));
    box-shadow: 0 0 20px rgba(225, 71, 255, 0.5);
}
.basic-tag {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}
.premium-tag {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}
.service-card .hero-buttons {
    width: 100%;
    justify-content: center;
}
.service-card-footer {
    margin-top: auto;
}
.service-card .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}
.comparison-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9rem;
    background: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
}
.comparison-table th, .comparison-table td {
    padding: 1rem;
    border: 1px solid var(--card-border);
    text-align: center;
}
.comparison-table th {
    background-color: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}
.comparison-table td:first-child {
    font-weight: 600;
    text-align: left;
}
.comparison-table .check-mark {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}
.ideal-for-phrase {
    color: #ffffff; /* Luminous white */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    font-weight: 600;
    display: block; /* Ensure it takes its own line */
    margin-bottom: 0.5rem; /* Space between new phrase and "Ideal para" */
}
.ideal-for {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    margin-top: 2rem;
}






/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    margin: 1.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #00d4ff;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .header.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header.mobile-menu-open .mobile-nav {
        display: flex;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    margin: 1.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #00d4ff;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .header.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header.mobile-menu-open .mobile-nav {
        display: flex;
    }
}

.first-card-description-spacing {
    margin-top: 0.9rem;
}

.btn-magenta-luminous {
    background: linear-gradient(45deg, #e147ff, #9945ff);
    color: var(--text-color);
    box-shadow: 0 4px 20px rgba(225, 71, 255, 0.4),
                0 0 20px rgba(225, 71, 255, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(225, 71, 255, 0.5);
    font-size: 1.2rem; /* Larger font size */
    padding: 1.2rem 2.5rem; /* Larger padding */
    text-align: center; /* Center text within the button */
    display: inline-flex; /* Ensure flex properties apply */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
}

.btn-magenta-luminous:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(225, 71, 255, 0.6),
                0 0 30px rgba(225, 71, 255, 0.4),
                0 0 50px rgba(225, 71, 255, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.cta-text-luminous {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-top: 1rem; /* Space above the text */
    font-size: 1.1rem;
}

.first-card-description-spacing {
    margin-bottom: 9.7rem; /* Increased margin to align checklists */
}

.services-button-container {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

