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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
    width: 100%;
}

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

/* Prevent horizontal scroll and ensure responsive behavior */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Ensure images and media are responsive */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Make sure text doesn't break layout */
h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    hyphens: auto;
}

p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Touch targets for mobile */
button,
.btn,
.service-link,
.nav-link,
.carousel-nav,
.carousel-indicator {
    min-height: 44px;
    touch-action: manipulation;
}

/* Improve touch scrolling */
.portfolio-carousel {
    -webkit-overflow-scrolling: touch;
}

/* Light Pink, Golden Yellow, Purple and Green Color Theme Variables */
:root {
    --primary-color: #9c27b0;
    --primary-light: #ce93d8;
    --primary-dark: #7b1fa2;
    --secondary-color: #ffd700;
    --secondary-light: #ffeb3b;
    --accent-color: #4caf50;
    --accent-light: #81c784;
    --pink-primary: #f8bbd9;
    --pink-light: #fce4ec;
    --pink-dark: #e91e63;
    --text-primary: #2e2e2e;
    --text-secondary: #5e5e5e;
    --text-light: #9e9e9e;
    --background-primary: #ffffff;
    --background-secondary: #fef7ff;
    --background-accent: #fff3e0;
    --border-color: #f3e5f5;
    --shadow-light: 0 2px 4px rgba(156, 39, 176, 0.08);
    --shadow-medium: 0 4px 12px rgba(156, 39, 176, 0.12);
    --shadow-large: 0 8px 24px rgba(156, 39, 176, 0.15);
    --gradient-primary: linear-gradient(135deg, #9c27b0 0%, #e91e63 50%, #ffd700 100%);
    --gradient-secondary: linear-gradient(135deg, #f8bbd9 0%, #ce93d8 100%);
    --gradient-accent: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
    --gradient-golden: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

/* Dropdown Styles */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background-primary);
    min-width: 200px;
    box-shadow: var(--shadow-large);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--background-secondary);
    color: var(--primary-color);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--background-primary) 50%, var(--background-accent) 100%);
    padding-top: 120px; /* Increased spacing from header */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-golden);
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.05); }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

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

.btn {
    padding: 0.9rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    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.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-large);
}

.btn-secondary {
    background: var(--background-primary);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.1);
}

.btn-secondary:hover {
    background: var(--gradient-secondary);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--pink-dark);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

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

.stat::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gradient-golden);
    border-radius: 2px;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Floating Elements */
.hero-image {
    position: relative;
    height: 400px;
}

/* Marketing Growth Visual */
.marketing-growth-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.growth-chart {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    z-index: 3;
    transform: scale(1.2);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 12px;
    margin-right: 30px;
}

.bar {
    width: 25px;
    background: var(--gradient-primary);
    border-radius: 12px 12px 0 0;
    animation: growUp 2s ease-out;
    animation-delay: var(--delay, 0s);
    transform-origin: bottom;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.bar-1 {
    height: 60px;
    --delay: 0.2s;
}

.bar-2 {
    height: 90px;
    --delay: 0.4s;
}

.bar-3 {
    height: 120px;
    --delay: 0.6s;
    background: var(--gradient-golden);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.bar-4 {
    height: 150px;
    --delay: 0.8s;
    background: var(--gradient-secondary);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

@keyframes growUp {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: var(--final-height, 150px);
        opacity: 1;
    }
}

.growth-arrow {
    position: absolute;
    top: -40px;
    right: -15px;
    background: var(--gradient-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(156, 39, 176, 0.4);
}

.growth-arrow i {
    color: white;
    font-size: 1.5rem;
}

.marketing-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-orbit {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--background-primary);
    border: 3px solid var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    animation: orbit 12s linear infinite;
    backdrop-filter: blur(10px);
}

.icon-orbit:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-large);
}

.icon-orbit i {
    font-size: 1.4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 5%;
    right: 15%;
    animation-delay: 3s;
}

.icon-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 6s;
}

.icon-4 {
    bottom: 8%;
    right: 12%;
    animation-delay: 9s;
}

/* Additional floating elements */
.icon-5 {
    top: 35%;
    left: 25%;
    animation-delay: 1.5s;
    width: 45px;
    height: 45px;
}

.icon-6 {
    top: 60%;
    right: 35%;
    animation-delay: 4.5s;
    width: 45px;
    height: 45px;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateY(-15px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateY(-15px) rotate(-360deg);
    }
}

