/* ========================================
   HOMEPAGE STYLES
   Corporate, Minimalist, Modern Design
   ======================================== */

/* Homepage specific spacing - Override all navbar spacing */
.homepage-content {
    padding-top: 0 !important; /* Override default main-content padding */
    margin-top: -80px; /* Compensate for body padding-top from header.css */
}

/* Ensure hero starts immediately after navbar - FIXED HEADER COMPATIBILITY */
.hero-section {
    margin-top: 0 !important;
    position: relative;
    top: 0;
}

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

.hero-section {
    position: relative;
    padding: 80px 0 var(--spacing-xxl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #2c3e50;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 144, 220, 0.75) 0%, rgba(32, 107, 196, 0.8) 35%, rgba(74, 144, 226, 0.7) 70%, rgba(42, 128, 208, 0.8) 100%), 
                url('https://i.ibb.co/Fq7Bb8Sd/Adobe-Stock-337101948-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 0.85;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: -3px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-slogan {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 750px;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

.btn-test {
    background: linear-gradient(135deg, #FF9800, #F57C00) !important;
    color: white !important;
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    padding: 18px 40px !important;
    border: none !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 24px rgba(255, 152, 0, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 20;
    min-width: 200px;
}

.btn-test:hover {
    background: linear-gradient(135deg, #13CE66, #21563C) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 32px rgba(19, 206, 102, 0.6) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-test:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

/* ========================================
   SERVICES SECTION - Premium Corporate Design
   ======================================== */

/* Enterprise Solutions Section */
.enterprise-solutions {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.enterprise-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 152, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(19, 206, 102, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.enterprise-solutions .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

/* Solutions Header */
.solutions-header {
    text-align: center;
    margin-bottom: 80px;
}

.solutions-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-green-bright) 0%, var(--color-orange) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.solutions-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Architecture Visual */
.solutions-architecture {
    margin-bottom: 100px;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.solutions-architecture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(19, 206, 102, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 152, 0, 0.08) 0%, transparent 40%);
    z-index: 1;
}

.architecture-visual {
    position: relative;
    z-index: 2;
}

.data-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.flow-stage {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 30px 20px;
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-stage:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(19, 206, 102, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.flow-stage.central {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 2px solid rgba(255, 152, 0, 0.3);
    box-shadow: 0 12px 32px rgba(255, 152, 0, 0.15);
}

.flow-stage.central:hover {
    transform: scale(1.1) translateY(-6px);
    border-color: rgba(255, 152, 0, 0.5);
    box-shadow: 0 20px 48px rgba(255, 152, 0, 0.25);
}

.stage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(226, 232, 240, 0.6);
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.stage-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.flow-stage:hover .stage-icon::before {
    transform: translateX(100%);
}

.flow-stage.central .stage-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--color-green-bright) 0%, var(--color-orange) 100%);
    color: white;
    box-shadow: 0 12px 32px rgba(255, 152, 0, 0.4);
    border-color: rgba(255, 152, 0, 0.6);
    font-size: 2.4rem;
}

.router-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.flow-stage.central:hover .router-icon img {
    transform: scale(1.1) rotate(5deg);
}

.flow-stage h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.flow-stage p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.flow-arrow {
    color: var(--color-green-bright);
    font-size: 1.5rem;
    opacity: 0.7;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.flow-arrow:hover {
    opacity: 1;
    transform: scale(1.1);
    color: var(--color-orange);
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 80px;
}

.solution-item {
    background: white;
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--color-green-bright) 0%, var(--color-orange) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-item:nth-child(2)::before {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-green-bright) 100%);
}

.solution-item:nth-child(3)::before {
    background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-orange) 100%);
}

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

.solution-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 32px 64px rgba(15, 23, 42, 0.08),
        0 16px 32px rgba(15, 23, 42, 0.04);
    border-color: rgba(19, 206, 102, 0.2);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.solution-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-green-bright);
    background: linear-gradient(135deg, rgba(19, 206, 102, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(19, 206, 102, 0.1);
}

.solution-item:nth-child(2) .solution-number {
    color: var(--color-orange);
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(19, 206, 102, 0.05) 100%);
    border-color: rgba(255, 152, 0, 0.1);
}

.solution-item:nth-child(3) .solution-number {
    color: var(--color-green-dark);
    background: linear-gradient(135deg, rgba(33, 86, 60, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-color: rgba(33, 86, 60, 0.1);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-dark);
    transition: all 0.3s ease;
}

.solution-item:hover .solution-icon {
    background: linear-gradient(135deg, var(--color-green-bright) 0%, var(--color-green-dark) 100%);
    color: white;
    transform: scale(1.05);
}

.solution-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.solution-content p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.solution-features li {
    position: relative;
    padding: 12px 0 12px 32px;
    color: #475569;
    font-weight: 500;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-green-bright);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Solutions CTA */
.solutions-cta {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-green-dark) 50%, var(--color-orange) 100%);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solutions-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 152, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(19, 206, 102, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.cta-content h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.homepage-content .btn-outline-primary,
.enterprise-solutions .btn-outline-primary {
    background: transparent;
    color: white !important;
    border: 2px solid rgba(255, 123, 0, 0.6);
}

.homepage-content .btn-outline-primary:hover,
.enterprise-solutions .btn-outline-primary:hover {
    background: linear-gradient(135deg, #ff7b00, #228b22);
    color: white !important;
    border-color: #ff7b00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
}

.service-card p {
    color: var(--color-gray-dark);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: var(--color-dark);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: 
        linear-gradient(135deg, rgba(248, 250, 254, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%),
        url('https://opcrouter.com.tr/media/pexels-googledeepmind-17485706.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.about-text h2 {
    font-size: 2.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

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

/* Default about image for homepage - DISABLED since we now have actual img tag */
.about-image::before {
    display: none !important; /* Hide the pseudo-element since we have an actual image */
}

.about-image:hover::before {
    display: none; /* Hide the pseudo-element hover effect */
}

/* ========================================
   BLOG PREVIEW SECTION
   ======================================== */

/* ========================================
   SUPER COOL BLOG PREVIEW SECTION
   Advanced Modern Design with Glassmorphism
   ======================================== */

.blog-preview {
    position: relative;
    padding: 120px 0 140px;
    background: 
        linear-gradient(135deg, 
            rgba(19, 206, 102, 0.03) 0%, 
            rgba(255, 123, 0, 0.02) 50%,
            rgba(19, 206, 102, 0.03) 100%
        ),
        #ffffff;
    overflow: hidden;
}

/* Subtle Background Elements */
.blog-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 123, 0, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(19, 206, 102, 0.02) 0%, transparent 40%);
    animation: blogFloating 30s ease-in-out infinite;
    z-index: 1;
}

.blog-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="blog-grid" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="rgba(19, 206, 102, 0.015)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23blog-grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.blog-preview .container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
}

/* Section Header with Advanced Typography */
.blog-preview .section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #13CE66 50%, #FF7B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.2;
    letter-spacing: -1px;
}

.blog-preview .section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, transparent 0%, #13CE66 25%, #FF7B00 75%, transparent 100%);
    border-radius: 10px;
    animation: blogTitleGlow 3s ease-in-out infinite alternate;
}

.blog-preview .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #13CE66 0%, #FF7B00 100%);
    border-radius: 10px;
    animation: blogTitleExpand 2s ease-out forwards;
}

/* Ultra Modern Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}

/* Clean Modern Blog Card Design */
.blog-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

/* Animated Border Gradient */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        #13CE66, #FF7B00, #3490DC, #13CE66);
    background-size: 300% 300%;
    border-radius: 24px;
    padding: 2px;
    z-index: -1;
    animation: blogGradientBorder 4s ease infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.blog-card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    z-index: -1;
}

