.view-more-projects-centered {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center;
  margin-top: 2rem;
}
.view-more-message {
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}
.view-more-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary, #facc15) !important;
  color: var(--primary, #facc15) !important;
  background: #fff;
  transition: all 0.2s;
  text-decoration: none;
  margin: 0 auto;
  margin-bottom: 0;
}
.view-more-btn:hover {
  background: var(--primary, #facc15) !important;
  color: var(--muted) !important;
  border-color: var(--primary, #facc15);

}.service-hero {
    padding: 2rem 0 3rem;
    background-color: var(--background);
    left: 0;
}



.service-hero-content {
    text-align: left;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #eab308;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
    text-align: left;
}

.service-category-label {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    max-width: 800px;
    line-height: 1.6;
    color: var(--foreground);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-hero {
        padding: 1.5rem 0 2rem;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-title {
        font-size: 1.75rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }
}

/* Service Overview Section */
.service-overview {
    padding: 4rem 0;
    background-color: var(--background);
}

.section-header {
    
    text-align: center;
}

.section-title1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    text-align: left;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 3rem;
    color: var(--foreground);
    position: relative;
    display: block;
    width: fit-content;
    /* Better than fixed percentage */
    padding: 0 1rem;
    /* Prevents text from touching edges on mobile */
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100%;
    /* Full width of the text */
    height: 2px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.service-content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-details-left {
    flex: 1;
    min-width: 0;
}


.service-full-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--foreground);
    margin-bottom: 2rem;
    
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.service-features ul {
    list-style-type: none;
    padding-left: 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.service-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-yellow {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-yellow:hover {
    background-color: #eab308;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--foreground);
    color: var(--foreground);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.service-stats {
    width: 350px;
    background-color: var(--card);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

.service-right-column {
    width: 450px;
    height: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-image-container {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--border);

}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}



.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: left;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.1);
}


.stat-label {
    font-size: 0.9rem;
    color: #a1a1aa;


}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .service-content-wrapper {
        flex-direction: column;
    }

    .service-right-column {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
    }

    .service-image-container {
        flex: 1;
        height: 200px;
    }

    .stats-grid {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .service-right-column {
        flex-direction: column;
        align-items: center;
    }

    .service-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
   
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Core Features Section */
.core-features-section {
    padding: 4rem 0;
    background-color: var(--muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: black;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;

    color: black;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {

    font-size: 3rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.feature-card p {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    padding-top: 2rem;
    gap: 1rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: var(--border);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
    min-width: 150px;
    max-width: 250px;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.step-content p {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-steps::before {
        top: 0;
        left: 30px;
        right: auto;
        width: 2px;
        height: 100%;
    }

    .process-step {
        display: flex;
        text-align: left;
        gap: 1rem;
        max-width: 100%;
        width: 100%;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }
}

/* Technologies Section */
.technologies-section {
    padding: 4rem 0;
    background-color: var(--muted);
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.technology-item {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.technology-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.1);
}


.tech-icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: transparent;
    border: 1px solid var(--primary);
    border-radius: 50%;
    padding: 1rem;
}



.tech-icon-container:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.1);
}

.tech-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tech-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.tech-purpose {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .technologies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .technologies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .technologies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-icon-container {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .technologies-grid {
        grid-template-columns: 1fr;
    }

    .technology-item {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* Projects Section */
.projects-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.project-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.1);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(250, 204, 21, 0.1);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.project-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.project-card p {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mobile Service Kit Section */
.mobile-service-kit-section {
  display: none;
  padding: 4rem 0;
}

/* Show only for mobile-app service */
body[data-service="mobile-app"] .mobile-service-kit-section {
  display: block;
}
/* CTA Section */
.service-cta {
    padding: 5rem 0;
    background-color: var(--muted);
    text-align: center;
    margin-bottom: 40px;
}

.service-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.service-cta p {
    font-size: 1.1rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .technologies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-content-wrapper {
        flex-direction: column;
    }

    .service-stats {
        width: 100%;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-hero-content {
        padding: 2rem 1rem;
    }

    .service-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .technologies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}