.success-metrics {
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric {
    background: var(--background-primary);
    padding: 12px 16px;
    border-radius: 20px;
    border: 3px solid var(--pink-light);
    text-align: center;
    box-shadow: var(--shadow-medium);
    min-width: 85px;
    animation: slideIn 1s ease-out;
    animation-delay: var(--metric-delay, 0s);
    opacity: 0;
    animation-fill-mode: forwards;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.metric:hover::before {
    left: 100%;
}

.metric-1 {
    --metric-delay: 1s;
}

.metric-2 {
    --metric-delay: 1.5s;
}

.metric-3 {
    --metric-delay: 2s;
}

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

.metric-value {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Background decoration */
.marketing-growth-visual::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: breathe 4s ease-in-out infinite;
    z-index: 1;
}

.marketing-growth-visual::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: breathe 4s ease-in-out infinite 2s;
    z-index: 1;
}

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

/* Services Section */
.services-overview {
    padding: 4rem 0;
    background: var(--background-primary);
    overflow: visible;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-golden);
    border-radius: 2px;
}

.section-subtitle {
    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(320px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--background-primary);
    padding: 2.5rem 1.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--pink-light);
    position: relative;
    transform: translateY(0);
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    overflow: visible;
}

/* Removed aggressive gradient overlay */
.service-card::before {
    display: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-2px);
}

/* Removed bounce animation - too aggressive */

.service-icon i {
    font-size: 1.6rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-features i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    position: relative;
    z-index: 10;
}

.service-link:hover {
    gap: 0.8rem;
}

/* Clean featured service styling */
.featured-service {
    border: 2px solid var(--accent-color);
    background: var(--background-primary);
    position: relative;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.1);
    transform: scale(1.01);
}

.featured-service:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.15);
}

/* Removed excessive gradient border effect */
.featured-service::after {
    display: none;
}

.service-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-golden);
    color: var(--text-primary);
    padding: 0.35rem 0.7rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
    border: 2px solid var(--background-primary);
    pointer-events: none;
}

@keyframes pulse-badge {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.02); }
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.tag {
    background: var(--pink-light);
    color: var(--text-primary);
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid var(--pink-dark);
    transition: all 0.3s ease;
    position: relative;
}

/* Removed shimmer effect - too distracting */

.tag:hover {
    transform: translateY(-1px);
    background: var(--accent-light);
    box-shadow: 0 2px 6px rgba(156, 39, 176, 0.15);
    border-color: var(--primary-color);
}

/* Simplified Service Icons - Professional Colors */
.service-card[data-service="ppc"] .service-icon {
    background: #FF6B6B;
}

.service-card[data-service="social"] .service-icon {
    background: #4ECDC4;
}

.service-card[data-service="seo"] .service-icon {
    background: #45B7D1;
}

.service-card[data-service="content"] .service-icon {
    background: #9C27B0;
}

.service-card[data-service="web"] .service-icon {
    background: #4CAF50;
}

.service-card[data-service="analytics"] .service-icon {
    background: #FFB74D;
}

/* Enhanced Grid Layout for Better Visual Hierarchy */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 1rem;
}

/* Removed duplicate definition - consolidated above */

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

.service-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-align: center;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Cards Staggered Animation */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Simplified service link styling */
.service-link {
    position: relative;
}

/* Sparkle effect for featured services - toned down */
.featured-service::after {
    content: '✨';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 1rem;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.featured-service:hover::after {
    opacity: 0.8;
}

/* Sparkle animation removed - too aggressive */

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--pink-light);
}

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

.about-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-primary);
    border-radius: 15px;
    border: 1px solid var(--pink-dark);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.feature i {
    font-size: 1.4rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.2rem;
}

.feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* About Visual - Expertise Showcase */
.about-visual {
    position: relative;
}

.expertise-showcase {
    background: var(--background-primary);
    padding: 2rem;
    border-radius: 25px;
    border: 3px solid var(--pink-light);
    box-shadow: var(--shadow-large);
    position: relative;
    overflow: hidden;
}

