/* Services Page Styles */
.services-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(229, 190, 1, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.service-section {
    padding: 6rem 0;
}

.service-section.alt-bg {
    background-color: var(--accent-color);
}

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

.service-grid.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-grid.reverse .service-content {
    direction: ltr;
}

.service-grid.reverse .service-image {
    direction: ltr;
}

.service-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-features li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* .design-decoration {
    width: 100%;
    height: 300px;
    background-color: var(--card-bg);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.design-wireframe {
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    border-radius: 4px;
    padding: 1rem;
}

.wireframe-header {
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 4px;
}

.wireframe-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    height: calc(100% - 30px);
}

.wireframe-block {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
} */


.design-decoration {
    width: 100%;
    height: 300px;
    background-color: var(--card-bg);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.design-showcase {
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    border-radius: 4px;
    padding: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Mockup */
.phone-mockup {
    width: 140px;
    height: 240px;
    background-color: #2a2a2a;
    border-radius: 20px;
    padding: 8px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Phone Header */
.phone-header {
    padding: 8px 12px 4px;
    background-color: var(--background-color);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.signal-bars {
    display: flex;
    gap: 2px;
}

.signal-bars span {
    width: 3px;
    background-color: var(--primary-color);
    border-radius: 1px;
}

.signal-bars span:nth-child(1) { height: 4px; }
.signal-bars span:nth-child(2) { height: 6px; }
.signal-bars span:nth-child(3) { height: 8px; }

.battery {
    width: 18px;
    height: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
}

.battery::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 1px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    width: 60px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.header-icon {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

/* Phone Content */
.phone-content {
    flex: 1;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-card {
    background-color: var(--background-color);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.card-image {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 4px;
    flex-shrink: 0;
    opacity: 0.8;
}

.card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.text-line {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    height: 4px;
}

.text-line.long { width: 100%; }
.text-line.medium { width: 70%; }
.text-line.short { width: 40%; }

/* Phone Navigation */
.phone-nav {
    padding: 8px 12px;
    background-color: var(--background-color);
    display: flex;
    justify-content: space-around;
}

.nav-item {
    width: 20px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-item.active {
    background-color: var(--primary-color);
    transform: scaleY(1.5);
}

/* Floating Design Elements */
.design-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.color-palette {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 6px;
    animation: float 3s ease-in-out infinite;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.color-dot.primary { background-color: var(--primary-color); }
.color-dot.secondary { background-color: #ff6b6b; }
.color-dot.accent { background-color: #4ecdc4; }

.design-tools {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: float 3s ease-in-out infinite reverse;
}

.tool-icon {
    width: 24px;
    height: 24px;
    background-color: var(--card-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.consulting-decoration {
    width: 100%;
    height: 300px;
    background-color: var(--card-bg);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.consulting-chart {
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    border-radius: 4px;
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.chart-bar {
    width: 20%;
    background-color: var(--primary-color);
    border-radius: 4px 4px 0 0;
}

.section-subtitle {
    text-align: center;
}

.pricing {
    padding: 6rem 0;
    background-color: var(--background-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 0 0 0 8px;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    margin-bottom: 1rem;
}

.price {
    font-size: 1rem;
}

.price span {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-features {
    padding: 2rem;
}

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

.pricing-features ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}
.findOutMore {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .findOutMore:hover {
    transform: scale(1.1);
  }
  

.pricing-features ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.7;
    font-size: 1.3rem;
}
/* MACHINE LEARNING SECTION STYLES - Add this to your services CSS */

.ml-decoration {
    width: 100%;
    height: 300px;
    background-color: var(--card-bg);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    position: relative;
}

.ml-visualization {
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    border-radius: 4px;
    padding: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Neural Network Styling */
.neural-network {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.layer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    z-index: 2;
    position: relative;
}

.node {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(229, 190, 1, 0.3);
}

.node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(229, 190, 1, 0.8) 0%, 
        rgba(229, 190, 1, 0.3) 50%, 
        rgba(229, 190, 1, 0.1) 100%);
    transform: translateY(-50%);
    animation: dataFlow 3s infinite ease-in-out;
}

/* Hide connections from output layer */
.output-layer .node::before {
    display: none;
}

/* Different animation delays for nodes */
.input-layer .node:nth-child(1) { animation-delay: 0s; }
.input-layer .node:nth-child(2) { animation-delay: 0.2s; }
.input-layer .node:nth-child(3) { animation-delay: 0.4s; }
.input-layer .node:nth-child(4) { animation-delay: 0.6s; }

.hidden-layer .node:nth-child(1) { animation-delay: 0.8s; }
.hidden-layer .node:nth-child(2) { animation-delay: 1s; }
.hidden-layer .node:nth-child(3) { animation-delay: 1.2s; }

.output-layer .node:nth-child(1) { animation-delay: 1.4s; }
.output-layer .node:nth-child(2) { animation-delay: 1.6s; }

/* Data Flow Animation */
.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.data-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: moveData 4s infinite ease-in-out;
    box-shadow: 0 0 6px rgba(229, 190, 1, 0.8);
}

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

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scaleX(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) scaleX(1);
    }
}

@keyframes moveData {
    0% {
        left: 10%;
        top: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 90%;
        top: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
    }
}


/* Additional CSS for Enhanced Services Page */
/* Add this to your existing services.css file */

/* Pricing sections styling */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--background-color);
}

.pricing-section.alt-bg {
    background-color: var(--accent-color);
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-section .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.pricing-section .pricing-note {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.7;
    font-size: 0.9rem;
    font-style: italic;
}

/* Ensure pricing grids work properly in pricing sections */
.pricing-section .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-section .pricing-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.pricing-section .pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-section .pricing-card.featured {
    border-color: var(--primary-color);
    position: relative;
}

.pricing-section .pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 0 0 0 8px;
}

.pricing-section .pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-section .pricing-header h3 {
    margin-bottom: 1rem;
}

.pricing-section .price {
    font-size: 1rem;
}

.pricing-section .price span {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-section .pricing-features {
    padding: 2rem;
}

.pricing-section .pricing-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-section .pricing-features ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.pricing-section .pricing-features ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-section .pricing-footer {
    padding: 0 2rem 2rem; 
    text-align: center;
}

/* Responsive design for pricing sections */
/* @media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 0;
    }
    
    .pricing-section .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .pricing-section .pricing-header {
        padding: 1.5rem;
    }
    
    .pricing-section .pricing-features {
        padding: 1.5rem;
    }
    
    .pricing-section .pricing-footer {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-section .pricing-header {
        padding: 1rem;
    }
    
    .pricing-section .pricing-features {
        padding: 1rem;
    }
    
    .pricing-section .pricing-footer {
        padding: 0 1rem 1rem;
    }
    
    .pricing-section .price span {
        font-size: 2rem;
    }
} */