/* Subtle Hover Effects */
.blog-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(19, 206, 102, 0.1),
        0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

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

/* Image Container with Advanced Effects */
.blog-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(19, 206, 102, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(255, 123, 0, 0.1) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.blog-card:hover .blog-image::before {
    opacity: 1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) contrast(1.02) saturate(1.1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1.15) contrast(1.08) saturate(1.2);
}

/* Content Area with Glassmorphism */
.blog-content {
    padding: 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

/* Blog Date with Modern Badge */
.blog-date {
    display: inline-block;
    background: linear-gradient(135deg, #13CE66 0%, #FF7B00 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(19, 206, 102, 0.3);
    animation: blogDatePulse 2s ease-in-out infinite;
}

/* Typography with Advanced Styling */
.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #2c3e50;
    transition: all 0.4s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
}

.blog-content h3 a {
    color: inherit;
    text-decoration: none;
    background: linear-gradient(135deg, #2c3e50 0%, #13CE66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-content h3 a {
    background: linear-gradient(135deg, #13CE66 0%, #FF7B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-excerpt {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.4s ease;
}

/* Revolutionary Read More Button */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #13CE66;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 50px;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #13CE66, #FF7B00) border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #13CE66 0%, #FF7B00 100%);
    transition: left 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.read-more:hover {
    color: white;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(19, 206, 102, 0.3);
}

.read-more:hover::before {
    left: 0;
}

.read-more svg {
    transition: transform 0.4s ease;
}

.read-more:hover svg {
    transform: translateX(4px);
}

/* CTA Section with Premium Design */
.blog-cta {
    text-align: center;
    padding-top: 3rem;
    position: relative;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #13CE66 50%, transparent 100%);
    border-radius: 2px;
}

.blog-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #13CE66 0%, #FF7B00 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(19, 206, 102, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.blog-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF7B00 0%, #13CE66 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.blog-cta .btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(255, 123, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.blog-cta .btn:hover::before {
    left: 0;
}

/* Keyframe Animations */
@keyframes blogFloating {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, -20px) rotate(1deg); }
    50% { transform: translate(20px, -10px) rotate(-1deg); }
    75% { transform: translate(-10px, 20px) rotate(0.5deg); }
}

