/* ========================================
   Digital Munk - Enhanced Professional Design
   Modern 3D Effects, Animations & Premium Look
   ======================================== */

:root {
    --primary-red: #e74c3c;
    --primary-blue: #3498db;
    --dark-red: #c0392b;
    --dark-blue: #2980b9;
    --light-red: #ff6b6b;
    --light-blue: #5dade2;
    --gradient-primary: linear-gradient(135deg, #e74c3c 0%, #3498db 100%);
    --gradient-secondary: linear-gradient(135deg, #3498db 0%, #e74c3c 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-medium: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-strong: 0 30px 80px rgba(0,0,0,0.2);
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --black: #1a1a2e;
}

/* ========================================
   GLOBAL ENHANCEMENTS
   ======================================== */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}


/* header area */

.menu-trigger span,
.menu-trigger span:before,
.menu-trigger span:after {
  background-color: #ffffff !important;
}

/* ========================================
   ENHANCED HERO SECTION
   ======================================== */

.main-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 90px 0 40px;
}

/* Animated Background Particles */
.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(231, 76, 60, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Floating Geometric Shapes */
.main-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(52, 152, 219, 0.1));
    top: 10%;
    right: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 15s infinite ease-in-out;
    z-index: 1;
}

@keyframes morphing {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
    75% { border-radius: 25% 75% 25% 75% / 25% 75% 25% 75%; }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: slideInDown 1s ease;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
    animation: slideInLeft 1s ease 0.2s backwards;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
}

.hero-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title .gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: underlineExpand 1s ease 1.5s backwards;
}

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

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 650px;
    animation: slideInLeft 1s ease 0.4s backwards;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease 0.6s backwards;
    margin-bottom: 0;
}

.btn-primary-red {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 43px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg);
}

.btn-primary-red::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;
}

.btn-primary-red:hover {
    transform: perspective(1000px) rotateX(-5deg) translateY(-5px);
    box-shadow: 0 25px 50px rgba(231, 76, 60, 0.6);
}

.btn-primary-red:hover::before {
    left: 100%;
}

.btn-outline-blue {
    background: transparent;
    color: var(--white);
    padding: 18px 45px;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.btn-outline-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-blue);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline-blue:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
}

.btn-outline-blue:hover::before {
    width: 100%;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease 0.8s backwards;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 25px 80px rgba(0,0,0,0.3));
    animation: floatImage 8s infinite ease-in-out;
    border-radius: 20px;
}

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

.hero-stats {
    display: flex;
    gap: 50px;
    animation: slideInUp 1s ease 1s backwards;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ========================================
   ENHANCED FEATURES SECTION
   ======================================== */

.features-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(231, 76, 60, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(52, 152, 219, 0.03) 0%, transparent 50%);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(52, 152, 219, 0.1));
    color: var(--primary-red);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 2px solid rgba(231, 76, 60, 0.2);
}

.section-title h2 {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.feature-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    border-radius: 25px 25px 0 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    border-color: rgba(231, 76, 60, 0.3);
}

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

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
}

.feature-icon i {
    font-size: 42px;
    color: var(--white);
    line-height: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.5);
}

.feature-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* ========================================
   ENHANCED SERVICES SECTION
   ======================================== */

.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(231, 76, 60, 0.05) 0%, transparent 50%);
}

.service-card {
    background: var(--white);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-25px) rotateX(5deg);
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

.service-image {
    height: 250px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image::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.8s;
}

.service-card:hover .service-image::before {
    left: 100%;
}