.expertise-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(156, 39, 176, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.expertise-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.expertise-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.expertise-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.expertise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem 0.8rem;
    background: var(--pink-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.expertise-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    background: var(--background-primary);
}

.expertise-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-icon {
    animation: bounce 0.6s ease;
}

.expertise-icon i {
    font-size: 1.2rem;
    color: white;
}

.expertise-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.team-stats {
    display: flex;
    justify-content: space-around;
    background: var(--background-accent);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid var(--golden-primary);
    position: relative;
    z-index: 2;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-golden);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

/* Portfolio Section */
.portfolio {
    padding: 4rem 0;
    background: var(--background-primary);
}

/* Portfolio Carousel */
.portfolio-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.portfolio-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.portfolio-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
    will-change: transform;
}

.portfolio-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 0;
}

.portfolio-item {
    background: var(--background-primary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid var(--pink-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-large);
    border-color: var(--accent-color);
}

.portfolio-image {
    height: 200px;
    background: var(--background-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    box-sizing: border-box;
}

.client-logo {
    width: 100%;
    height: 100%;
    background: var(--background-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.client-logo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 15px;
}

.client-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.portfolio-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
}

/* Portfolio Tags */
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-tags .tag {
    background: var(--pink-light);
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.portfolio-tags .tag:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.portfolio-stats {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.portfolio-stats .stat {
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-light);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    z-index: 10;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-large);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    padding: 0;
    margin: 0;
    outline: none;
    display: block;
    min-width: 12px;
    min-height: 12px;
    max-width: 12px;
    max-height: 12px;
    box-sizing: border-box;
}

.carousel-indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.carousel-indicator:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

.portfolio-image {
    height: 200px;
    background: var(--background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.portfolio-image i {
    font-size: 3rem;
    opacity: 0.8;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.portfolio-stats {
    display: flex;
    gap: 1rem;
}

.portfolio-stats .stat {
    background: var(--background-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}



/* Industry Expertise Section - Single Row Carousel */
.industry-expertise {
    padding: 4rem 0;
    background: var(--background-accent);
    overflow: hidden;
}

.industry-carousel-container {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.industry-carousel {
    overflow: hidden;
    width: 100%;
}

.industry-track {
    display: flex;
    animation: industryScroll 20s linear infinite;
    gap: 2rem;
    width: max-content;
}

.industry-track:hover {
    animation-play-state: paused;
}

.industry-item {
    flex: 0 0 auto;
    background: var(--background-primary);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--pink-light);
    transition: all 0.3s ease;
    min-width: 150px;
    cursor: pointer;
    position: relative;
}

.industry-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
    border-color: var(--accent-color);
}

.industry-item .industry-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Individual industry icon colors */
.industry-item:nth-child(1) .industry-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.industry-item:nth-child(2) .industry-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.industry-item:nth-child(3) .industry-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.industry-item:nth-child(4) .industry-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

.industry-item:nth-child(5) .industry-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.3);
}

.industry-item:nth-child(6) .industry-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    box-shadow: 0 4px 15px rgba(168, 237, 234, 0.3);
}

.industry-item:nth-child(7) .industry-icon {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    box-shadow: 0 4px 15px rgba(255, 154, 158, 0.3);
}

.industry-item:nth-child(8) .industry-icon {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    box-shadow: 0 4px 15px rgba(255, 236, 210, 0.3);
}

/* Repeated colors for cloned items */
.industry-item:nth-child(9) .industry-icon,
.industry-item:nth-child(17) .industry-icon,
.industry-item:nth-child(25) .industry-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.industry-item:nth-child(10) .industry-icon,
.industry-item:nth-child(18) .industry-icon,
.industry-item:nth-child(26) .industry-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.industry-item:nth-child(11) .industry-icon,
.industry-item:nth-child(19) .industry-icon,
.industry-item:nth-child(27) .industry-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.industry-item:nth-child(12) .industry-icon,
.industry-item:nth-child(20) .industry-icon,
.industry-item:nth-child(28) .industry-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

.industry-item:nth-child(13) .industry-icon,
.industry-item:nth-child(21) .industry-icon,
.industry-item:nth-child(29) .industry-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.3);
}

.industry-item:nth-child(14) .industry-icon,
.industry-item:nth-child(22) .industry-icon,
.industry-item:nth-child(30) .industry-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    box-shadow: 0 4px 15px rgba(168, 237, 234, 0.3);
}