@keyframes blogTitleGlow {
    0% { box-shadow: 0 0 20px rgba(19, 206, 102, 0.3); }
    100% { box-shadow: 0 0 30px rgba(255, 123, 0, 0.4); }
}

@keyframes blogTitleExpand {
    0% { width: 0; }
    100% { width: 120px; }
}

@keyframes blogGradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* ========================================
   MODERN CONTACT CTA SECTION
   ======================================== */

.modern-contact-cta {
    background: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.95) 0%, 
        rgba(34, 139, 34, 0.95) 50%, 
        rgba(255, 165, 0, 0.95) 100%
    );
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    margin-top: 80px;
}

.modern-contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 123, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(34, 139, 34, 0.12) 0%, transparent 50%);
    z-index: 1;
}

.modern-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 0.8s ease-out;
}

.cta-badge svg {
    color: rgba(255, 255, 255, 0.8);
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    position: relative;
    color: #ffffff;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff7b00, #228b22);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1.2s both;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    color: #ff7b00;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 123, 0, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 123, 0, 0.4);
    color: #e6690a;
    text-decoration: none;
}

.btn-modern-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(34, 139, 34, 0.6);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-modern-secondary:hover {
    background: rgba(34, 139, 34, 0.2);
    border-color: rgba(34, 139, 34, 0.8);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(34, 139, 34, 0.3);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #ffffff;
}

.contact-item svg {
    color: rgba(255, 255, 255, 0.7);
}

/* Background Elements */
.cta-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    background: rgba(255, 123, 0, 0.08);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    background: rgba(34, 139, 34, 0.06);
    animation: float 4s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    background: rgba(255, 165, 0, 0.07);
    animation: float 5s ease-in-out infinite 2s;
}

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

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

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

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

@media (max-width: 992px) {
    .homepage-content {
        margin-top: -70px; /* Match header.css body padding for this breakpoint */
    }
}

