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

/* Better Persian Font Rendering */
body, input, textarea, select, button {
    font-family: 'Vazirmatn', 'Vazir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

:root {
    /* UptimeRobot Dark Navy Theme */
    --primary-color: #5FD788;        /* Bright Green */
    --primary-dark: #4ABA6E;
    --primary-light: #7EE19D;
    --secondary-color: #3B82F6;      /* Blue */
    --secondary-dark: #2563EB;
    --accent-color: #F59E0B;         /* Amber */
    --dark-bg: #1A2332;              /* Navy Blue */
    --dark-card: #22303F;            /* Lighter Navy */
    --dark-accent: #2A3847;
    --light-accent: #F3F4F6;
    --text-primary: #FFFFFF;         /* White */
    --text-secondary: #B4BBC6;       /* Light Gray */
    --text-muted: #8B95A5;           /* Medium Gray */
    --gradient-1: linear-gradient(135deg, #5FD788 0%, #4ABA6E 100%);
    --gradient-2: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    --gradient-3: linear-gradient(135deg, #5FD788 0%, #3B82F6 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #5FD788 100%);
    --gradient-bg: linear-gradient(180deg, #1A2332 0%, #151E2B 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    --glow: 0 0 30px rgba(95, 215, 136, 0.4);
    --glow-green: 0 0 30px rgba(95, 215, 136, 0.5);
    --glow-blue: 0 0 20px rgba(59, 130, 246, 0.4);
}

body {
    font-family: 'Vazirmatn', 'Vazir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-bg);
    background-attachment: fixed;
    position: relative;
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

/* Navigation - Dark Navy */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 35, 50, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(180deg);
    }
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(107, 207, 126, 0.5);
}

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

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

.cta-button {
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(16, 185, 129, 0.3);
    background: var(--primary-dark);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: none;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: transparent;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
    filter: blur(80px);
    display: none;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: transparent;
    bottom: 20%;
    left: 10%;
    animation-delay: 5s;
    filter: blur(80px);
    display: none;
}

.shape-3 {
    width: 450px;
    height: 450px;
    background: transparent;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
    filter: blur(80px);
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #B4BBC6;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.btn-primary {
    background: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(16, 185, 129, 0.3);
    background: var(--primary-dark);
}

.btn-secondary {
    background: #FFFFFF;
    color: #1A2332;
    border: 2px solid #E5E7EB;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #F9FAFB;
    color: #1A2332;
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 188, 242, 0.5));
    animation: statGlow 3s ease-in-out infinite;
}

@keyframes statGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(107, 207, 126, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(107, 207, 126, 0.8));
    }
}

.stat p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-animation {
    width: 100%;
    max-width: 600px;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DevOps Cycle Container */
.devops-cycle {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center DevOps Logo */
.cycle-center {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 40px rgba(95, 215, 136, 0.6);
    animation: centerPulse 3s ease-in-out infinite;
}

.cycle-center i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.25rem;
}

.cycle-center span {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

/* Outer Circle - DevOps Tools */
.cycle-tools {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tool-item {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(26, 35, 50, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    left: 50%;
    top: 50%;
    transform-origin: center;
    transform: 
        translate(-50%, -50%)
        rotate(calc(var(--i) * 30deg))
        translateY(-190px)
        rotate(calc(var(--i) * -30deg));
    animation: toolFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-item:hover {
    transform: 
        translate(-50%, -50%)
        rotate(calc(var(--i) * 30deg))
        translateY(-190px)
        rotate(calc(var(--i) * -30deg))
        scale(1.2);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 25px rgba(95, 215, 136, 0.6);
    z-index: 20;
}

.tool-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.tool-item:hover i {
    color: white;
    transform: scale(1.1);
}

.tool-item span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #E5E7EB;
}

/* Middle Circle - Process Steps */
.cycle-steps {
    position: absolute;
    width: 100%;
    height: 100%;
}

.step-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(95, 215, 136, 0.2), rgba(72, 169, 166, 0.2));
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    left: 50%;
    top: 50%;
    transform-origin: center;
    transform: 
        translate(-50%, -50%)
        rotate(calc(var(--i, 0) * 45deg))
        translateY(-130px)
        rotate(calc(var(--i, 0) * -45deg));
    animation: stepPulse 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.25s);
    box-shadow: 0 5px 15px rgba(95, 215, 136, 0.3);
}

.step-plan { --i: 0; }
.step-code { --i: 1; }
.step-build { --i: 2; }
.step-test { --i: 3; }
.step-release { --i: 4; }
.step-deploy { --i: 5; }
.step-operate { --i: 6; }
.step-monitor { --i: 7; }

.step-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.step-item span {
    font-size: 0.6rem;
    font-weight: 600;
    color: #E5E7EB;
}

/* SVG Connections */
.cycle-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    opacity: 0.3;
    stroke-dasharray: 10 5;
}

