/* === from services.html === */
    
        .hero-small {
            background: linear-gradient(135deg, var(--primary) 0%, #0047cc 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }

        .hero-small h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .services-detail {
            padding: 80px 20px;
        }

        .service-detail-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 100px;
        }

        .service-detail-item.reverse {
            direction: rtl;
        }

        .service-detail-item.reverse > * {
            direction: ltr;
        }

        .service-detail-image {
            font-size: 120px;
            color: var(--primary);
            text-align: center;
            opacity: 0.9;
        }

        .service-detail-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .service-detail-content p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .service-features {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #555;
        }

        .service-features i {
            color: var(--success);
            font-size: 18px;
            flex-shrink: 0;
        }

        .why-choose {
            padding: 80px 20px;
            background: var(--light);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .why-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .why-icon {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .why-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        @media (max-width: 768px) {
            .service-detail-item {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 60px;
            }

            .hero-small h1 {
                font-size: 32px;
            }
        }
    
/* === from portfolio.html === */
    
        .hero-small {
            background: linear-gradient(135deg, var(--primary) 0%, #0047cc 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }

        .hero-small h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .portfolio-section {
            padding: 80px 20px;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 25px;
            background: var(--light);
            border: 2px solid transparent;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            color: var(--text);
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .case-study {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .case-study:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .case-image {
            position: relative;
            height: 250px;
            overflow: hidden;
            background: var(--light);
        }

        .case-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .case-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 102, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .case-study:hover .case-overlay {
            opacity: 1;
        }

        .view-case {
            color: white;
            text-decoration: none;
            padding: 12px 30px;
            border: 2px solid white;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .view-case:hover {
            background: white;
            color: var(--primary);
        }

        .case-content {
            padding: 25px;
        }

        .case-category {
            display: inline-block;
            background: var(--light);
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .case-content h3 {
            font-size: 20px;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .case-content p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .case-results {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .case-results span {
            background: var(--light);
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
        }

        .detailed-cases {
            padding: 80px 20px;
            background: var(--light);
        }

        .case-detail {
            background: white;
            padding: 50px;
            border-radius: 12px;
            margin-bottom: 60px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .case-detail h2 {
            font-size: 32px;
            margin-bottom: 40px;
            color: var(--dark);
        }

        .case-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .case-detail h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .case-detail p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .solution-list {
            list-style: none;
            margin: 20px 0;
        }

        .solution-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            color: #555;
        }

        .solution-list li::before {
            content: '✓';
            color: var(--success);
            font-weight: bold;
            font-size: 18px;
        }

        .results-boxes {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .result-box {
            background: var(--light);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
        }

        .result-number {
            display: block;
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .result-label {
            display: block;
            color: #666;
            font-size: 14px;
        }

        .case-detail-image img {
            width: 100%;
            border-radius: 12px;
        }

        .case-divider {
            border: none;
            height: 2px;
            background: var(--border);
            margin: 60px 0;
        }

        .portfolio-testimonials {
            padding: 80px 20px;
        }

        @media (max-width: 768px) {
            .hero-small h1 {
                font-size: 32px;
            }

            .case-detail-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .results-boxes {
                grid-template-columns: 1fr;
            }

            .case-detail {
                padding: 30px;
            }
        }
    
/* === from pricing.html === */
    
        .hero-small {
            background: linear-gradient(135deg, var(--primary) 0%, #0047cc 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }

        .hero-small h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .pricing-intro {
            padding: 60px 20px;
            background: var(--light);
        }

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

        .intro-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .intro-card i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .intro-card h3 {
            margin-bottom: 12px;
            color: var(--dark);
        }

        .intro-card p {
            color: #666;
            font-size: 14px;
        }

        .service-pricing {
            padding: 80px 20px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pricing-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .pricing-header {
            background: linear-gradient(135deg, var(--primary) 0%, #0047cc 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .pricing-header h3 {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .pricing-header p {
            opacity: 0.9;
            font-size: 14px;
        }

        .pricing-body {
            padding: 30px;
        }

        .pricing-option {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .pricing-option:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .pricing-option h4 {
            font-size: 18px;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .price {
            margin-bottom: 20px;
        }

        .amount {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
        }

        .period {
            color: #999;
            margin-left: 8px;
        }

        .features {
            list-style: none;
            margin: 20px 0;
        }

        .features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            color: #666;
            font-size: 14px;
        }

        .features i {
            color: var(--success);
            flex-shrink: 0;
        }

        .features i.fa-times {
            color: #ddd;
        }

        .btn-pricing {
            display: block;
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: white;
            text-align: center;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 15px;
        }

        .btn-pricing:hover {
            background: #0052cc;
            transform: translateY(-2px);
        }

        .pricing-option.featured {
            background: var(--light);
            padding: 25px;
            border-radius: 12px;
            border: 2px solid var(--primary);
            margin-bottom: 30px;
            padding-bottom: 25px;
            transform: scale(1.05);
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--secondary);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .hourly-rate {
            padding: 80px 20px;
            background: var(--light);
        }

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

        .rate-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .rate-card h3 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .rate-card i {
            font-size: 32px;
            color: var(--primary);
        }

        .rate-amount {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .rate-amount span {
            font-size: 24px;
            color: #999;
        }

        .rate-card p {
            color: #666;
        }

        .whats-included {
            padding: 80px 20px;
        }

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

        .included-item {
            text-align: center;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .included-item:hover {
            transform: translateY(-10px);
        }

        .included-icon {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .included-item h3 {
            margin-bottom: 12px;
            color: var(--dark);
        }

        .included-item p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        .faq-section {
            padding: 80px 20px;
            background: var(--light);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .faq-item h4 {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 16px;
        }

        .faq-item p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .hero-small h1 {
                font-size: 32px;
            }

            .pricing-option.featured {
                transform: scale(1);
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }
    
/* === from about.html === */
    
        .hero-small {
            background: linear-gradient(135deg, var(--primary) 0%, #0047cc 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }

        .hero-small h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .about-story {
            padding: 80px 20px;
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .story-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }

        .story-content h2 {
            font-size: 36px;
            margin-bottom: 25px;
            color: var(--dark);
        }

        .story-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .big-stat {
            background: var(--light);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
        }

        .big-stat h3 {
            font-size: 42px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .big-stat p {
            color: #666;
        }

        .mission-values {
            padding: 80px 20px;
            background: var(--light);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .value-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .value-icon {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .value-card p {
            color: #666;
            line-height: 1.8;
        }

        .team-section {
            padding: 80px 20px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .team-member {
            text-align: center;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary) 0%, #0047cc 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
        }

        .team-member h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .member-role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .member-bio {
            color: #666;
            line-height: 1.8;
            font-size: 14px;
        }

        .process-section {
            padding: 80px 20px;
            background: var(--light);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-step {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .step-number {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
            opacity: 0.3;
        }

        .process-step h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .process-step p {
            color: #666;
            line-height: 1.8;
            font-size: 14px;
        }

        .tech-stack {
            padding: 80px 20px;
        }

        .tech-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .tech-category {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .tech-category h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tech-category h3 i {
            color: var(--primary);
            font-size: 24px;
        }

        .tech-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .tech-list span {
            background: var(--light);
            padding: 10px 15px;
            border-radius: 6px;
            color: #555;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .story-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-small h1 {
                font-size: 32px;
            }

            .story-stats {
                grid-template-columns: 1fr;
            }
        }
    