@media (max-width: 768px) {
    .homepage-content {
        margin-top: -65px; /* Match header.css body padding for this breakpoint */
    }
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: -2px;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-slogan {
        font-size: clamp(1rem, 4vw, 1.5rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .solutions-architecture {
        padding: 50px 20px;
        margin-bottom: 70px;
    }

    .data-flow {
        flex-direction: column;
        gap: 30px;
        max-width: 100%;
        padding: 0 10px;
    }

    .flow-stage {
        min-width: 100%;
        max-width: 320px;
        padding: 28px 20px;
        margin: 0 auto;
    }

    .flow-stage.central {
        transform: scale(1.02);
    }

    .flow-stage.central:hover {
        transform: scale(1.05) translateY(-4px);
    }

    .stage-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .flow-stage.central .stage-icon {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }

    .router-icon img {
        width: 42px;
        height: 42px;
    }

    .flow-stage h4 {
        font-size: 1.125rem;
    }

    .flow-stage p {
        font-size: 0.875rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        font-size: 1.25rem;
        margin: 8px 0;
    }

    .solution-item {
        padding: 32px 24px;
    }

    .solution-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .modern-contact-cta {
        padding: 80px 0;
        margin-top: 60px;
    }
    
    .cta-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 20px;
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    
    .cta-features {
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 16px;
    }
    
    .floating-shape {
        display: none;
    }
    
    .about-text h2 {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .homepage-content {
        margin-top: -60px; /* Match header.css body padding for this breakpoint */
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
        letter-spacing: -1px;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .hero-slogan {
        font-size: clamp(0.9rem, 5vw, 1.25rem);
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        margin-bottom: 1.75rem;
        line-height: 1.6;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
    .solutions-title {
        font-size: 2.5rem;
    }

    .solutions-architecture {
        padding: 40px 16px;
        margin-bottom: 50px;
    }

    .data-flow {
        gap: 24px;
        padding: 0 8px;
    }

    .flow-stage {
        padding: 24px 16px;
        max-width: 280px;
    }

    .flow-stage.central {
        transform: scale(1.01);
    }

    .flow-stage.central:hover {
        transform: scale(1.03) translateY(-3px);
    }

    .stage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin: 0 auto 16px;
    }

    .flow-stage.central .stage-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .router-icon img {
        width: 36px;
        height: 36px;
    }

    .flow-stage h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .flow-stage p {
        font-size: 0.8rem;
    }

    .flow-arrow {
        font-size: 1rem;
        margin: 6px 0;
    }

    .solution-item {
        padding: 24px 16px;
    }

    .solution-content h3 {
        font-size: 1.5rem;
    }

    .solutions-cta {
        padding: 48px 24px;
    }

    .cta-content h3 {
        font-size: 1.875rem;
    }
    
    .modern-contact-cta {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .cta-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-bottom: 24px;
    }
    
    .cta-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 28px;
        padding: 0 16px;
    }
    
    .cta-features {
        gap: 12px;
        margin-bottom: 32px;
        padding: 0 16px;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 8px 14px;
        gap: 8px;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
    }
    
    .cta-buttons {
        padding: 0 16px;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .cta-contact-info {
        gap: 12px;
        padding: 0 16px;
    }
    
    .contact-item {
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .about-text h2 {
        font-size: 1.625rem;
    }
    
    /* Mobile Blog Section Styling */
    .blog-preview {
        padding: 80px 0 100px;
    }
    
    .blog-preview .section-title {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
        margin-bottom: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .blog-card {
        border-radius: 20px;
        overflow: hidden;
    }
    
    .blog-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
    
    .blog-date {
        font-size: 0.75rem;
        padding: 4px 10px;
        margin-bottom: 0.8rem;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .read-more {
        padding: 8px 16px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .blog-cta .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* Mobile Blog Section Styling */
    .blog-preview {
        padding: 80px 0 100px;
    }
    
    .blog-preview .section-title {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
        margin-bottom: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .blog-card {
        border-radius: 20px;
        overflow: hidden;
    }
    
    .blog-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
    
    .blog-date {
        font-size: 0.75rem;
        padding: 4px 10px;
        margin-bottom: 0.8rem;
    }
    
    .blog-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .read-more {
        padding: 8px 16px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .blog-cta .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* ========================================
   CUSTOMER LOGOS SECTION
   ======================================== */

.customer-logos-section {
    background: #f8fafc;
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.customers-header {
    text-align: center;
    margin-bottom: 60px;
}

.customers-header h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.customer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    min-height: 100px;
}

.customer-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.customer-logo img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.customer-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

@media (max-width: 768px) {
    .customer-logos-section {
        padding: 60px 0;
    }
    
    .customers-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
    }
    
    .customer-logo {
        padding: 15px;
        min-height: 80px;
    }
    
    .customer-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .customer-logo {
        padding: 12px;
        min-height: 70px;
    }
    
    .customer-logo img {
        max-width: 80px;
        max-height: 40px;
    }
}

/* ========================================
   ENHANCED ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .blog-card,
    .about-image img,
    .blog-image img {
        transition: none;
        transform: none;
    }
    
    .service-card:hover,
    .blog-card:hover {
        transform: none;
    }
}