/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 50%, #fff5f5 100%);
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(90deg, #ffffff 0%, #e6f3ff 100%);
    box-shadow: 0 2px 15px rgba(135, 206, 250, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 50px;
    width: auto;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4da6ff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #1e90ff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #e6f3ff;
    color: #1e90ff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Enhanced Animated Background */
.tech-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.08;
    overflow: hidden;
}

.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.circuit-path {
    stroke-dasharray: 20 10;
    stroke-dashoffset: 0;
    animation: circuitFlow 15s linear infinite;
}

.circuit-path-2 {
    animation: circuitFlow 20s linear infinite reverse;
}

@keyframes circuitFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 300; }
}

.circuit-node {
    animation: nodePulse 3s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.5); }
}

.tech-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(77,166,255,0.1) 1px, transparent 1px),
        linear-gradient(rgba(77,166,255,0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    color: #4da6ff;
    font-size: 24px;
    animation: float 20s infinite linear;
    opacity: 0.4;
    text-shadow: 0 0 10px rgba(77, 166, 255, 0.3);
    transition: all 0.3s ease;
}

.floating-icon:nth-child(even) {
    color: #87ceeb;
    animation-direction: reverse;
}

.floating-icon:nth-child(3n) {
    color: #ff4757;
    opacity: 0.3;
}

.tech-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #4da6ff;
    border-radius: 50%;
    animation: particleFloat 8s infinite linear;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% { 
        transform: translateY(100vh) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translateY(-100px) translateX(50px) scale(0);
        opacity: 0;
    }
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Hero Section */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #87ceeb 0%, #4da6ff 50%, #ff4757 100%);
            color: white;
            overflow: hidden;
            position: relative;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            margin-bottom: 0;
        }
        
        .hero-container {
            position: relative;
            z-index: 3;
        }
        
        /* Professional Tech Background */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at top left, rgba(77, 166, 255, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(135, 206, 235, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            z-index: 1;
        }
        
        /* Advanced Circuit Pattern */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                /* Horizontal lines */
                linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.15) 49%, rgba(255,255,255,0.15) 51%, transparent 52%),
                /* Vertical lines */
                linear-gradient(0deg, transparent 48%, rgba(255,255,255,0.15) 49%, rgba(255,255,255,0.15) 51%, transparent 52%),
                /* Diagonal circuits */
                linear-gradient(45deg, transparent 48%, rgba(135,206,235,0.2) 49%, rgba(135,206,235,0.2) 51%, transparent 52%),
                /* Connection points */
                radial-gradient(circle at 25% 25%, rgba(255,255,255,0.8) 2px, transparent 3px),
                radial-gradient(circle at 75% 75%, rgba(255,255,255,0.8) 2px, transparent 3px),
                radial-gradient(circle at 75% 25%, rgba(255,255,255,0.8) 2px, transparent 3px),
                radial-gradient(circle at 25% 75%, rgba(255,255,255,0.8) 2px, transparent 3px);
            background-size: 80px 80px, 80px 80px, 120px 120px, 160px 160px, 160px 160px, 160px 160px, 160px 160px;
            opacity: 0.6;
            z-index: 1;
            animation: techFlow 20s linear infinite;
        }
        
        @keyframes techFlow {
            0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
            100% { background-position: 80px 80px, 80px 80px, 120px 120px, 160px 160px, 160px 160px, 160px 160px, 160px 160px; }
        }

        .hero.has-bg-image {
            background-blend-mode: overlay;
        }

        .hero-content {
            position: relative;
            z-index: 3;
        }
        
        /* Floating Tech Elements */
        .tech-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
        }
        
        .tech-element {
            position: absolute;
            color: rgba(255,255,255,0.4);
            font-size: 2.5rem;
            animation: float 6s ease-in-out infinite;
            text-shadow: 0 0 10px rgba(255,255,255,0.3);
            filter: drop-shadow(0 0 8px rgba(77,166,255,0.5));
        }
        
        .tech-element-1 {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .tech-element-2 {
            top: 25%;
            right: 15%;
            animation-delay: 2s;
        }
        
        .tech-element-3 {
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }
        
        .tech-element-4 {
            bottom: 20%;
            right: 25%;
            animation-delay: 1s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Product Overview Section - Back to white */
        .product-overview {
            padding: 80px 0;
            background: white;
            border-bottom: 1px solid #f0f0f0;
        }

        .product-content {
            display: grid;
            grid-template-columns: 500px 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .product-image:hover {
            transform: translateY(-5px);
        }

        .product-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
        }

        .product-description {
            padding: 20px 0;
        }

        .product-description h2 {
            font-size: 2.2rem;
            color: #2c5aa0;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .product-description p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .product-description ul {
            list-style: none;
            margin-top: 25px;
        }

        .product-description li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 1.05rem;
            color: #333;
        }

        .product-description li i {
            color: #4da6ff;
            font-size: 1rem;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .product-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .product-description h2 {
                font-size: 1.8rem;
            }
            
            .product-image img {
                height: 300px;
            }
        }

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 70px 70px;
    animation: heroTechMove 20s linear infinite;
    z-index: 1;
}