.service-image i {
    font-size: 72px;
    color: var(--white);
    line-height: 1;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-image i {
    transform: scale(1.2) rotate(10deg);
}

.service-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

.service-link {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.service-link:hover {
    gap: 20px;
    color: var(--dark-red);
    transform: translateX(5px);
}

/* ========================================
   ENHANCED STATS SECTION
   ======================================== */

.stats-section {
    padding: 60px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

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

.stats-container {
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box:hover {
    transform: scale(1.1) translateY(-10px);
}

.stat-box .number {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.stat-box .label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* ========================================
   ENHANCED TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid var(--primary-red);
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.testimonial-card:hover {
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    border-left-color: var(--primary-blue);
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-image {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
}

.author-info h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.author-info p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   ENHANCED CTA SECTION
   ======================================== */

.cta-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, transparent 70%);
    top: -300px;
    left: -300px;
    border-radius: 50%;
    animation: ctaFloat 20s infinite ease-in-out;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.2) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
    animation: ctaFloat 15s infinite ease-in-out reverse;
}

@keyframes ctaFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ========================================
   ENHANCED ANIMATIONS
   ======================================== */

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 64px;
    }
    
    .section-title h2 {
        font-size: 48px;
    }
    
    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .main-banner {
        min-height: auto;
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title h2 {
        font-size: 42px;
    }
    
    .hero-stats {
        gap: 30px;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1 1 45%;
        max-width: 200px;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-red,
    .btn-outline-blue {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        flex: none;
        max-width: none;
    }
    
    .cta-content h2 {
        font-size: 42px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-box .number {
        font-size: 48px;
    }
    
    /* Team Section Mobile */
    .team-card {
        margin-bottom: 30px;
    }
    
    .team-content {
        padding: 25px 20px;
    }
    
    .team-content h4 {
        font-size: 20px;
    }
    
    /* Case Studies Mobile */
    .case-study-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .case-study-stats .stat {
        text-align: left;
    }
    
    /* Awards Mobile */
    .award-card {
        padding: 30px 20px;
    }
    
    .award-icon {
        width: 60px;
        height: 60px;
    }
    
    .award-icon i {
        font-size: 28px;
    }
    
    /* Technology Mobile */
    .tech-card {
        padding: 25px 15px;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
    }
    
    .tech-icon i {
        font-size: 24px;
    }
    
    .tech-card h5 {
        font-size: 14px;
    }
    
    /* Disable 3D effects on mobile for performance */
    .feature-card:hover,
    .service-card:hover,
    .testimonial-card:hover,
    .team-card:hover,
    .case-study-card:hover,
    .award-card:hover,
    .tech-card:hover {
        transform: translateY(-10px);
    }
    
    /* Reduce animation complexity on mobile */
    .feature-icon,
    .award-icon,
    .tech-icon {
        transition: transform 0.3s ease;
    }
    
    .feature-card:hover .feature-icon,
    .award-card:hover .award-icon,
    .tech-card:hover .tech-icon {
        transform: scale(1.1);
    }
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.team-card {
    background: var(--white);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    z-index: 2;
}

.team-card:hover {
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

.team-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(52, 152, 219, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    display: flex;
    gap: 20px;
}

.team-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: scale(1.1);
}

.team-content {
    padding: 30px;
    text-align: center;
}

.team-content h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-content p {
    font-size: 16px;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 5px;
}

.team-content span {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   CASE STUDIES SECTION
   ======================================== */

.case-studies-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.case-study-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    z-index: 2;
}

.case-study-card:hover {
    transform: translateY(-25px) rotateX(5deg);
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

.case-study-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.case-study-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.case-study-category {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-content {
    padding: 30px;
}

.case-study-content h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.case-study-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.case-study-stats {
    display: flex;
    gap: 30px;
}

.case-study-stats .stat {
    text-align: center;
}

.case-study-stats .number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-red);
    display: block;
    margin-bottom: 5px;
}

.case-study-stats .label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ========================================
   AWARDS SECTION
   ======================================== */

.awards-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.award-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    border-radius: 25px 25px 0 0;
}

.award-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    border-color: rgba(231, 76, 60, 0.3);
}

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

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
}

.award-icon i {
    font-size: 36px;
    color: var(--white);
    transition: all 0.3s ease;
}

.award-card:hover .award-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.5);
}

.award-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.award-card p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

/* ========================================
   TECHNOLOGY SECTION
   ======================================== */

.technology-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
}

.technology-section .section-title h2 {
    color: var(--white);
}

.technology-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(231, 76, 60, 0.5);
}

.tech-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.tech-icon i {
    font-size: 28px;
    color: var(--white);
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    transform: rotateY(360deg);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.tech-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for better accessibility */
.btn-primary-red:focus,
.btn-outline-blue:focus,
.service-link:focus {
    outline: 3px solid rgba(231, 76, 60, 0.5);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-title,
    .section-title h2 {
        text-shadow: none;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        border: 2px solid var(--text-dark);
    }
}