.outer-circle {
    animation: rotateDash 20s linear infinite;
}

.middle-circle {
    animation: rotateDash 15s linear infinite reverse;
}

.inner-circle {
    animation: rotateDash 10s linear infinite;
}

/* Animated Particles */
.cycle-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: particleOrbit 8s linear infinite;
    animation-delay: var(--delay, 0s);
}

/* Consultation Cycle */
.consultation-cycle {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.ring-2 {
    width: 75%;
    height: 75%;
    animation-delay: 1s;
}

.ring-3 {
    width: 50%;
    height: 50%;
    animation-delay: 2s;
}

.consultation-center {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 40px rgba(95, 215, 136, 0.6);
    animation: centerPulse 3s ease-in-out infinite;
}

.consultation-center i {
    font-size: 3rem;
    color: white;
}

.consultation-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.consult-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(26, 35, 50, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    top: 50%;
    transform: 
        translate(-50%, -50%)
        rotate(calc(var(--i) * 60deg))
        translateY(-120px);
    animation: consultFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.3s);
}

.consult-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Keyframe Animations */
@keyframes centerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(95, 215, 136, 0.6);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 60px rgba(95, 215, 136, 0.9);
    }
}

@keyframes toolFloat {
    0%, 100% {
        transform: 
            translate(-50%, -50%)
            rotate(calc(var(--i) * 30deg))
            translateY(-190px)
            rotate(calc(var(--i) * -30deg))
            translateZ(0);
    }
    50% {
        transform: 
            translate(-50%, -50%)
            rotate(calc(var(--i) * 30deg))
            translateY(-195px)
            rotate(calc(var(--i) * -30deg))
            translateZ(10px);
    }
}

@keyframes stepPulse {
    0%, 100% {
        transform: 
            translate(-50%, -50%)
            rotate(calc(var(--i) * 45deg))
            translateY(-130px)
            rotate(calc(var(--i) * -45deg))
            scale(1);
        box-shadow: 0 5px 15px rgba(95, 215, 136, 0.3);
    }
    50% {
        transform: 
            translate(-50%, -50%)
            rotate(calc(var(--i) * 45deg))
            translateY(-130px)
            rotate(calc(var(--i) * -45deg))
            scale(1.1);
        box-shadow: 0 8px 25px rgba(95, 215, 136, 0.6);
    }
}

@keyframes rotateDash {
    0% {
        stroke-dashoffset: 0;
        transform: rotate(0deg);
    }
    100% {
        stroke-dashoffset: 100;
        transform: rotate(360deg);
    }
}

@keyframes particleOrbit {
    0% {
        transform: 
            translate(-50%, -50%)
            rotate(0deg)
            translateX(180px)
            scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: 
            translate(-50%, -50%)
            rotate(36deg)
            translateX(180px)
            scale(1);
    }
    90% {
        opacity: 1;
        transform: 
            translate(-50%, -50%)
            rotate(324deg)
            translateX(180px)
            scale(1);
    }
    100% {
        opacity: 0;
        transform: 
            translate(-50%, -50%)
            rotate(360deg)
            translateX(180px)
            scale(0);
    }
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.5;
    }
}

@keyframes consultFloat {
    0%, 100% {
        transform: 
            translate(-50%, -50%)
            rotate(calc(var(--i) * 60deg))
            translateY(-120px)
            scale(1);
    }
    50% {
        transform: 
            translate(-50%, -50%)
            rotate(calc(var(--i) * 60deg))
            translateY(-125px)
            scale(1.1);
    }
}

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

.floating-card {
    position: absolute;
    background: rgba(22, 27, 34, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl), var(--glow);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid rgba(107, 207, 126, 0.3);
    animation: cardFloat 3s infinite ease-in-out, cardGlow 2s infinite;
    transform-style: preserve-3d;
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: var(--shadow-xl), 0 0 20px rgba(107, 207, 126, 0.3);
    }
    50% {
        box-shadow: var(--shadow-xl), 0 0 40px rgba(107, 207, 126, 0.5);
    }
}

