/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #121212;
    --accent-color: #00BFFF;
    --text-color: #E0E0E0;
    --text-secondary: #B0B0B0;
    --background-dark: #0A0A0A;
    --background-card: #1A1A1A;
    --gradient-primary: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%);
    --gradient-dark: linear-gradient(135deg, #121212 0%, #1A1A1A 100%);
    --shadow-light: 0 4px 20px rgba(0, 191, 255, 0.1);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode Variables */
[data-theme="light"] {
    --primary-color: #FFFFFF;
    --accent-color: #00BFFF;
    --text-color: #121212;
    --text-secondary: #666666;
    --background-dark: #F8F9FA;
    --background-card: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%);
    --gradient-dark: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    --shadow-light: 0 4px 20px rgba(0, 191, 255, 0.1);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

.page-transition .loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth content transitions */
body {
    animation: fadeInPage 0.8s ease-out forwards;
}

@keyframes fadeInPage {
    from {
        transform: translateY(20px);
    }
    to {
        transform: translateY(0);
    }
}

/* Section transitions */
section {
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.visible {
    transform: translateY(0);
}

/* Enhanced smooth scrolling */
* {
    scroll-behavior: smooth;
}

/* Service block hover transitions */
.service-block {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Portfolio item transitions */
.portfolio-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigation link transitions */
.nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon fallbacks */
.fas, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif;
    font-weight: 900;
}

/* Ensure icons display properly */
.theme-toggle i::before,
.chatbot-trigger i::before,
.chatbot-close i::before,
.chatbot-minimize i::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Theme toggle icon fix */
.theme-toggle .fa-moon::before {
    content: "\f186";
}

.theme-toggle .fa-sun::before {
    content: "\f185";
}

/* Chatbot icons fix */
.fa-robot::before {
    content: "\f544";
}

.fa-times::before {
    content: "\f00d";
}

.fa-minus::before {
    content: "\f068";
}

.fa-paper-plane::before {
    content: "\f1d8";
}

/* SVG Icon Styles */
.theme-toggle svg,
.chatbot-trigger svg,
.chatbot-actions svg {
    transition: all 0.3s ease;
}

.theme-toggle:hover svg {
    transform: scale(1.1);
}

.chatbot-actions button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.chatbot-actions button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Typing indicator */
.typing-indicator {
    opacity: 0.7;
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--text-color);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile responsive chatbot */
@media (max-width: 768px) {
    .chatbot {
        width: calc(100vw - 2rem) !important;
        height: 70vh !important;
        bottom: 80px !important;
        right: 1rem !important;
        left: 1rem !important;
        border-radius: 12px !important;
    }
    
    .chatbot-trigger {
        bottom: 1rem !important;
        right: 1rem !important;
        width: 56px !important;
        height: 56px !important;
    }
    
    .chatbot-messages {
        font-size: 14px !important;
    }
    
    .chatbot-input {
        font-size: 16px !important;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.accent {
    color: var(--accent-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-outline:hover {
    background: var(--text-color);
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(224, 224, 224, 0.1);
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.98);
    box-shadow: var(--shadow-dark);
    transform: translateY(0);
}

.navbar.sticky {
    position: fixed;
    top: 0;
    transform: translateY(0) !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: translateY(0);
}

.nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    background: var(--background-card);
    border: 1px solid rgba(224, 224, 224, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

.theme-toggle:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.language-switcher select {
    background: var(--background-card);
    color: var(--text-color);
    border: 1px solid rgba(224, 224, 224, 0.2);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8) 0%, rgba(0, 191, 255, 0.1) 100%);
    z-index: 1;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    text-align: center;
}

.hero-main {
    width: 100%;
    max-width: 800px;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 1.5rem;
    overflow: visible;
    padding-top: 1rem;
}

.hero-title .line {
    display: block;
    transform: translateY(0);
    animation: slideUp 0.8s ease-out forwards;
    margin-bottom: 0.5rem;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title .line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 224, 224, 0.1);
}

.stat h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--accent-color);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: rotate(45deg);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--background-dark);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-block {
    background: linear-gradient(135deg, var(--background-card) 0%, rgba(0, 191, 255, 0.05) 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    min-height: 280px;
}

.service-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 191, 255, 0.3);
    border-color: var(--accent-color);
}

