:root {
    /* Colors */
    --primary-color: #003366;
    /* Deep Corporate Blue */
    --secondary-color: #00AEEF;
    /* Bright Tech Blue - Micro/Microsoft vibes */
    --accent-color: #FF5722;
    /* Call to action orange/red */
    --text-color: #333333;
    --light-text: #666666;
    --bg-color: #ffffff;
    --light-bg: #f4f6f8;
    --dark-bg: #1a1a1a;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --container-width: 1200px;

    /* Transitions */
    --transition-speed: 0.3s;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mt-3 {
    margin-top: var(--spacing-lg);
}

.mt-4 {
    margin-top: var(--spacing-xl);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-speed);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Fix for sticky header covering section titles */
section,
.section {
    scroll-margin-top: 100px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    object-fit: contain;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background-color: #020c1b;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, #0a192f 0%, #020c1b 100%);
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.sphere-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.sphere-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: -50px;
    left: -50px;
    animation-delay: -2s;
}

.sphere-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 40%;
    left: 40%;
    opacity: 0.2;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

/* --- HERO V2 STYLES --- */
.hero-v2 {
    background-color: transparent !important;
}

.hero-v2 .hero-content {
    /* Slightly push content up if needed */
    margin-top: 50px;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Ken Burns effect */
    animation: kenBurns 20s linear infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 12, 27, 0.9) 0%, rgba(2, 12, 27, 0.6) 50%, rgba(2, 12, 27, 0.8) 100%);
    z-index: 1;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* --- ALTERNATIVE BACKGROUND ANIMATIONS --- */

/* 1. Breathe Effect (Soft pulsing, in and out) */
@keyframes breathe {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* 2. Slow Pan (Moves the image slowly side to side) */
@keyframes slowPan {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 3. Parallax Effect (Moves up and down slightly)*/
@keyframes verticalPan {
    0% {
        background-position: 50% 0%;
    }

    50% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 50% 0%;
    }
}

/* To use these, change the animation in .hero-slide like: 
   animation: breathe 15s ease-in-out infinite; 
   OR 
   animation: slowPan 30s linear infinite; 
   OR
   animation: verticalPan 25s ease-in-out infinite;
*/

/* Staggered Slide Up Animations */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animation-delay-1 {
    animation-delay: 0.2s;
}

.animation-delay-2 {
    animation-delay: 0.4s;
}

.animation-delay-3 {
    animation-delay: 0.6s;
}

.animation-delay-4 {
    animation-delay: 0.8s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    /* Ensure centering */
}

/* Hero Badge styles removed */

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.1;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 40px;
    color: #a8b2d1;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #8892b0;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Services New Layout */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-category {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.service-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Ensure left align */
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.category-header h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0;
}

.partner-logo-box-sm,
.icon-box-sm {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f8fbff;
}

.icon-box-sm {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.partner-logo-sm {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 12px;
    /* Reduced spacing per user feedback */
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
    text-align: left;
}

.service-list li i {
    color: var(--secondary-color);
    margin-top: 6px;
    /* Align icon with title text */
    font-size: 0.9rem;
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

/* New Tabular Layout Styles */
.svc-content {
    display: flex;
    align-items: flex-start;
    width: 100%;
    /* Ensure content takes full width */
}

.svc-title {
    flex: 0 0 200px;
    /* Fixed width column for titles */
    font-weight: 700;
    color: var(--primary-color);
    border-right: 2px solid #eee;
    /* Vertical separator line */
    padding-right: 15px;
    margin-right: 15px;
    display: inline-block;
}

.svc-desc {
    flex: 1;
    /* Description takes remaining space */
    color: var(--text-color);
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .svc-content {
        flex-direction: column;
    }

    .svc-title {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 5px;
        width: 100%;
        flex: none;
    }
}

.service-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Why Us Section */
/* Section Spacing Update */
.section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

/* Ensure all sections use this class or update generic selector if used */
section {
    padding: 50px 0;
}

.section-title {
    margin-bottom: 40px;
}

/* Mikro Product Family */
.mikro-products {
    background-color: #fafbfc;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    border: 2px solid #E30613;
    /* Mikro Red */
    transform: scale(1.02);
}

.product-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    background: #E30613;
    /* Mikro Red */
    color: white;
    text-align: center;
    padding: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-header {
    background: #fff;
    /* Clean white background for logos */
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.product-logo {
    height: 40px;
    /* Fixed height for consistency */
    width: auto;
    object-fit: contain;
    margin-bottom: 5px;
}

/* Remove old specific bg classes */

.product-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-body {
    padding: 25px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-desc {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
    text-align: center;
    min-height: 60px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.product-features li {
    margin-bottom: 12px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.product-features li i {
    color: #E30613;
    /* Mikro Red */
    font-size: 0.9rem;
}

/* Button overrides for product cards */
.product-card .btn-primary {
    background-color: #E30613;
    border-color: #E30613;
    color: #fff;
}

.product-card .btn-primary:hover {
    background-color: #c40511;
    border-color: #c40511;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
}

/* Knowledge Base / Blog */
.knowledge-base {
    background-color: var(--white);
    border-top: 1px solid #eee;
}

.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.kb-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 12px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.kb-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: #ddd;
}

.kb-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 174, 239, 0.1);
    color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.kb-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.kb-content p {
    font-size: 0.9rem;
    margin: 0;
    color: #777;
    line-height: 1.5;
}

/* Advanced Server Graphic CSS */
/* About Us Network Graphic */
.tech-graphic-about-network {
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, #ffffff, #eef2f6);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e5eb;
}

.network-hub {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 51, 102, 0.15);
    z-index: 10;
    position: relative;
    border: 1px solid #f0f0f0;
}

.network-hub img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.network-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px dashed #ced4da;
    border-radius: 50%;
    animation: rotate 30s linear infinite;
    /* Continuous Orbit */
}

.network-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    z-index: 5;
    border: 1px solid #eee;
    animation: counter-rotate 30s linear infinite;
    /* Keep icons upright */
}

.network-node:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.network-node img {
    width: 35px;
    height: auto;
    max-height: 35px;
    object-fit: contain;
}

.network-node i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

/* Orbit Positioning - Nodes placed on the rim of 320px circle */
.n1 {
    top: -35px;
    left: 50%;
    margin-left: -35px;
}

.n2 {
    bottom: 25px;
    right: 25px;
}

.n3 {
    bottom: 25px;
    left: 25px;
}

.floating-badge-about {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-color);
    animation: float 6s ease-in-out infinite 0.5s;
    border-left: 4px solid var(--primary-color);
    z-index: 15;
    /* Above orbit */
}

