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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

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

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

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

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.logo-image {
    height: 65px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #e55a2b, #e0841a);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 30%, #1a1a1a 70%, #000000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    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(255, 107, 53, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(247, 147, 30, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(247, 147, 30, 0.03) 50%, transparent 70%);
    pointer-events: none;
    animation: diagonalFlow 12s linear infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding-top: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    animation: titleSlideIn 1.2s ease-out;
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 10px;
    z-index: -1;
    animation: titleGlow 3s ease-in-out infinite;
}

.highlight {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: highlightPulse 2s ease-in-out infinite;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff8c42);
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.5s both;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes highlightPulse {
    0%, 100% { 
        background: linear-gradient(135deg, #ff6b35, #f7931e, #ff8c42);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% { 
        background: linear-gradient(135deg, #ff8c42, #ff6b35, #f7931e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

@keyframes underlineExpand {
    0% { width: 0; }
    100% { width: 100%; }
}

.typing-cursor {
    animation: blink 1s infinite;
    color: #ff6b35;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: subtitleFadeIn 1.5s ease-out 0.3s both;
    position: relative;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, #ff6b35, #f7931e);
    border-radius: 2px;
    animation: lineExpand 1s ease-out 1s both;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes lineExpand {
    0% { height: 0; }
    100% { height: 60%; }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #e55a2b, #e0841a);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

.cta-button.full-width {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    animation: statsSlideUp 1.8s ease-out 0.6s both;
}

.stat {
    text-align: center;
    position: relative;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    animation: statFloat 3s ease-in-out infinite;
}

.stat:nth-child(1) { animation-delay: 0s; }
.stat:nth-child(2) { animation-delay: 0.5s; }
.stat:nth-child(3) { animation-delay: 1s; }

.stat:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.stat h3 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: numberCountUp 2s ease-out 1.2s both;
}

.stat p {
    color: #b0b0b0;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes statsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes numberCountUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Form Section */
.hero-form-section {
    position: relative;
    z-index: 10;
}

.hero-form-container {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.25);
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    animation: formSlideIn 1.5s ease-out 0.8s both;
    backdrop-filter: blur(10px);
}

.hero-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff8c42);
    animation: topBarSlide 1s ease-out 1.5s both;
}

.hero-form-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    animation: formGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes formSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes topBarSlide {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes formGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}


.hero-form-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero-form-container p {
    color: #a0a0a0;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.hero-contact-form input,
.hero-contact-form select,
.hero-contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: linear-gradient(135deg, #0a0a0a, #111111);
    color: #ffffff;
    position: relative;
    animation: inputSlideIn 0.6s ease-out both;
}

.hero-contact-form input:nth-child(1) { animation-delay: 1.8s; }
.hero-contact-form input:nth-child(2) { animation-delay: 1.9s; }
.hero-contact-form input:nth-child(3) { animation-delay: 2.0s; }
.hero-contact-form select { animation-delay: 2.1s; }
.hero-contact-form textarea { animation-delay: 2.2s; }

.hero-contact-form input:focus,
.hero-contact-form select:focus,
.hero-contact-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), 0 0 20px rgba(255, 107, 53, 0.1);
    background: linear-gradient(135deg, #111111, #1a1a1a);
    transform: translateY(-2px);
}

.hero-contact-form input:hover,
.hero-contact-form select:hover,
.hero-contact-form textarea:hover {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.1);
}

@keyframes inputSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-contact-form input::placeholder,
.hero-contact-form textarea::placeholder {
    color: #666666;
}

.hero-form-note {
    margin-top: 1rem;
    text-align: center;
}

.hero-form-note p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
}

.hero-form-note i {
    color: #10b981;
    margin-right: 0.5rem;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    text-align: center;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.floating-card:nth-child(1) {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 120px;
    left: 20px;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 20px;
    right: 40px;
    animation-delay: 4s;
}

.floating-card i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.floating-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.floating-card p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

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

/* 3D Abstract Elements */
.abstract-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.7;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    filter: blur(1px);
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    filter: blur(0.5px);
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    filter: blur(1.5px);
}

/* 3D Cube */
.hero-3d-object {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
}

.cube {
    position: relative;
    width: 100px;
    height: 100px;
    transform-style: preserve-3d;
    animation: rotate3d 20s linear infinite;
}

.face {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(247, 147, 30, 0.8));
    border: 2px solid rgba(255, 107, 53, 0.5);
    opacity: 0.9;
}