@keyframes heroTechMove {
    0% { background-position: 0px 0px, 0px 0px, 0px 0px; }
    100% { background-position: 50px 50px, -30px 30px, 70px -70px; }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #4da6ff, #87ceeb);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(77, 166, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e90ff;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6f3ff 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #4da6ff, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #1e90ff, #87ceeb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e90ff;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.service-link {
    color: #1e90ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #ff6b6b;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c5aa0;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    transition: background 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* CMS Styles */
.cms-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.cms-button:hover {
    transform: scale(1.1);
}

.cms-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.cms-modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.cms-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.cms-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.cms-tab-btn {
    padding: 10px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cms-tab-btn.active {
    color: #667eea;
    border-bottom: 2px solid #667eea;
}

.cms-content {
    min-height: 300px;
}

.cms-form-group {
    margin-bottom: 20px;
}

.cms-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.cms-form-group input,
.cms-form-group textarea,
.cms-form-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.cms-form-group input:focus,
.cms-form-group textarea:focus,
.cms-form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.cms-color-picker {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cms-color-preview {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.cms-save-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cms-save-btn:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

        /* Brands Section */
        .brands-section {
            padding: 80px 0;
            background: white;
        }
        
        .brands-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 50px;
        }
        
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            align-items: center;
        }
        
        .brand-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: linear-gradient(135deg, #f8fdff 0%, #e6f3ff 100%);
        }
        
        .brand-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(30, 144, 255, 0.1);
        }
        
        .brand-item img {
            width: 120px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 20px;
            border-radius: 8px;
        }
        
        .brand-item h4 {
            color: #1e90ff;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .brand-item p {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* SEO Content Styles */
        .seo-content {
            margin: 30px 0;
            text-align: right;
        }
        
        .service-intro {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            color: rgba(255,255,255,0.95);
        }
        
        .advantages-section {
            margin: 40px 0;
        }
        
        .advantages-section h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #fff;
            text-align: center;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .advantage-item {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            backdrop-filter: blur(10px);
        }
        
        .advantage-item i {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .advantage-item h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #fff;
        }
        
        .advantage-item p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.5;
        }
        
        .service-details h2 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .services-list {
            list-style: none;
            padding: 0;
        }
        
        .services-list li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 1rem;
            color: rgba(255,255,255,0.95);
        }
        
        .services-list li i {
            color: #4da6ff;
            margin-left: 12px;
            font-size: 1.1rem;
        }

        /* Company Story Section */
        .company-story {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
            margin-top: 0;
        }
        
        .story-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .story-text {
            text-align: right;
        }
        
        .story-text h2 {
            font-size: 2.2rem;
            color: #4da6ff;
            margin-bottom: 30px;
        }
        
        .story-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #555;
        }
        
        .story-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .story-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .story-image:hover {
            transform: translateY(-10px);
        }
        
        .story-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #e6f3ff 0%, #ffffff 100%);
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid #1e90ff;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(30, 144, 255, 0.15);
        }
        
        .review-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }
        
        .review-stars i {
            color: #ffd700;
            font-size: 1.2rem;
        }
        
        .review-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
            margin-bottom: 25px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #1e90ff;
        }
        
        .author-info h4 {
            color: #1e90ff;
            margin-bottom: 5px;
            font-size: 1rem;
        }
        
        .author-info span {
            color: #666;
            font-size: 0.9rem;
        }
        
        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
            
            .cms-button {
                bottom: 20px;
                left: 20px;
                width: 50px;
                height: 50px;
            }
            
            .cms-modal-content {
                width: 95%;
                padding: 20px;
            }
            
            .brands-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }
            
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Page Header - Blue technology background for service pages */
        .page-header {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #87ceeb 0%, #4da6ff 50%, #1e90ff 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        /* Tech pattern for service page headers */
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
            z-index: 1;
        }
        
        .page-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.08) 49%, rgba(255,255,255,0.08) 51%, transparent 52%),
                linear-gradient(0deg, transparent 48%, rgba(255,255,255,0.08) 49%, rgba(255,255,255,0.08) 51%, transparent 52%);
            background-size: 60px 60px;
            opacity: 0.5;
            z-index: 1;
            animation: headerTechFlow 15s linear infinite;
        }
        
        @keyframes headerTechFlow {
            0% { background-position: 0 0, 0 0; }
            100% { background-position: 60px 60px, 60px 60px; }
        }
        
        .page-header h1,
        .page-header p,
        .page-header-content {
            position: relative;
            z-index: 2;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .page-header p {
            font-size: 1.2rem;
            opacity: 0.95;
        } 