.floating-badge-about i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes counter-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* Why Us Section Fix */
.section-title {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content .subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.why-content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.f-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.f-text h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.tech-graphic-css {
    width: 100%;
    height: 500px;
    background: radial-gradient(circle at 30% 30%, #e6f4f1, #f0f4f8);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.pulse-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 174, 239, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.c1 {
    width: 200px;
    height: 200px;
    animation: pulse 4s infinite;
}

.c2 {
    width: 350px;
    height: 350px;
    animation: pulse 4s infinite 1s;
}

.c3 {
    width: 500px;
    height: 500px;
    animation: pulse 4s infinite 2s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: float 6s infinite ease-in-out;
}

.glass-card i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.g1 {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.g2 {
    bottom: 30%;
    right: 20%;
    animation-delay: -2s;
}

.g3 {
    top: 15%;
    right: 15%;
    animation-delay: -1s;
}

.g4 {
    bottom: 15%;
    left: 15%;
    animation-delay: -3s;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #eef2f6;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step p {
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-list i {
    color: var(--secondary-color);
}

.image-placeholder {
    display: none;
}

/* 
   Since image generation failed, we use a CSS-only decorative element 
   Replacing .about-img-real with a gradient box 
*/
.about-img-real {
    display: none;
    /* Hide broken image tag if present */
}

.about-img-placeholder-css {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-img-placeholder-css::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

.about-img-placeholder-css::after {
    content: '\f1ad';
    /* FontAwesome Building Icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.image-placeholder::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


/* Services Section */
.services {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--secondary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 174, 239, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.service-card:hover .icon-box {
    background-color: var(--secondary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Success Stories (White) */
.success-stories {
    background-color: var(--white);
    position: relative;
    color: var(--text-color);
    border-top: 1px solid #e1e5eb;
}

.story-bg-overlay {
    display: none;
    /* Remove white overlay */
}

.success-stories .section-title h2 {
    color: var(--primary-color);
}

.success-stories .section-title p {
    color: var(--light-text);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.story-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    background: #fcfcfc;
    transition: transform var(--transition-speed);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.story-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.story-header h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.category {
    background-color: var(--light-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.story-body h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.story-body p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--light-text);
}

.story-body strong {
    color: var(--text-color);
}

/* Section Common */
section {
    padding: 20px 0;
}

/* Stats */
.stats {
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Section General Styles */
.section {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    margin-bottom: 20px;
    text-align: center;
}

.section-title p {
    margin-bottom: 0;
}

/* Mikro Product Family (Gray/Blue) */
.mikro-products {
    background-color: #eef2f6;
    border-top: 1px solid #e1e5eb;
    border-bottom: 1px solid #e1e5eb;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Why Us Section (White) */
.why-us {
    background-color: #ffffff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Process Section */
.process {
    background-color: #eef2f6;
    /* Gray/Blue */
    border-top: 1px solid #e1e5eb;
    border-bottom: 1px solid #e1e5eb;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Knowledge Base / Blog Section */
.knowledge-base {
    background-color: #ffffff;
    /* White */
}

.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* About Section (Gray/Blue) */
.about {
    background-color: #eef2f6;
    border-top: 1px solid #e1e5eb;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Contact Section (Gray/Blue) to maintain Zebra stripe */
.contact {
    background-color: #eef2f6;
    position: relative;
    border-top: 1px solid #e1e5eb;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background: #ffffff;
    /* White box inside gray section */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e5eb;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--light-text);
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

/* Footer */
footer {
    background-color: #020c1b;
    background: radial-gradient(circle at 50% 50%, #0a192f 0%, #020c1b 100%);
    color: #bbb;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #bbb;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-list li i {
    color: var(--secondary-color);
    margin-top: 4px;
}

/* Mobile Responsiveness */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .stats-container {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        transition: all 0.3s;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        clip-path: circle(0px at 100% 0px);
        transition: all 0.5s ease-in-out;
    }

    .nav-links.active {
        clip-path: circle(1000px at 100% 0px);
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* References Section */
.references {
    background-color: var(--white);
    padding: 60px 0;
    overflow: hidden;
}

.references-slider {
    position: relative;
    width: 100%;
    margin-top: 20px;
    height: 100px;
    background: transparent;
    display: flex;
    align-items: center;
}

.slide-track {
    display: flex;
    width: calc(250px * 14);
    animation: scroll 40s linear infinite;
}

.slide {
    width: 250px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.ref-placeholder {
    width: 100%;
    height: 100%;
    background: #f4f6f8;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8892b0;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.ref-placeholder:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}