.face.front { transform: rotateY(0deg) translateZ(50px); }
.face.back { transform: rotateY(180deg) translateZ(50px); }
.face.right { transform: rotateY(90deg) translateZ(50px); }
.face.left { transform: rotateY(-90deg) translateZ(50px); }
.face.top { transform: rotateX(90deg) translateZ(50px); }
.face.bottom { transform: rotateX(-90deg) translateZ(50px); }

@keyframes rotate3d {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

/* Particle Effects */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.particle-4 {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle-5 {
    bottom: 60%;
    left: 60%;
    animation-delay: 3s;
    animation-duration: 6s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        transform: translateY(-100px) translateX(50px) scale(0);
        opacity: 0;
    }
}

/* Statistics Bar */
.stats-bar {
    padding: 30px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Client Showcase Section */
.client-showcase {
    padding: 80px 0;
    background: #111111;
    position: relative;
}

.client-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.client-logos-carousel {
    overflow: hidden;
    margin-top: 1rem;
    padding: 1rem 0;
    position: relative;
    width: 100%;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 1rem 0;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100%;
}

.carousel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.08) 50%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

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

.client-logos-track {
    display: flex;
    animation: scroll 25s linear infinite;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: max-content;
    min-width: 200%;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #0f0f0f);
    border-radius: 10px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 80px;
    min-width: 160px;
    flex-shrink: 0;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #3b82f6);
    border-radius: 15px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-logo:hover::before {
    opacity: 1;
}

.client-logo:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.3),
        0 0 30px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

/* Pause animation on hover */
.client-logos-carousel:hover .client-logos-track {
    animation-play-state: paused;
}

.logo-placeholder {
    color: #a0a0a0;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.client-logo-img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.client-logo:hover .client-logo-img {
    filter: brightness(1.3) contrast(1.4);
    transform: scale(1.1);
}

/* Special styling for OK2Go logo - zoomed */
.ok2go-logo .client-logo-img {
    transform: scale(1.3);
    filter: brightness(1.2) contrast(1.3);
}

.ok2go-logo:hover .client-logo-img {
    transform: scale(1.4);
    filter: brightness(1.4) contrast(1.5);
}

/* Special styling for Indellia logo - white */
.indellia-logo .client-logo-img {
    filter: brightness(0) invert(1) contrast(1.2);
}

.indellia-logo:hover .client-logo-img {
    filter: brightness(0) invert(1) contrast(1.4);
    transform: scale(1.1);
}

/* Special styling for LL (Lunar Loft) logo - equalized to OTC */
.ll-logo .client-logo-img {
    transform: scale(1.44);
    filter: brightness(1.2) contrast(1.3);
}

.ll-logo:hover .client-logo-img {
    transform: scale(1.56);
    filter: brightness(1.4) contrast(1.5);
}

/* Special styling for Sorshe logo - equalized to OTC */
.sorshe-logo .client-logo-img {
    transform: scale(1.44);
    filter: brightness(1.2) contrast(1.3);
}

.sorshe-logo:hover .client-logo-img {
    transform: scale(1.56);
    filter: brightness(1.4) contrast(1.5);
}

/* Web Development Showcase */
.web-dev-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.web-dev-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Showcase */
.responsive-showcase {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.responsive-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #3b82f6);
}

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

.showcase-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Device Showcase */
.device-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.device-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.device-container:hover {
    transform: translateY(-10px);
}

.device-frame {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.device-screen {
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.device-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.device-container:hover .device-img {
    transform: scale(1.05);
}

.device-label {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 500;
}

/* Desktop Device */
.desktop-device .device-frame {
    width: 300px;
    height: 200px;
}

/* Tablet Device */
.tablet-device .device-frame {
    width: 200px;
    height: 150px;
}

/* Mobile Device */
.mobile-device .device-frame {
    width: 120px;
    height: 200px;
}

/* Responsive Features */
.responsive-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.5;
}

/* Dashboard Showcase */
.dashboard-showcase {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.dashboard-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #667eea, #764ba2);
}

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

.dashboard-image {
    position: relative;
}

.dashboard-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.dashboard-img:hover {
    transform: scale(1.02);
}

.dashboard-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.dashboard-feature:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(10px);
}

.dashboard-feature .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.dashboard-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.dashboard-feature p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .device-showcase {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .desktop-device .device-frame {
        width: 250px;
        height: 160px;
    }
    
    .tablet-device .device-frame {
        width: 180px;
        height: 130px;
    }
    
    .mobile-device .device-frame {
        width: 100px;
        height: 160px;
    }
    
    .dashboard-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .responsive-features {
        grid-template-columns: 1fr;
    }
}

.showcase-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 24px;
    padding: 3rem;
    text-align: left;
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    animation: showcaseSlideUp 0.8s ease-out both;
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.03) 0%, 
        rgba(59, 130, 246, 0.02) 50%, 
        rgba(255, 107, 53, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.showcase-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.8) 50%, 
        transparent 100%);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.showcase-item:nth-child(1) { animation-delay: 0.1s; }