.industry-item:nth-child(15) .industry-icon,
.industry-item:nth-child(23) .industry-icon,
.industry-item:nth-child(31) .industry-icon {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    box-shadow: 0 4px 15px rgba(255, 154, 158, 0.3);
}

.industry-item:nth-child(16) .industry-icon,
.industry-item:nth-child(24) .industry-icon,
.industry-item:nth-child(32) .industry-icon {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    box-shadow: 0 4px 15px rgba(255, 236, 210, 0.3);
}

.industry-item:hover .industry-icon {
    transform: scale(1.1);
}

.industry-item .industry-icon i {
    font-size: 1.3rem;
    color: white;
}

.industry-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    white-space: nowrap;
}

@keyframes industryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% + 100vw - 4rem));
    }
}

/* Duplicate items for seamless loop */
.industry-track::after {
    content: '';
    display: flex;
    gap: 2rem;
}

/* Ensure seamless infinite scroll */
.industry-track {
    animation-duration: 25s;
}





/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--background-primary);
}

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

.contact-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--pink-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--pink-dark);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--background-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: var(--background-accent);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--pink-light);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--pink-light);
    border-radius: 15px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--background-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
    transform: translateY(-2px);
}

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

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    color: var(--primary-light);
}

.footer-logo .logo-text {
    background: linear-gradient(135deg, #a5b4fc 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer .contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer .contact-info i {
    color: var(--primary-light);
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Container and base styles */
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-large);
        padding: 2rem 0;
        border-top: 2px solid var(--pink-light);
        z-index: 1000;
    }

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

    .nav-menu li {
        margin: 1rem 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);
    }
    
    /* Hero Section */
    .hero {
        min-height: 70vh;
        padding: 100px 0 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 1;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* Marketing Growth Visual - Mobile */
    .marketing-growth-visual {
        height: 300px;
        transform: scale(0.85);
        min-height: 300px;
    }
    
    .growth-chart {
        transform: scale(1);
    }
    
    .chart-bars {
        gap: 8px;
        margin-right: 20px;
    }
    
    .bar {
        width: 18px;
    }
    
    .bar-1 { height: 45px; }
    .bar-2 { height: 68px; }
    .bar-3 { height: 90px; }
    .bar-4 { height: 113px; }
    
    .icon-orbit {
        width: 40px;
        height: 40px;
    }
    
    .icon-orbit i {
        font-size: 1rem;
    }
    
    .icon-5, .icon-6 {
        width: 35px;
        height: 35px;
    }
    
    .icon-5 i, .icon-6 i {
        font-size: 0.9rem;
    }
    
    .success-metrics {
        right: -50px;
        gap: 12px;
    }
    
    .metric {
        padding: 8px 10px;
        min-width: 60px;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
    
    .growth-arrow {
        width: 35px;
        height: 35px;
        top: -30px;
    }
    
    .growth-arrow i {
        font-size: 1.1rem;
    }
    
    .marketing-growth-visual::before {
        width: 120px;
        height: 120px;
    }
    
    .marketing-growth-visual::after {
        width: 100px;
        height: 100px;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.2rem 1.5rem;
        margin-top: 1rem;
        min-height: auto;
    }
    
    .featured-service {
        transform: none;
    }
    
    .featured-service:hover {
        transform: translateY(-5px);
    }
    
    .service-badge {
        top: -10px;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        border-radius: 10px;
        z-index: 10;
    }
    
    .service-tags {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }
    
    .tag {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
    
    .service-icon {
        margin: 0.8rem auto 0.8rem;
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .service-features {
        margin-bottom: 0.8rem;
    }
    
    .service-features li {
        font-size: 0.8rem;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        gap: 1rem;
    }
    
    .feature {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature:hover {
        transform: translateY(-5px);
    }
    
    /* About Visual - Mobile */
    .expertise-showcase {
        padding: 1.5rem;
    }
    
    .expertise-header h3 {
        font-size: 1.4rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .expertise-item {
        padding: 1rem 0.6rem;
    }
    
    .expertise-icon {
        width: 40px;
        height: 40px;
    }
    
    .expertise-icon i {
        font-size: 1rem;
    }
    
    .expertise-item span {
        font-size: 0.75rem;
    }
    
    .team-stats {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Portfolio Carousel */
    .portfolio-carousel-container {
        padding: 0 15px;
    }
    
    .portfolio-track {
        gap: 1rem;
    }
    
    .portfolio-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .portfolio-image {
        height: 150px;
        padding: 1.5rem;
    }
    
    .client-logo {
        width: 100%;
        height: 100%;
    }
    
    .client-logo img {
        width: 85%;
        height: 85%;
    }
    
    .portfolio-content {
        padding: 1rem;
    }
    
    .portfolio-content h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    /* Portfolio Tags - Mobile */
    .portfolio-tags {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }
    
    .portfolio-tags .tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
    
    .portfolio-stats {
        gap: 0.5rem;
    }
    
    .portfolio-stats .stat {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Industry Expertise */
    .industry-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .industry-card {
        padding: 1.5rem 1rem;
    }
    
    .industry-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .industry-card h3 {
        font-size: 1rem;
    }
    
    .industry-card p {
        font-size: 0.8rem;
    }
    
    .industry-result {
        font-size: 0.8rem;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-control {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .contact-info {
        order: -1;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-description {
        margin-bottom: 1rem;
    }
    
    /* Section spacing */
    .services-overview,
    .about,
    .portfolio,
    .industry-expertise,
    .contact {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
}

/* Tablet responsive styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-carousel-container {
        padding: 0 40px;
    }
    
    .portfolio-slide {
        flex: 0 0 calc(50% - 0.5rem);
    }
    
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content,
    .contact-content {
        gap: 2rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .nav-container {
        padding: 1rem 0.75rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }

    .hero {
        padding: 80px 0 2rem;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat {
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }

    .service-card {
        padding: 2rem 1rem 1.2rem;
        margin-top: 1.2rem;
        overflow: visible;
    }
    
    .service-badge {
        top: -8px;
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        z-index: 10;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        margin: 0.6rem auto 0.6rem;
    }
    
    .service-icon i {
        font-size: 1.1rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .tag {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }
    
    .service-features li {
        font-size: 0.75rem;
    }
    
    .service-link {
        font-size: 0.8rem;
    }
    
    .portfolio-carousel-container {
        padding: 0 10px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-prev {
        left: 2px;
    }
    
    .carousel-next {
        right: 2px;
    }
    
    .portfolio-image {
        height: 120px;
    }
    
    .client-logo {
        width: 50px;
        height: 50px;
    }
    
    .client-logo .logo-text {
        font-size: 0.9rem;
    }
    
    .portfolio-content {
        padding: 0.8rem;
    }
    
    .portfolio-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .portfolio-content p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .portfolio-stats .stat {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .industry-card {
        padding: 1.2rem 0.8rem;
    }
    
    .industry-card h3 {
        font-size: 0.95rem;
    }
    
    .industry-card p {
        font-size: 0.75rem;
    }
    

    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-control {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .contact-item {
        padding: 0.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
}

/* Additional mobile-specific fixes */
@media (max-width: 768px) {
    /* Ensure portfolio carousel works properly on mobile */
    .portfolio-carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    .portfolio-carousel {
        width: 100%;
        overflow: hidden;
    }
    
    .portfolio-track {
        width: 100%;
        touch-action: pan-x;
    }
    
    /* Fix potential z-index issues */
    .service-badge {
        z-index: 5;
    }
    
    .carousel-nav {
        z-index: 15;
    }
    
    /* Ensure proper spacing for small screens */
    .hero-buttons .btn {
        margin: 0;
    }
    
    /* Fix any potential layout breaks */
    .service-header {
        width: 100%;
    }
    
    .service-tags {
        width: 100%;
        overflow: hidden;
    }
    

    /* Mobile form improvements */
    .contact-form {
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-control {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Industry cards mobile fix */
    .industry-card {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Extra small screens specific fixes */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .service-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        z-index: 10;
    }
    
    .tag {
        font-size: 0.6rem;
        padding: 0.15rem 0.3rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .portfolio-content {
        padding: 0.6rem;
    }
    
    .carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .services-overview,
    .about,
    .portfolio,
    .industry-expertise,
    .contact {
        padding: 2rem 0;
    }
    
    /* Industry Expertise Mobile */
    .industry-item {
        min-width: 120px;
        padding: 1rem 1.5rem;
    }
    
    .industry-item .industry-icon {
        width: 40px;
        height: 40px;
    }
    
    .industry-item .industry-icon i {
        font-size: 1.1rem;
    }
    
    .industry-item h3 {
        font-size: 0.85rem;
    }
    
    .industry-track {
        gap: 1rem;
        animation-duration: 30s;
    }
    


    
    .industry-item {
        min-width: 140px;
        padding: 1.2rem 1.8rem;
    }
    
    .industry-item .industry-icon {
        width: 45px;
        height: 45px;
    }
    
    .industry-item .industry-icon i {
        font-size: 1.2rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-primary) 50%, var(--pink-light) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 15% 20%, rgba(156, 39, 176, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 85% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-carousel {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 50%;
    padding: 0 10px;
    min-height: 240px;
    display: flex;
    align-items: stretch;
}

.testimonial-card {
    background: var(--background-primary);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(156, 39, 176, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 210px;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--pink-dark), var(--secondary-color));
    border-radius: 25px;
    padding: 2px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.15);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    position: relative;
    z-index: 2;
}

.quote-icon i {
    color: white;
    font-size: 0.72rem;
}

.testimonial-text {
    font-size: 0.66rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    flex-grow: 1;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.client-info {
    flex-grow: 1;
}

.client-name {
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.18rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-title {
    font-size: 0.54rem;
    color: var(--text-secondary);
    margin-bottom: 0.48rem;
    font-weight: 500;
}

.company-stats {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: var(--gradient-golden);
    color: var(--text-primary);
    padding: 0.18rem 0.48rem;
    border-radius: 9px;
    font-size: 0.45rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 1.2px 4.8px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.stat-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Navigation Buttons */
.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--background-primary);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.2);
    backdrop-filter: blur(10px);
}

.testimonials-nav:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.3);
}

.testimonials-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonials-prev {
    left: 10px;
}

.testimonials-next {
    right: 10px;
}

.testimonials-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Indicators */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.testimonials-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(156, 39, 176, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    outline: none;
    transform-origin: center;
}

.testimonials-indicator:hover {
    background: rgba(156, 39, 176, 0.4);
    transform: scale(1.1);
}

.testimonials-indicator.active {
    width: 32px;
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--pink-dark) 100%);
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.4),
                0 0 0 3px rgba(156, 39, 176, 0.1);
}

.testimonials-indicator.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

.testimonials-indicator.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 10px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
    pointer-events: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 50%;
        padding: 0 8px;
    }
    
    .testimonials-carousel-container {
        padding: 0 50px;
    }
    
    .testimonials-nav {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 2rem 0;
    }
    
    .testimonial-slide {
        flex: 0 0 100%;
        padding: 0 5px;
    }
    
    .testimonials-carousel-container {
        padding: 0 45px;
    }
    
    .testimonial-card {
        padding: 1.2rem;
        min-height: 192px;
    }
    
    .testimonial-text {
        font-size: 0.6rem;
        line-height: 1.4;
    }
    
    .client-name {
        font-size: 0.6rem;
    }
    
    .client-title {
        font-size: 0.51rem;
    }
    
    .stat-badge {
        font-size: 0.42rem;
        padding: 0.15rem 0.36rem;
    }
    
    .testimonials-indicators {
        gap: 0.6rem;
        margin-top: 2rem;
    }
    
    .testimonials-indicator {
        width: 10px;
        height: 10px;
    }
    
    .testimonials-indicator.active {
        width: 24px;
        height: 10px;
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel-container {
        padding: 0 40px;
    }
    
    .testimonials-nav {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .testimonials-prev {
        left: 5px;
    }
    
    .testimonials-next {
        right: 5px;
    }
    
    .testimonial-card {
        padding: 0.9rem;
        min-height: 168px;
    }
    
    .quote-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 0.6rem;
    }
    
    .quote-icon i {
        font-size: 0.6rem;
    }
    
    .testimonial-text {
        font-size: 0.57rem;
        margin-bottom: 0.9rem;
    }
    
    .testimonial-footer {
        gap: 0;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 0.18rem;
        margin-top: 0.3rem;
    }
    
    .testimonials-indicators {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .testimonials-indicator {
        width: 8px;
        height: 8px;
    }
    
    .testimonials-indicator.active {
        width: 20px;
        height: 8px;
        border-radius: 4px;
    }
}

/* Animation enhancements */
.testimonials .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.testimonials .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Auto-scroll animation pause on hover */
.testimonials-carousel:hover .testimonials-track {
    animation-play-state: paused;
}