.floating-card i {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 188, 242, 0.5));
}

.floating-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

.card-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
    border-color: rgba(107, 207, 126, 0.3);
}

.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: 0.5s;
    border-color: rgba(76, 175, 80, 0.3);
}

.card-3 {
    bottom: 30%;
    right: 30%;
    animation-delay: 1s;
    border-color: rgba(255, 193, 7, 0.3);
}

.card-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
    border-color: rgba(107, 207, 126, 0.3);
}

.card-1:hover { transform: translateZ(20px) rotateY(10deg); }
.card-2:hover { transform: translateZ(20px) rotateY(-10deg); }
.card-3:hover { transform: translateZ(20px) rotateX(10deg); }
.card-4:hover { transform: translateZ(20px) rotateX(-10deg); }

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

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #B4BBC6;
}

/* Services Section */
.services {
    background: #151E2B;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

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

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4ABA6E 100%);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(95, 215, 136, 0.3);
    border: 2px solid transparent;
}

.service-btn::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.5s;
}

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

.service-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(95, 215, 136, 0.5);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #4ABA6E 0%, var(--primary-color) 100%);
}

.service-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

.service-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* نسخه دوم - استایل Alternative */
.service-btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(95, 215, 136, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.service-btn-alt::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.service-btn-alt:hover::after {
    width: 300px;
    height: 300px;
}

.service-btn-alt:hover {
    color: var(--dark-bg);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(95, 215, 136, 0.4);
}

.service-btn-alt i {
    transition: transform 0.3s ease;
}

.service-btn-alt:hover i {
    transform: rotate(360deg) scale(1.2);
}

/* ==================== Team Section ==================== */
.team-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(95, 215, 136, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(72, 169, 166, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.team-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.team-card {
    position: relative;
    perspective: 1000px;
}

.team-card-inner {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(95, 215, 136, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover .team-card-inner {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(95, 215, 136, 0.2);
}

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

.team-avatar {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(95, 215, 136, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar img {
    transform: scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: 0 12px 30px rgba(95, 215, 136, 0.5);
}

.team-social {
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: scale(1);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(95, 215, 136, 0.4);
}

.social-icon:hover {
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 6px 20px rgba(95, 215, 136, 0.6);
}

.team-info {
    position: relative;
    z-index: 1;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--primary-color);
}

.team-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .team-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .team-avatar {
        width: 150px;
        height: 150px;
    }
    
    .team-name {
        font-size: 1.3rem;
    }
    
    .team-role {
        font-size: 0.9rem;
    }
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(95, 215, 136, 0.2) 0%, rgba(74, 186, 110, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(95, 215, 136, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    min-height: 2.7rem;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.service-card > p {
    color: #B4BBC6;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
}

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

.service-features i {
    color: var(--secondary-color);
}

/* Features Section */
.features {
    background: var(--dark-bg);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 20, 25, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(0, 188, 242, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.05) rotateX(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 188, 242, 0.3), var(--glow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 188, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(0, 188, 242, 0.3);
    box-shadow: 0 10px 30px rgba(0, 188, 242, 0.2);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 15px 40px rgba(0, 188, 242, 0.4), var(--glow);
}

.feature-icon i {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 188, 242, 0.5));
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-secondary);
}

/* Tech Stack Section - 3D Cards with Perspective */
.tech-stack {
    background: #151E2B;
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

.tech-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
    perspective: 1000px;
}

.tech-slider {
    display: flex;
    gap: 2rem;
    width: fit-content;
    padding: 0 1rem;
    animation: techSlide 60s linear infinite;
}

.tech-slider:hover {
    animation-play-state: paused;
}

@keyframes techSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 18 - 2rem * 18));
    }
}

/* Modern Tech Cards - Dark Navy Style */
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 160px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Gradient background on hover */
.tech-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.tech-item:hover::before {
    opacity: 0.15;
}

/* Shimmer effect */
.tech-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(212, 180, 131, 0.1),
        transparent
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.tech-item:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(95, 215, 136, 0.3);
}

/* Icon styling */
.tech-item i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.tech-item:hover i {
    transform: scale(1.15);
    color: var(--primary-dark);
}

.tech-item span {
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.tech-item:hover span {
    color: var(--primary-color);
}

/* Add pulse animation to random items */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 180, 131, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(212, 180, 131, 0);
    }
}

.tech-item:nth-child(3n) {
    animation: pulse 3s infinite;
}