.service-block.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.service-block.featured {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.service-block img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-block .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.service-block.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.2);
    transform: scale(1.02);
}

.service-block.featured .service-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.service-content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}



/* About Section */
.about {
    padding: 6rem 0;
    background: var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.mission, .vision {
    padding: 1.5rem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
}

.mission h3, .vision h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.values h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.value:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.value i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.team-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
}

.service-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.service-icon-large {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: var(--shadow-dark);
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background: var(--background-dark);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(224, 224, 224, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.portfolio-item {
    width: 100%;
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--background-card);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.9) 0%, rgba(18, 18, 18, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: white;
    margin-bottom: 1rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.portfolio-links {
    display: flex;
    gap: 1rem;
}

.portfolio-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.portfolio-link:hover {
    background: white;
    color: var(--accent-color);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--primary-color);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.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 h4 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(224, 224, 224, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.nav-dot.active {
    background: var(--accent-color);
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background: var(--background-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    border-color: var(--accent-color);
}

.blog-card.featured {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .blog-card.featured {
        grid-column: span 1;
    }
    
    .newsletter-form-large {
        flex-direction: column;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .blog-hero-content {
        padding: 0 1rem;
    }
}

.blog-image {
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.blog-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.blog-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
}

.blog-cta {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--primary-color);
    border: 2px solid rgba(224, 224, 224, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 16px;
    color: var(--text-secondary);
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 12px;
    font-size: 0.8rem;
    color: var(--accent-color);
    background: var(--background-card);
    padding: 0 8px;
}

.file-upload {
    border: 2px dashed rgba(224, 224, 224, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.file-upload:hover {
    border-color: var(--accent-color);
    background: rgba(0, 191, 255, 0.05);
}

.file-upload input {
    display: none;
}

.file-upload label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    position: static;
    background: none;
    padding: 0;
}

.file-upload i {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--background-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(224, 224, 224, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--background-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(224, 224, 224, 0.1);
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    background: var(--primary-color);
    border: 2px solid rgba(224, 224, 224, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-color);
}

.newsletter-form button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #0099CC;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(224, 224, 224, 0.1);
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--background-card);
    margin: 2% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(224, 224, 224, 0.1);
    animation: modalSlideIn 0.3s ease-out;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--accent-color);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.service-options {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-color);
    border: 2px solid rgba(224, 224, 224, 0.2);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.service-option:hover {
    border-color: var(--accent-color);
}

.service-option input[type="radio"] {
    accent-color: var(--accent-color);
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-whatsapp a {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-card);
    padding: 1rem 2rem;
    border-top: 1px solid rgba(224, 224, 224, 0.1);
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Simple Chatbot */
.chatbot {
    position: fixed;
    bottom: 100px;
    right: 1rem;
    width: 320px;
    height: 450px;
    background: var(--background-card);
    border-radius: 12px;
    border: 1px solid rgba(224, 224, 224, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1500;
    display: none;
    flex-direction: column;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.chatbot.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.chatbot.minimized {
    height: 50px;
    overflow: hidden;
}

.chatbot-header {
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chatbot-status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chatbot-actions {
    display: flex;
    gap: 0.5rem;
}

.chatbot-minimize,
.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.chatbot-minimize:hover,
.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    max-width: 85%;
}

.message-content {
    flex: 1;
}

.message-content p {
    background: rgba(0, 191, 255, 0.1);
    padding: 0.75rem;
    border-radius: 12px;
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.user-message {
    align-self: flex-end;
}

.user-message .message-content p {
    background: var(--accent-color);
    color: white;
}

.chatbot-input {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid rgba(224, 224, 224, 0.1);
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    padding: 0.75rem;
    background: var(--primary-color);
    border: 1px solid rgba(224, 224, 224, 0.2);
    border-radius: 20px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.chatbot-input button {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.chatbot-input button:hover {
    background: #0099CC;
    transform: scale(1.05);
}

.chatbot-trigger {
    position: fixed !important;
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    width: 60px !important;
    height: 60px !important;
    background: var(--accent-color) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3) !important;
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: pulse 2s infinite !important;
}

.trigger-icon {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.chatbot-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

.chatbot-trigger.active .trigger-icon {
    transform: rotate(45deg);
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 191, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 255, 0);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-dark);
        padding: 2rem 0;
        border: 1px solid rgba(224, 224, 224, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .theme-toggle {
        margin: 1rem 0;
    }

    .language-switcher {
        margin-top: 1rem;
    }

    .hero {
        min-height: 100vh;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding: 4rem 1rem 2rem;
        margin-top: 0;
        width: 100%;
        text-align: center;
    }
    
    .hero-main {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.3;
        padding-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-title .line {
        margin-bottom: 0.5rem;
        display: block;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-block img {
        height: 120px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .blog-card.featured {
        grid-column: span 1;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .chatbot {
        width: calc(100vw - 2rem);
        height: calc(100vh - 150px);
        right: 1rem;
        left: 1rem;
        bottom: 80px;
    }

    .chatbot-messages {
        flex: 1;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .chatbot-input {
        padding: 0.75rem;
    }

    .chatbot-input input {
        padding: 12px;
        font-size: 16px;
    }

    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-whatsapp a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .chatbot-trigger {
        right: 1rem;
        bottom: 1rem;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .ai-welcome {
        right: 1rem;
        left: 1rem;
        bottom: 70px;
        max-width: none;
        font-size: 0.9rem;
    }

    .services-grid {
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .portfolio-grid {
        padding: 0 1rem;
    }

    .blog-grid {
        padding: 0 1rem;
    }

    .section-header {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero {
        padding: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding: 2rem 1rem;
        width: 100%;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
        padding-top: 0;
    }
    
    .hero-title .line {
        margin-bottom: 0.3rem;
        word-break: break-word;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1rem;
        margin: 0.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }

    .form-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stat {
        padding: 1rem;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .testimonial p {
        font-size: 1rem;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-whatsapp a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .chatbot-trigger {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        right: 60px;
    }
}

/* Breadcrumb Styles */
.breadcrumb {
    padding: 2rem 0 1rem;
    background: var(--primary-color);
    margin-top: 70px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--accent-color);
}

.breadcrumb-nav span {
    color: var(--text-secondary);
}

/* Services Page Styles */
.services-hero {
    padding: 6rem 0 4rem;
    background: var(--gradient-dark);
    text-align: center;
}

.services-hero-content h1 {
    margin-bottom: 1.5rem;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-detail {
    padding: 6rem 0;
    background: var(--primary-color);
}

.service-detail.alternate {
    background: var(--background-dark);
}

.service-detail.featured {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, var(--primary-color) 100%);
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.service-badge.popular {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--primary-color);
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(224, 224, 224, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
}

.feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.tech-tag {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-benefits ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}



.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.automation-examples,
.marketing-services,
.training-programs {
    margin: 2rem 0;
}

.examples-grid,
.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.example,
.channel {
    text-align: center;
    padding: 1.5rem;
    background: rgba(224, 224, 224, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.example:hover,
.channel:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.example i,
.channel i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.roi-calculator {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.roi-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.roi-stat {
    text-align: center;
}

.roi-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.roi-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.marketing-results {
    margin: 2rem 0;
}

.results-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.result {
    text-align: center;
    padding: 1rem;
    background: rgba(224, 224, 224, 0.05);
    border-radius: var(--border-radius);
}

.result-metric {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.result-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.programs-list {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.program {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(224, 224, 224, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
}

.program h4 {
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.program p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.duration {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.services-faq {
    padding: 4rem 0;
    background: var(--background-dark);
}

.services-cta {
    padding: 6rem 0;
    background: var(--gradient-dark);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Styles */
.about-hero {
    padding: 6rem 0 4rem;
    background: var(--gradient-dark);
    text-align: center;
}

.about-hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.our-story {
    padding: 6rem 0;
    background: var(--primary-color);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.story-timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 3rem;
    width: 2px;
    height: calc(100% + 1rem);
    background: var(--accent-color);
    opacity: 0.3;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    height: fit-content;
    min-width: 80px;
    text-align: center;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
}

.mission-vision-values {
    padding: 6rem 0;
    background: var(--background-dark);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-item {
    text-align: center;
    padding: 2rem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.mvv-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(224, 224, 224, 0.05);
    border-radius: var(--border-radius);
}

.value-item i {
    color: var(--accent-color);
}

.founders-message {
    padding: 6rem 0;
    background: var(--primary-color);
}

.message-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.message-text blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--accent-color);
}

.founder-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.founder-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.founder-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.message-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
}

.our-team {
    padding: 6rem 0;
    background: var(--background-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--background-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 191, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-overlay .social-links {
    display: flex;
    gap: 1rem;
}

.member-overlay .social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.member-overlay .social-links a:hover {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.member-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill {
    background: rgba(0, 191, 255, 0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.company-stats {
    padding: 4rem 0;
    background: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.why-choose-us {
    padding: 6rem 0;
    background: var(--background-dark);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-item {
    text-align: center;
    padding: 2rem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.reason-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.about-cta {
    padding: 6rem 0;
    background: var(--gradient-dark);
    text-align: center;
}

/* Portfolio Page Styles */
.portfolio-hero {
    padding: 6rem 0 4rem;
    background: var(--gradient-dark);
    text-align: center;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 3rem auto 0;
}

.portfolio-filters-section {
    padding: 2rem 0;
    background: var(--primary-color);
}

.featured-case-study {
    padding: 6rem 0;
    background: var(--background-dark);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.case-study-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.case-study-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.case-study-details {
    margin: 2rem 0;
}

.detail-item {
    margin-bottom: 2rem;
}

.detail-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.case-study-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.case-study-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
}

.portfolio-grid-section {
    padding: 4rem 0;
    background: var(--primary-color);
}

.portfolio-meta {
    padding: 1rem;
    background: var(--background-card);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.client-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.project-results .result {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    background: rgba(0, 191, 255, 0.2);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-testimonials {
    padding: 6rem 0;
    background: var(--background-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-card .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.portfolio-cta {
    padding: 6rem 0;
    background: var(--gradient-dark);
    text-align: center;
}

/* Contact Page Styles */
.contact-hero {
    padding: 6rem 0 4rem;
    background: var(--gradient-dark);
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(224, 224, 224, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-method span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-main {
    padding: 6rem 0;
    background: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-social .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--accent-color);
    background: rgba(224, 224, 224, 0.05);
}

.contact-form-container {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-header p {
    color: var(--text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.file-upload-group {
    margin: 1.5rem 0;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(224, 224, 224, 0.3);
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.checkbox-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--accent-color);
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.contact-map {
    padding: 4rem 0;
    background: var(--background-dark);
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.map-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--background-card);
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
    max-width: 250px;
}

.office-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.office-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.contact-faq {
    padding: 4rem 0;
    background: var(--primary-color);
}

.alternative-contact {
    padding: 6rem 0;
    background: var(--background-dark);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-option {
    text-align: center;
    padding: 2rem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.contact-option:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.contact-option h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-option p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .service-content,
    .story-content,
    .message-content,
    .case-study-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .examples-grid,
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-stats,
    .results-list {
        grid-template-columns: 1fr;
    }
    
    .hero-stats,
    .portfolio-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-actions,
    .case-study-actions,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Blog Page Styles */
.blog-hero {
    padding: 6rem 0 4rem;
    background: var(--gradient-dark);
    text-align: center;
    margin-top: 70px;
}

.blog-hero-content h1 {
    margin-bottom: 1rem;
}

.blog-hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.blog-main {
    padding: 6rem 0;
    background: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(224, 224, 224, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    border-color: var(--accent-color);
}

.blog-card.featured {
    grid-column: span 2;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 300px;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.blog-category {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-date,
.blog-author {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.blog-card h2,
.blog-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.blog-card.featured h2 {
    font-size: 1.8rem;
}

.blog-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
}

.newsletter-section {
    padding: 4rem 0;
    background: var(--background-dark);
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form-large {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form-large input {
    flex: 1;
    padding: 12px 16px;
    background: var(--background-card);
    border: 2px solid rgba(224, 224, 224, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 1rem;
}

.newsletter-form-large input:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Print Styles */
@media print {
    .navbar,
    .floating-whatsapp,
    .chatbot,
    .chatbot-trigger,
    .cookie-consent {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero {
        background: white !important;
    }

    #particles-js {
        display: none !important;
    }
}