.showcase-item:nth-child(2) { animation-delay: 0.2s; }
.showcase-item:nth-child(3) { animation-delay: 0.3s; }

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.showcase-item:hover::before {
    transform: scaleX(1);
}

.showcase-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(255, 107, 53, 0.1);
}

.showcase-item:hover::before {
    opacity: 1;
}

.showcase-item:hover::after {
    transform: scaleX(1);
}

.showcase-image {
    margin-bottom: 2.5rem;
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.showcase-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        transparent 50%, 
        rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.showcase-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 0;
}

.showcase-item:hover .showcase-image {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.showcase-item:hover .showcase-image::before {
    opacity: 1;
}

.showcase-item:hover .showcase-image::after {
    transform: translate(-50%, -50%) scale(1);
}

.showcase-item:hover .showcase-img {
    transform: scale(1.08);
}

.showcase-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
}

.showcase-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 1px;
    transition: width 0.4s ease;
}

.showcase-item:hover .showcase-info h3::after {
    width: 60px;
}

.showcase-info p {
    font-size: 1.05rem;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.website-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.website-features li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
    color: #d0d0d0;
    line-height: 1.6;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.website-features li::before {
    content: '◆';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b35;
    font-weight: bold;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.website-features li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.website-features li:hover {
    color: #ffffff;
    transform: translateX(8px);
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.2);
}

.website-features li:hover::before {
    transform: translateY(-50%) scale(1.2);
}

.website-features li:hover::after {
    transform: scaleY(1);
}

/* Gradient animation keyframes */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Specific styling for mobile mockup to show full image */
.showcase-item:nth-child(2) .showcase-image {
    height: 240px;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
}

.showcase-item:nth-child(2) .showcase-img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

/* Specific styling for desktop mockup */
.showcase-item:nth-child(1) .showcase-image {
    height: 240px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.showcase-item:nth-child(1) .showcase-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Specific styling for dashboard mockup */
.showcase-item:nth-child(3) .showcase-image {
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.showcase-item:nth-child(3) .showcase-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Browser Mockup */
.mockup-browser {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: browserFloat 4s ease-in-out infinite;
}

.browser-header {
    background: #3a3a3a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-url {
    background: #1a1a1a;
    color: #a0a0a0;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: monospace;
}

.browser-content {
    background: #ffffff;
    min-height: 200px;
    padding: 16px;
}

.website-preview {
    animation: contentFadeIn 2s ease-out 1s both;
}

.preview-header {
    height: 70px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 6px;
    margin-bottom: 20px;
    animation: headerSlide 1.5s ease-out 1.2s both;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.preview-header::before {
    content: "Digi Carotene";
    color: white;
    font-weight: bold;
    font-size: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preview-header::after {
    content: "Home Services About Contact";
    color: #ccc;
    font-size: 13px;
    font-weight: 500;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: calc(100% - 80px);
}

.preview-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.preview-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.preview-line {
    height: 14px;
    background: #f0f0f0;
    border-radius: 4px;
    animation: lineSlide 1s ease-out both;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.preview-line.short { width: 70%; animation-delay: 1.4s; }
.preview-line.medium { width: 85%; animation-delay: 1.6s; }
.preview-line:first-child { animation-delay: 1.3s; }

.preview-line:nth-child(1) {
    height: 32px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.preview-line:nth-child(1)::before {
    content: "Grow Your Business with Digital Marketing";
    background: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.preview-line:nth-child(2) {
    height: 14px;
    background: #e8e8e8;
}

.preview-line:nth-child(2)::before {
    content: "SEO • Social Media • PPC • Web Development";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 12px;
    color: #666;
    background: none;
}

.preview-line:nth-child(3) {
    height: 45px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.preview-line:nth-child(3)::before {
    content: "Get Free Strategy Session";
    background: none;
    color: white;
    font-size: 13px;
    font-weight: bold;
}

.preview-right .preview-line {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.preview-right .preview-line:nth-child(1) {
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    font-weight: bold;
}

.preview-right .preview-line:nth-child(1)::before {
    content: "📈 200+ Happy Clients";
    background: none;
    color: white;
    font-size: 13px;
    font-weight: bold;
}

.preview-right .preview-line:nth-child(2) {
    height: 10px;
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
}

.preview-right .preview-line:nth-child(2)::before {
    content: "95% Client Retention Rate";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 11px;
    color: #2e7d32;
    background: none;
}

.preview-right .preview-line:nth-child(3) {
    height: 10px;
    background: #fff3e0;
    border: 1px solid #ffcc02;
}

.preview-right .preview-line:nth-child(3)::before {
    content: "₹10 Cr+ Revenue Impact";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 11px;
    color: #f57c00;
    background: none;
}

/* Phone Mockup */
.mockup-phone {
    width: 200px;
    height: 400px;
    background: #2a2a2a;
    border-radius: 25px;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: phoneFloat 4s ease-in-out infinite 0.5s;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.mobile-preview {
    padding: 12px;
    height: 100%;
    animation: mobileContentFade 2s ease-out 1.5s both;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.mobile-header {
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 8px;
    margin-bottom: 20px;
    animation: mobileHeaderSlide 1.2s ease-out 1.7s both;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-header::before {
    content: "Digi Carotene";
    color: white;
    font-weight: bold;
    font-size: 16px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-header::after {
    content: "☰";
    font-size: 18px;
    color: #ccc;
}

.mobile-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-line {
    height: 12px;
    background: #ffffff;
    border-radius: 6px;
    animation: mobileLineSlide 0.8s ease-out both;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.mobile-line.short { width: 75%; animation-delay: 1.9s; }
.mobile-line:first-child { animation-delay: 1.8s; }

.mobile-line:nth-child(1) {
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.mobile-line:nth-child(1)::before {
    content: "Grow Your Business";
    background: none;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.mobile-line:nth-child(2) {
    height: 8px;
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
}

.mobile-line:nth-child(2)::before {
    content: "SEO • Social Media • PPC";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 10px;
    color: #2e7d32;
    background: none;
}

.mobile-line:nth-child(3) {
    height: 35px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.mobile-line:nth-child(3)::before {
    content: "Get Free Strategy Session";
    background: none;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.mobile-line:nth-child(4) {
    height: 8px;
    background: #fff3e0;
    border: 1px solid #ffcc02;
}

.mobile-line:nth-child(4)::before {
    content: "200+ Happy Clients";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 10px;
    color: #f57c00;
    background: none;
}
.mobile-line:last-child { animation-delay: 2.0s; }

/* Dashboard Mockup */
.mockup-dashboard {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: dashboardFloat 4s ease-in-out infinite 1s;
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: 60px 1fr;
    height: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    grid-column: 1 / -1;
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    animation: dashboardHeaderSlide 1.5s ease-out 2s both;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.dashboard-header::before {
    content: "Analytics Dashboard";
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.dashboard-header::after {
    content: "📊";
    position: absolute;
    right: 20px;
    font-size: 16px;
}

.dashboard-sidebar {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    animation: sidebarSlide 1.2s ease-out 2.2s both;
    display: flex;
    flex-direction: column;
    padding: 12px 8px;
    gap: 8px;
    border-right: 1px solid #dee2e6;
}

.dashboard-sidebar::before {
    content: "📊";
    font-size: 20px;
    text-align: center;
    margin-bottom: 8px;
    padding: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 6px;
    color: white;
}

.dashboard-sidebar::after {
    content: "👥";
    font-size: 16px;
    text-align: center;
    padding: 6px;
    background: #e3f2fd;
    border-radius: 4px;
    color: #1976d2;
}

.dashboard-main {
    padding: 20px;
    display: grid;
    grid-template-rows: 1fr 80px;
    gap: 16px;
    animation: mainContentFade 1.8s ease-out 2.4s both;
    background: #fafbfc;
}

.chart-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 8px;
    animation: chartGrow 1.5s ease-out 2.6s both;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chart-placeholder::before {
    content: "📊 Campaign Performance";
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-bottom: 12px;
}

.chart-placeholder::after {
    content: "📈";
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    color: #28a745;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-box {
    height: 60px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 8px;
    animation: statBoxSlide 0.8s ease-out both;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-box:nth-child(1) { 
    animation-delay: 2.8s; 
    border-left: 4px solid #28a745;
}

.stat-box:nth-child(2) { 
    animation-delay: 3.0s; 
    border-left: 4px solid #007bff;
}

.stat-box:nth-child(3) { 
    animation-delay: 3.2s; 
    border-left: 4px solid #ffc107;
}

.stat-box:nth-child(1)::before {
    content: "1.2K";
    font-size: 18px;
    color: #28a745;
    font-weight: bold;
    margin-bottom: 4px;
}

.stat-box:nth-child(1)::after {
    content: "Leads";
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

.stat-box:nth-child(2)::before {
    content: "85%";
    font-size: 18px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 4px;
}

.stat-box:nth-child(2)::after {
    content: "Conversion";
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

.stat-box:nth-child(3)::before {
    content: "₹2.1M";
    font-size: 18px;
    color: #ffc107;
    font-weight: bold;
    margin-bottom: 4px;
}

.stat-box:nth-child(3)::after {
    content: "Revenue";
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

.showcase-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.showcase-info p {
    color: #a0a0a0;
    line-height: 1.5;
}

/* Animations */
@keyframes showcaseSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

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

@keyframes contentFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes headerSlide {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes lineSlide {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes mobileContentFade {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes mobileHeaderSlide {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes mobileLineSlide {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes dashboardHeaderSlide {
    0% { height: 0; }
    100% { height: 100%; }
}

@keyframes sidebarSlide {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes mainContentFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes chartGrow {
    0% { height: 0; }
    100% { height: 80px; }
}

@keyframes statBoxSlide {
    0% { transform: translateX(-20px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Case Studies Section */
.case-studies {
    padding: 60px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    position: relative;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

.case-studies-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.case-studies-header p {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 0;
    align-items: stretch;
}

.case-study-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: caseStudySlideUp 0.8s ease-out both;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.case-study-card:nth-child(1) { animation-delay: 0.1s; }
.case-study-card:nth-child(2) { animation-delay: 0.2s; }
.case-study-card:nth-child(3) { animation-delay: 0.3s; }

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.case-study-card:hover::before {
    transform: scaleX(1);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.case-study-image {
    margin-bottom: 1.5rem;
    position: relative;
    flex-shrink: 0;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.case-study-mockup {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-mockup:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.case-study-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 0.5rem;
}

.case-study-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-align: left;
}

.service-type {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.3;
}

.results {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
    justify-content: flex-start;
    margin-top: auto;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.6rem;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.2);
    min-height: 50px;
}

.result-number {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 50px;
    flex-shrink: 0;
    line-height: 1.2;
}

.result-text {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
    text-align: left;
}

/* Highlight classes for bullet points */
.highlight-number {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.1em;
}

.highlight-text {
    color: #ff6b35;
    font-weight: 700;
}

.highlight-bold {
    color: #ff6b35;
    font-weight: 700;
}

.highlight-accent {
    color: #ff6b35;
    font-weight: 700;
}

.highlight-success {
    color: #ff6b35;
    font-weight: 700;
}

.highlight-warning {
    color: #ff6b35;
    font-weight: 700;
}

/* E-commerce Mockup */
.mockup-ecommerce {
    background: #ffffff;
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: mockupFloat 4s ease-in-out infinite;
    width: 100%;
    height: 100%;
    max-height: 100px;
}

.product-page {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    height: 100%;
}

.product-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.coffee-bag {
    text-align: center;
    color: #ffffff;
}

.bag-front {
    font-size: 0.6rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.bag-details {
    font-size: 0.5rem;
    opacity: 0.9;
}

.product-info {
    flex: 1;
}

.flavor-notes {
    color: #64748b;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.product-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.option {
    color: #1a1a1a;
    font-weight: 600;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b35;
}

.buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-primary, .btn-secondary {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.btn-primary {
    background: #ff6b35;
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

/* Social Media Mockup */
.mockup-social {
    background: #ffffff;
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: mockupFloat 4s ease-in-out infinite 0.5s;
    width: 100%;
    height: 100%;
    max-height: 100px;
}

.saree-showcase {
    display: flex;
    gap: 0.5rem;
    height: 100%;
}

.saree-image {
    flex: 1;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.saree-1 {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.saree-2 {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #8b5cf6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.saree-3 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.overlay-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.description {
    color: #ffffff;
    font-size: 0.7rem;
    text-align: center;
    opacity: 0.9;
}

/* App Mockup */
.mockup-app {
    background: #ffffff;
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: mockupFloat 4s ease-in-out infinite 1s;
    width: 100%;
    height: 100%;
    max-height: 100px;
}

.app-screen {
    text-align: center;
}

.app-header {
    font-size: 1rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.users-group {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.user {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    position: relative;
}

.user::after {
    content: '📱';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

.app-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6b35;
}



/* Animations */
@keyframes caseStudySlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Services Section */
.services {
    padding: 60px 0;
    background: #000000;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

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

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

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #111111;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.about-lead {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

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

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-placeholder p {
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: #000000;
    position: relative;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    min-height: 400px;
}

.testimonial-nav {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    z-index: 10;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    align-self: center;
}

.testimonial-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.testimonial-nav:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

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

.testimonial-nav:active {
    transform: scale(1.05) rotate(2deg);
}

.testimonial-nav i {
    font-size: 1.2rem;
    color: #ffffff;
}

.testimonial-prev {
    order: 1;
}

.testimonial-next {
    order: 3;
}

.testimonials-grid {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    align-self: center;
}

/* Responsive Testimonials */
@media (max-width: 1200px) {
    .testimonials-container {
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        max-width: 700px;
    }
    
    .testimonial-card {
        min-width: 350px;
        max-width: 380px;
    }
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    
    .testimonials-container {
        gap: 1rem;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        order: 2;
    }
    
    .testimonial-prev {
        order: 1;
    }
    
    .testimonial-next {
        order: 3;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 400px;
    }
    
    .testimonial-nav {
        width: 50px;
        height: 50px;
    }
}

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

/* Sticky Bottom CTA */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 -4px 20px rgba(255, 107, 53, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-bottom-cta.show {
    transform: translateY(0);
}

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

.sticky-cta-text h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sticky-cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.sticky-cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.sticky-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.sticky-btn.primary {
    background: #fff;
    color: #ff6b35;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sticky-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.sticky-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.sticky-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.sticky-btn.call-btn {
    background: #28a745;
    color: #fff;
    border: 2px solid #28a745;
    display: none; /* Hidden on desktop */
}

.sticky-btn.call-btn:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.3);
}


/* Mobile Responsive for Sticky CTA */
@media (max-width: 768px) {
    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }
    
    .sticky-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .sticky-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
    
    /* Hide audit button on mobile */
    .sticky-btn.secondary {
        display: none;
    }
    
    /* Show call button on mobile */
    .sticky-btn.call-btn {
        display: flex;
    }
    
    .sticky-cta-text h4 {
        font-size: 1.1rem;
    }
    
    .sticky-cta-text p {
        font-size: 0.85rem;
    }
    
    /* Hide hero form section on mobile */
    .hero-form-section {
        display: none;
    }
    
    /* Make hero content full width on mobile */
    .hero-content {
        width: 100%;
        text-align: center;
    }
    
    /* Hide navigation links on mobile and tablet */
    .nav-menu {
        display: none;
    }
    
    /* Mobile Testimonials - Show 1 at a time */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        min-width: 100%;
        margin: 0;
    }
    
    /* Hide arrows on mobile */
    .testimonial-nav {
        display: none;
    }
    
    /* Show dots on mobile */
    .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .dot.active {
        background: #ff6b35;
        transform: scale(1.2);
    }
    
    .dot:hover {
        background: rgba(255, 107, 53, 0.7);
    }
}

/* Desktop - Hide dots */
@media (min-width: 769px) {
    .testimonial-dots {
        display: none;
    }
}

@media (max-width: 480px) {
    .sticky-cta-content {
        padding: 0.75rem;
    }
    
    .sticky-cta-text h4 {
        font-size: 1rem;
    }
    
    .sticky-cta-text p {
        font-size: 0.8rem;
    }
    
    .sticky-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #111111;
    position: relative;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #333333;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: #1a1a1a;
}

.faq-question:hover {
    background: #222222;
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-question i {
    color: #ff6b35;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #1a1a1a;
}

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

.faq-answer p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    flex: 1;
    padding: 0;
    max-width: 1200px;
}

.testimonial-card {
    width: 100%;
    min-width: 400px;
    max-width: 450px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(59, 130, 246, 0.03) 50%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.5);
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.rating {
    color: #fbbf24;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-button.primary {
    background: #000000;
    color: #ffffff;
}

.cta-section .cta-button.primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-section .cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-section .cta-button.secondary:hover {
    background: #ffffff;
    color: #000000;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #111111;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.contact-info p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #2563eb;
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #a0a0a0;
    margin: 0;
}

.contact-form {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #1a1a1a;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

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

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

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

.footer-logo h3 {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #a0a0a0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

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

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

.footer-column a:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    color: #a0a0a0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff6b35;
}

.modal h2 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.modal-subtitle {
    color: #a0a0a0;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1rem;
}

.modal p {
    color: #a0a0a0;
    margin-bottom: 2rem;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .hero-form-container {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .hero-form-container h3 {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .client-logos-carousel {
        padding: 1rem 0;
        margin-top: 1.5rem;
    }
    
    .carousel-container {
        padding: 1rem 0;
    }
    
    .client-logos-track {
        gap: 1.5rem;
    }
    
    .client-logo {
        min-height: 80px;
        min-width: 140px;
        padding: 1rem 1.5rem;
    }
    
    .client-logo-img {
        max-height: 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .logo-image {
        height: 50px;
        max-width: 180px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    /* Mobile Modal Fixes */
    .modal {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-content {
        margin: 2rem auto;
        padding: 1.5rem;
        width: 95%;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
        position: relative;
    }
    
    .modal h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    /* Extra Small Mobile Modal Fixes */
    .modal-content {
        margin: 1rem auto;
        padding: 1rem;
        width: 98%;
        max-height: calc(100vh - 2rem);
    }
    
    .modal h2 {
        font-size: 1.25rem;
    }
    
    .modal-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .cta-button.full-width {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Enhanced About Section */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.03) 0%, 
        rgba(59, 130, 246, 0.02) 50%, 
        rgba(255, 107, 53, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.8) 50%, 
        transparent 100%);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.about-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(255, 107, 53, 0.1);
}

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

.about-card:hover::after {
    transform: scaleX(1);
}

.card-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #3b82f6);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover .icon-wrapper::before {
    opacity: 1;
}

.about-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.about-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-content p {
    font-size: 0.9rem;
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.card-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.about-card:hover .card-stats {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: #b0b0b0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-card {
        padding: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}