.tech-item:nth-child(5n) {
    animation: pulse 3s infinite 1s;
}

/* Public Registry Section */
.public-registry {
    background: var(--dark-bg);
    padding: 6rem 0;
    position: relative;
}

.registry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.registry-text {
    padding-right: 2rem;
}

.registry-main-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.registry-description {
    font-size: 1.15rem;
    color: #B4BBC6;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.registry-features-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #B4BBC6;
    font-size: 1rem;
    font-weight: 500;
}

.feature-item-inline i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.registry-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-registry-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: #1A2332;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(95, 215, 136, 0.4);
}

.btn-registry-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(95, 215, 136, 0.6), 0 0 30px rgba(95, 215, 136, 0.3);
}

.btn-registry-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-registry-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.registry-visual {
    position: relative;
}

.registry-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.registry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(95, 215, 136, 0.2);
    border-color: var(--primary-color);
}

.registry-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.registry-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(95, 215, 136, 0.2) 0%, rgba(74, 186, 110, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    border: 1px solid rgba(95, 215, 136, 0.3);
}

.registry-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.registry-packages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.package-item:hover {
    background: rgba(95, 215, 136, 0.1);
    transform: translateX(5px);
    border-color: rgba(95, 215, 136, 0.3);
}

.package-icon {
    width: 40px;
    height: 40px;
    background: rgba(95, 215, 136, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    border: 1px solid rgba(95, 215, 136, 0.3);
}

.package-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-name {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1rem;
}

.package-version {
    font-size: 0.85rem;
    color: #B4BBC6;
}

.package-status {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.registry-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #B4BBC6;
    font-weight: 600;
}

/* Responsive Registry */
@media (max-width: 992px) {
    .registry-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .registry-text {
        padding-right: 0;
        text-align: center;
    }
    
    .registry-main-title {
        font-size: 2.5rem;
    }
    
    .registry-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .registry-main-title {
        font-size: 2rem;
    }
    
    .registry-card {
        padding: 1.5rem;
    }
    
    .registry-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Products Section - Dark Navy */
.products {
    background: #151E2B;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

/* Products Header */
.products-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.products-main-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.highlight-green {
    color: var(--primary-color);
}

.products-description {
    font-size: 1.15rem;
    color: #B4BBC6;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Product Row - Alternating Layout */
.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
}

.product-row::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    bottom: -2.5rem;
    left: 0;
    opacity: 0.3;
}

.product-row:last-child::before {
    display: none;
}

/* Right Side Layout - Text Left, Visual Right */
.product-row-right {
    direction: ltr;
}

/* Left Side Layout - Visual Left, Text Right */
.product-row-left {
    direction: ltr;
}

.product-row-left .product-text {
    order: 2;
}

.product-row-left .product-visual {
    order: 1;
}

/* Product Text Content */
.product-text {
    padding: 2rem;
    direction: rtl;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(95, 215, 136, 0.3);
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-title {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-desc {
    font-size: 1.1rem;
    color: #B4BBC6;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #E5E7EB;
}

.product-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.product-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-product-primary,
.btn-product-secondary {
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-product-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 20px rgba(95, 215, 136, 0.3);
}

.btn-product-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(95, 215, 136, 0.5);
}

.btn-product-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-product-secondary:hover {
    background: rgba(95, 215, 136, 0.1);
    transform: translateY(-2px);
}

/* Product Visual */
.product-visual {
    position: relative;
}

/* Old styles kept for backward compatibility */
.products-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.products-text {
    padding-right: 2rem;
    margin-bottom: 2.5rem;
}

.products-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-check-demo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #1A2332;
    padding: 1rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(95, 215, 136, 0.4);
}

.btn-check-demo:hover {
    box-shadow: 0 8px 20px rgba(95, 215, 136, 0.6);
    transform: translateY(-2px);
    background: var(--primary-light);
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #FFFFFF;
    padding: 1rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.products-status {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status-card {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.status-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 20px rgba(95, 215, 136, 0.2);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E2E8F0;
}

.status-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.05rem;
}

.status-logo i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.status-badge {
    background: #F0FFF4;
    color: #22543D;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #C6F6D5;
}

.status-badge.operational {
    background: #F0FFF4;
    color: #22543D;
    border-color: #C6F6D5;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-icon {
    font-size: 0.5rem;
    color: var(--primary-color);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.service-name {
    color: #B4BBC6;
    font-size: 0.95rem;
    font-weight: 500;
}

.service-status {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.uptime-bar {
    margin-top: 1.5rem;
}

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

.uptime-label {
    color: #B4BBC6;
    font-size: 0.9rem;
    font-weight: 500;
}

.uptime-value {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
}

.uptime-graph {
    display: flex;
    gap: 2px;
    height: 40px;
    animation-delay: 0.4s;
}

.uptime-graph {
    background: #E2E8F0;
    border-radius: 4px;
}

.uptime-segment {
    flex: 1;
    background: var(--primary-color);
    border-radius: 2px;
    animation: uptimeLoad 2s ease-in-out infinite;
    position: relative;
}

.uptime-segment:nth-child(even) {
    animation-delay: 0.1s;
}

@keyframes uptimeLoad {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleY(0.95);
    }
}

/* Responsive for Products */
@media (max-width: 992px) {
    .products-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .products-text {
        padding-right: 0;
        text-align: center;
    }
    
    .products-main-title {
        font-size: 2.5rem;
    }
    
    .products-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .products-main-title {
        font-size: 2rem;
    }
    
    .products-description {
        font-size: 1rem;
    }
    
    .status-card {
        padding: 1.5rem;
    }
    
    .products-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-check-demo,
    .btn-explore {
        width: 100%;
        justify-content: center;
    }
}

/* Why Outsource Section */
.why-outsource {
    background: #151E2B;
    padding: 5rem 0;
}

.outsource-content {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: center;
}

.outsource-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 75%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.video-placeholder i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.video-placeholder p {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.outsource-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.outsource-text .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.outsource-reasons {
    margin-bottom: 2.5rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.reason-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateX(-10px);
}

.reason-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon i {
    font-size: 1.75rem;
    color: white;
}

.reason-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.reason-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team {
    background: var(--dark-bg);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.team-member {
    background: transparent;
    border: none;
    padding: 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: visible;
    margin-bottom: 1.5rem;
}

.member-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.15);
    box-sizing: border-box;
    z-index: 1;
}

.member-image::after {
    content: '\f0c1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #4ABA6E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(95, 215, 136, 0.4);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 2;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

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

.member-overlay {
    display: none;
}

.social-link {
    display: none;
}

.member-info {
    width: 100%;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    margin-top: 1rem;
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    display: none;
}

.member-social {
    display: none;
}

.btn-linkedin {
    display: none;
}

/* Partners Section */
/* Partners Section - Creative Design */
.partners {
    background: #151E2B;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(95, 215, 136, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(95, 215, 136, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.partner-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(95, 215, 136, 0.3);
}

.partner-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(95, 215, 136, 0.05) 100%);
}

.partner-card.featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-1);
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

.partner-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: #1A2332;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(95, 215, 136, 0.4);
    z-index: 2;
}

.partner-logo-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.partner-card:hover .partner-logo-wrapper {
    background: rgba(95, 215, 136, 0.15);
    border-color: var(--primary-color);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 0 30px rgba(95, 215, 136, 0.3);
}

.partner-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-wrapper img {
    filter: brightness(1.5);
    transform: scale(1.1);
}

.partner-card h3.partner-name {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.partner-description {
    color: #B4BBC6;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(95, 215, 136, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.partner-link:hover {
    background: var(--primary-color);
    color: #1A2332;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(95, 215, 136, 0.4);
    transform: translateY(-2px);
}

.partner-link i {
    font-size: 0.85rem;
}

/* Responsive Partners */
@media (max-width: 768px) {
    /* Product Row Responsive */
    .product-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .product-row-left .product-text,
    .product-row-right .product-text {
        order: 1;
    }
    
    .product-row-left .product-visual,
    .product-row-right .product-visual {
        order: 2;
    }
    
    .products-main-title {
        font-size: 2.5rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-text {
        padding: 1rem 0;
    }
    
    .partners-showcase {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .partner-card {
        padding: 2rem;
    }
    
    .partner-logo-wrapper {
        width: 80px;
        height: 80px;
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--dark-bg);
}

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

.testimonial-card {
    background: rgba(15, 20, 25, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 188, 242, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-style: preserve-3d;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02) rotateX(2deg);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 188, 242, 0.3), var(--glow);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #FF6B35;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.5));
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: var(--gradient-1);
    background-clip: padding-box;
    box-shadow: 0 5px 15px rgba(0, 188, 242, 0.3);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Blog Section */
.blog {
    background: #151E2B;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    min-height: 400px;
}

.loading-spinner {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem;
}

.loading-spinner i {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: spin 2s linear infinite;
}

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

.blog-card {
    background: var(--dark-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.read-more {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 188, 242, 0.5));
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Free Consultation CTA Section */
.consultation-cta {
    background: linear-gradient(135deg, #1A2332 0%, #243447 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.consultation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(95, 215, 136, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.consultation-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(95, 215, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

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

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.consultation-animation {
    width: 100%;
    max-width: 550px;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-animation::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(95, 215, 136, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
    z-index: -1;
}

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

.consultation-animation #consultation-lottie {
    width: 100%;
    height: 100%;
}

.consultation-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.consultation-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
}

.highlight-devops {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

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

/* Deevops Highlight with Green Underline */
.highlight-deevops {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight-deevops::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(95, 215, 136, 0.5);
}

/* ==================== PackOps Training Section ==================== */
.packops-training {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(95, 215, 136, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.packops-training::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(95, 215, 136, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.highlight-packops {
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight-packops::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(95, 215, 136, 0.6);
}

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

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

.training-animation {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(95, 215, 136, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(95, 215, 136, 0.4);
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.animated-circle i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.circle-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.circle-2 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.75s;
}

.circle-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.circle-4 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 2.25s;
}

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

.center-logo {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(95, 215, 136, 0.6);
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
    position: relative;
}

.center-logo i {
    font-size: 4rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.center-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(95, 215, 136, 0.6);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 80px rgba(95, 215, 136, 0.8);
    }
}

.connecting-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.connecting-lines::before,
.connecting-lines::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    animation: lineGlow 2s ease-in-out infinite;
}

.connecting-lines::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.packops-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.packops-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(95, 215, 136, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.packops-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(95, 215, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.packops-feature:hover::before {
    left: 100%;
}

.packops-feature:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(95, 215, 136, 0.2);
}

.feature-icon-animated {
    min-width: 70px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(95, 215, 136, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.packops-feature:hover .feature-icon-animated {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.feature-icon-animated i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.packops-feature:hover .feature-icon-animated i {
    color: var(--dark-bg);
}

.packops-feature h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.packops-feature p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.packops-cta {
    margin-top: 4rem;
    text-align: center;
}

.btn-packops {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(95, 215, 136, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-packops::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-packops:hover::before {
    width: 400px;
    height: 400px;
}

.btn-packops:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(95, 215, 136, 0.6);
}

.btn-packops i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-packops:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 968px) {
    .packops-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .training-animation {
        width: 300px;
        height: 300px;
    }
    
    .animated-circle {
        width: 80px;
        height: 80px;
    }
    
    .animated-circle i {
        font-size: 2rem;
    }
    
    .center-logo {
        width: 140px;
        height: 140px;
    }
    
    .center-logo i {
        font-size: 3rem;
    }
    
    .center-logo span {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .packops-training {
        padding: 4rem 0;
    }
    
    .training-animation {
        width: 250px;
        height: 250px;
    }
    
    .animated-circle {
        width: 60px;
        height: 60px;
    }
    
    .animated-circle i {
        font-size: 1.5rem;
    }
    
    .center-logo {
        width: 110px;
        height: 110px;
    }
    
    .center-logo i {
        font-size: 2.5rem;
    }
    
    .center-logo span {
        font-size: 1rem;
    }
    
    .packops-feature {
        flex-direction: column;
        text-align: center;
    }
}

@keyframes underlineSlide {
    0%, 100% {
        width: 0%;
        left: 0%;
    }
    50% {
        width: 100%;
        left: 0%;
    }
}

.consultation-description {
    font-size: 1.15rem;
    color: #B4BBC6;
    line-height: 1.8;
    margin: 0;
}

.consultation-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-consultation-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: #1A2332;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(95, 215, 136, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-consultation-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-consultation-primary:hover::before {
    transform: translateX(100%);
}

.btn-consultation-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(95, 215, 136, 0.6), 0 0 40px rgba(95, 215, 136, 0.3);
    background: var(--primary-light);
}

.btn-consultation-primary i {
    font-size: 1.2rem;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

.btn-consultation-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: #FFFFFF;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-consultation-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.consultation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(95, 215, 136, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(95, 215, 136, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(95, 215, 136, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(95, 215, 136, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    color: #B4BBC6;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Responsive Consultation */
@media (max-width: 992px) {
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .consultation-animation {
        order: -1;
        max-width: 100%;
        height: 400px;
        margin: 0 auto;
    }
    
    .consultation-text {
        text-align: center;
    }
    
    .consultation-title {
        font-size: 2.5rem;
    }
    
    .consultation-buttons {
        justify-content: center;
    }
    
    .consultation-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .consultation-cta {
        padding: 4rem 0;
    }
    
    .consultation-title {
        font-size: 2rem;
    }
    
    .consultation-description {
        font-size: 1rem;
    }
    
    .consultation-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-consultation-primary,
    .btn-consultation-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .consultation-animation {
        height: 300px;
    }
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
}

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

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-secondary);
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-5px);
}

.contact-form {
    background: rgba(15, 20, 25, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 188, 242, 0.2);
    box-shadow: 0 10px 40px rgba(0, 188, 242, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 188, 242, 0.2);
}

.form-group label {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    right: 0.75rem;
    font-size: 0.875rem;
    color: var(--primary-color);
    background: var(--dark-card);
    padding: 0 0.5rem;
}

.contact-form button {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.contact-form button:hover::before {
    transform: translateX(100%);
}

.contact-form button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 188, 242, 0.5), var(--glow);
}

/* Footer */
.footer {
    background: #1F2937;
    padding: 3rem 0 1rem;
    border-top: 1px solid #374151;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: #9CA3AF;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        display: none;
    }

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

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

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-animation {
        width: 120px;
        height: 120px;
    }

    .team-grid {
        flex-direction: column;
        gap: 3rem;
    }
    
    .member-image {
        width: 160px;
        height: 160px;
    }
    
    .member-image::after {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .team-grid {
        justify-content: center;
        gap: 2.5rem;
    }
    
    .member-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .hamburger {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .reason-item {
        flex-direction: column;
        text-align: center;
    }

    .reason-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card {
        padding: 2rem;
    }

    .product-animation {
        width: 100px;
        height: 100px;
    }

    .monitor-screen {
        width: 80px;
        height: 60px;
    }

    .registry-box {
        width: 60px;
        height: 60px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }
}

/* ========================================
   CSS Animations - DevOps Workflow & Consultation
   ======================================== */

/* DevOps Workflow Animation */
.devops-workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.workflow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(95, 215, 136, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    min-width: 100px;
    animation: workflow-pulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.workflow-item:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 10px 30px rgba(95, 215, 136, 0.3);
}

.workflow-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: icon-rotate 4s linear infinite;
}

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

.workflow-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    animation: arrow-flow 1.5s ease-in-out infinite;
}

/* Stagger animation for each workflow item */
.code-icon {
    animation-delay: 0s;
}

.build-icon {
    animation-delay: 0.5s;
}

.test-icon {
    animation-delay: 1s;
}

.deploy-icon {
    animation-delay: 1.5s;
}

.monitor-icon {
    animation-delay: 2s;
}

/* Clouds Animation */
.devops-clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: rgba(95, 215, 136, 0.15);
    border-radius: 100px;
    animation: float-cloud 20s infinite ease-in-out;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(95, 215, 136, 0.15);
    border-radius: 100px;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud-1::after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 10px;
}

.cloud-2 {
    width: 120px;
    height: 45px;
    top: 50%;
    right: 10%;
    animation-delay: 7s;
}

.cloud-2::before {
    width: 60px;
    height: 55px;
    top: -28px;
    left: 15px;
}

.cloud-2::after {
    width: 70px;
    height: 45px;
    top: -18px;
    right: 15px;
}

.cloud-3 {
    width: 90px;
    height: 35px;
    bottom: 20%;
    left: 15%;
    animation-delay: 14s;
}

.cloud-3::before {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 8px;
}

.cloud-3::after {
    width: 55px;
    height: 38px;
    top: -15px;
    right: 8px;
}

/* Servers Animation */
.devops-servers {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 1;
}

.server {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9), rgba(26, 35, 50, 0.7));
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem;
    animation: server-blink 2s ease-in-out infinite;
}

.server-1 {
    animation-delay: 0s;
}

.server-2 {
    animation-delay: 0.7s;
}

.server-3 {
    animation-delay: 1.4s;
}

.server-light {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: light-blink 1s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

.server-light:nth-child(2) {
    animation-delay: 0.3s;
}

.server-light:nth-child(3) {
    animation-delay: 0.6s;
}

/* Consultation Animation */
.consultation-animation {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.consultation-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.3;
    animation: orbit 10s linear infinite;
}

.circle-1 {
    width: 150px;
    height: 150px;
    animation-duration: 8s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    animation-duration: 6s;
    animation-direction: reverse;
}

.circle-3 {
    width: 90px;
    height: 90px;
    animation-duration: 4s;
}

.consultation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(95, 215, 136, 0.5);
    animation: icon-pulse 2s ease-in-out infinite;
}

.consultation-icon i {
    font-size: 2.5rem;
    color: white;
}

.pulse-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.ring-1 {
    animation-delay: 0s;
}

.ring-2 {
    animation-delay: 0.7s;
}

.ring-3 {
    animation-delay: 1.4s;
}

/* Keyframe Animations */
@keyframes workflow-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(95, 215, 136, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(95, 215, 136, 0.4);
    }
}

@keyframes icon-rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes arrow-flow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(10px);
    }
}

@keyframes float-cloud {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(30px) translateY(-10px);
    }
}

