.services-page{
    padding-top: 80px;
}

.services-page .btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.services-page .btn-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.services-page .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.services-page .btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.services-page .btn-secondary:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}
.services-page .services-section-1 h1{
    color: #333333;
}

.services-page .services-section-1 p{
    color: #333333;
    margin: 40px 0;
    font-size: 20px;
}

/* Services Section */
.services-page .services-section-2 {
    background-color: #ffffff;
}

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

.services-page .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.services-page .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.services-page .service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.services-page .service-icon i {
    font-size: 30px;
    color: #2563eb;
}

.services-page .service-card h3 {
    margin-bottom: 15px;
}

.services-page .service-features {
    list-style: none;
    margin-top: 20px;
}

.services-page .service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.services-page .service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #10b981;
}

/* Process Section */
.services-page .services-section-3 {
    background-color: #f8fafc;
}

.services-page .timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.services-page .timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e2e8f0;
    left: 50%;
    margin-left: -2px;
}

.services-page .timeline-container {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.services-page .timeline-container:nth-child(even) {
    flex-direction: row-reverse;
}

.services-page .timeline-content {
    width: 45%;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.services-page .timeline-point {
    position: absolute;
    top: 30px;
    z-index: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2563eb;
    left: 50%;
    margin-left: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.services-page .timeline-container:nth-child(odd) .timeline-content {
    margin-right: 15px;
}

.services-page .timeline-container:nth-child(even) .timeline-content {
    margin-left: 15px;
}

/* Pricing Section */
.services-page .services-section-4 {
    background-color: #ffffff;
}

.services-page .pricing-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    font-size: 16px;
}

.services-page .pricing-table th, .pricing-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.services-page .pricing-table th {
    background-color: rgba(37, 99, 235, 0.05);
    font-weight: 600;
    font-size: 18px;
}

.services-page .pricing-table tr:last-child td {
    border-bottom: none;
}

.services-page .pricing-table tr:hover {
    background-color: rgba(37, 99, 235, 0.02);
}

.services-page .price-tag {
    font-weight: 700;
    font-size: 20px;
    color: #2563eb;
}

/* Tech Stack Section */
.services-page .services-section-5 {
    background-color: #f8fafc;
}

.services-page .tech-stack {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.services-page .tech-category {
    margin-bottom: 40px;
}

.services-page .tech-category h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    color: #2563eb;
}

.services-page .tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.services-page .tech-badge {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.services-page .tech-badge:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* CTA Section */
.services-page .services-section-6 {
    background-color: #ffffff;
}

.services-page .cta-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
    border-radius: 12px;
    padding: 60px;
}

.services-page .cta-section h2 {
    margin-bottom: 20px;
}

.services-page .cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.services-page .cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.services-page .services-section-6 .section-content{
    width: 100%;
    display:flex;
    flex-direction:column;
    align-items: center;
    color:#fff;
    text-align: center;
}

.services-page .services-section-6 .section-content p{
    color:#fff;
    margin-top: 30px;
}

@media (min-width: 768px){
    .services-page .services-section-1{
        width: 100%;
        height: 720px;
        text-align: left;
    }

    .services-page .services-section-1 .container{
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .services-page .services-section-1 .text{
        width: 42%;
    }


    .services-page .services-section-1 button{
        width: 150px;
    }

    .services-page .services-section-1 .image{
        width: 55%;
    }    

    .services-page .services-section-1 img{
        height: 450px;
    }

    .services-page .services-section-6 .section-content button{
        margin-top: 40px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .services-page .timeline:before {
        left: 30px;
    }
    
    .services-page .timeline-container {
        flex-direction: row !important;
        margin-bottom: 30px;
    }
    
    .services-page .timeline-content {
        width: calc(100% - 90px);
        margin-left: 90px !important;
        margin-right: 0 !important;
    }
    
    .services-page .timeline-point {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .services-page{
        padding-top: 60px;
    }
    
    .services-page .services-section-1{
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .services-page .services-section-1 .container{
        display: block;
    }

    .services-page .services-section-1 .text p{
        margin: 20px 0;
        font-size: 16px;
    }

    .services-page .services-section-1 img{
        width: 200px;
        margin-top: 20px;
    }
    
    .services-page .services-section-1 p {
        font-size: 16px;
    }
    
    .services-page .banner-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .services-page .cta-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .services-page .pricing-table {
        font-size: 14px;
    }
    
    .services-page .pricing-table th, .pricing-table td {
        padding: 12px;
    }
    
    .services-page .cta-section {
        padding: 40px 20px;
    }

    .services-page .services-section-6{
        background-image: none !important;
        background-color: #113066;
    }

    .services-page .services-section-6 .section-content p{
        color:#fff;
        margin: 20px 0 30px 0;
    }
}