@keyframes server-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(0.98);
    }
}

@keyframes light-blink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--primary-color);
    }
    50% {
        opacity: 0.3;
        box-shadow: 0 0 5px var(--primary-color);
    }
}

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

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(95, 215, 136, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(95, 215, 136, 0.8);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Responsive adjustments for DevOps Cycle */
@media (max-width: 768px) {
    .hero-animation {
        height: 400px;
        max-width: 100%;
    }
    
    .devops-cycle {
        width: 350px;
        height: 350px;
    }
    
    .cycle-center {
        width: 80px;
        height: 80px;
    }
    
    .cycle-center i {
        font-size: 2rem;
    }
    
    .cycle-center span {
        font-size: 0.7rem;
    }
    
    .tool-item {
        width: 55px;
        height: 55px;
        transform: 
            translate(-50%, -50%)
            rotate(calc(var(--i) * 30deg))
            translateY(-150px)
            rotate(calc(var(--i) * -30deg));
    }
    
    .tool-item i {
        font-size: 1.4rem;
    }
    
    .tool-item span {
        font-size: 0.6rem;
    }
    
    .step-item {
        width: 50px;
        height: 50px;
        transform: 
            translate(-50%, -50%)
            rotate(calc(var(--i, 0) * 45deg))
            translateY(-100px)
            rotate(calc(var(--i, 0) * -45deg));
    }
    
    .step-item i {
        font-size: 1.2rem;
    }
    
    .step-item span {
        font-size: 0.55rem;
    }
    
    .particle {
        width: 6px;
        height: 6px;
    }
    
    .consultation-cycle {
        width: 250px;
        height: 250px;
    }
    
    .consultation-center {
        width: 80px;
        height: 80px;
    }
    
    .consultation-center i {
        font-size: 2.5rem;
    }
    
    .consult-icon {
        width: 45px;
        height: 45px;
        transform: 
            translate(-50%, -50%)
            rotate(calc(var(--i) * 60deg))
            translateY(-100px);
    }
    
    .consult-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-animation {
        height: 320px;
    }
    
    .devops-cycle {
        width: 300px;
        height: 300px;
    }
    
    .cycle-center {
        width: 70px;
        height: 70px;
    }
    
    .cycle-center i {
        font-size: 1.75rem;
    }
    
    .tool-item {
        width: 48px;
        height: 48px;
        transform: 
            translate(-50%, -50%)
            rotate(calc(var(--i) * 30deg))
            translateY(-125px)
            rotate(calc(var(--i) * -30deg));
    }
    
    .tool-item i {
        font-size: 1.2rem;
    }
    
    .tool-item span {
        font-size: 0.55rem;
    }
    
    .step-item {
        width: 45px;
        height: 45px;
        transform: 
            translate(-50%, -50%)
            rotate(calc(var(--i, 0) * 45deg))
            translateY(-85px)
            rotate(calc(var(--i, 0) * -45deg));
    }
    
    .step-item i {
        font-size: 1.1rem;
    }
    
    .step-item span {
        font-size: 0.5rem;
    }
    
    .consultation-cycle {
        width: 200px;
        height: 200px;
    }
    
    .consultation-center {
        width: 70px;
        height: 70px;
    }
    
    .consultation-center i {
        font-size: 2rem;
    }
    
    .consult-icon {
        width: 40px;
        height: 40px;
        transform: 
            translate(-50%, -50%)
            rotate(calc(var(--i) * 60deg))
            translateY(-80px);
    }
    
    .consult-icon i {
        font-size: 1.1rem;
    }
}


