/* Services Page Specific Styles */

/* Navbar fix for Services page */
#navbar {
    background-color: transparent !important;
    transition: background-color 0.3s ease !important;
}

#navbar.scrolled {
    background-color: var(--primary-navy) !important;
}

/* Hero Section */
.services-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    margin-top: -80px;
    width: 100%;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.85), rgba(10, 26, 58, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--neutral-white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--neutral-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.95;
    color: var(--neutral-white);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
    width: 100%;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    min-width: 120px;
}

.stat.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--neutral-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    word-wrap: break-word;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Overview Section */
.overview-section {
    padding: 100px 0;
    background: var(--neutral-white);
    width: 100%;
    box-sizing: border-box;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr 1fr;
    }
}

.overview-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-dark-gray);
    margin-bottom: 20px;
    word-wrap: break-word;
}

.overview-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 50px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--neutral-white);
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--neutral-dark-gray);
    line-height: 1.5;
    margin-bottom: 0;
    word-wrap: break-word;
}

.overview-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-image:hover .image-container img {
    transform: scale(1.05);
}

.image-container h4 {
    color: white;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 26, 58, 0.85);
    padding: 25px;
    color: var(--neutral-white);
    width: 100%;
    box-sizing: border-box;
}

.image-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
    word-wrap: break-word;
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: white;
    word-wrap: break-word;
}

/* Core Services Section */
.core-services-section {
    padding: 100px 0;
    background: var(--neutral-light-gray);
    width: 100%;
    box-sizing: border-box;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--neutral-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--accent-orange);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2rem;
    color: var(--neutral-white);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.service-description {
    color: var(--neutral-dark-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
    flex-grow: 1;
    word-wrap: break-word;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    width: 100%;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--neutral-dark-gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-features i {
    color: var(--accent-orange);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: gap 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.service-link:hover {
    gap: 15px;
    color: var(--accent-orange-light);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background: var(--neutral-white);
    width: 100%;
    box-sizing: border-box;
}

.solutions-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
}

.tabs-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.tab-btn {
    padding: 15px 30px;
    background: var(--neutral-light-gray);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    box-sizing: border-box;
    word-wrap: break-word;
}

.tab-btn:hover {
    background: var(--primary-navy);
    color: var(--neutral-white);
}

.tab-btn.active {
    background: var(--accent-orange);
    color: var(--neutral-white);
}

.tab-pane {
    display: none;
    width: 100%;
}

.tab-pane.active {
    display: block;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

@media (min-width: 992px) {
    .solution-content {
        grid-template-columns: 1fr 1fr;
    }
}

.solution-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.solution-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.solution-text {
    width: 100%;
    box-sizing: border-box;
}

.solution-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.solution-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-dark-gray);
    margin-bottom: 30px;
    word-wrap: break-word;
}

.solution-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.solution-features li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: var(--neutral-light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.solution-features li:hover {
    transform: translateX(10px);
}

.solution-features i {
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--neutral-white);
    min-width: 50px;
}

.solution-features div {
    flex: 1;
    min-width: 0;
}

.solution-features h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.solution-features p {
    font-size: 0.9rem;
    color: var(--neutral-dark-gray);
    line-height: 1.5;
    margin-bottom: 0;
    word-wrap: break-word;
}

/* Technology Section */
.tech-section {
    padding: 100px 0;
    background: var(--neutral-light-gray);
    width: 100%;
    box-sizing: border-box;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .tech-content {
        grid-template-columns: 1fr 1fr;
    }
}

.tech-text {
    width: 100%;
}

.tech-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.tech-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-dark-gray);
    margin-bottom: 40px;
    word-wrap: break-word;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

@media (min-width: 768px) {
    .tech-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tech-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: var(--neutral-white);
    border-radius: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.tech-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 50px;
}

.tech-icon i {
    font-size: 1.5rem;
    color: var(--neutral-white);
}

.tech-feature .tech-content {
    flex: 1;
    min-width: 0;
}

.tech-feature .tech-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.tech-feature .tech-content p {
    font-size: 0.9rem;
    color: var(--neutral-dark-gray);
    line-height: 1.5;
    margin-bottom: 0;
    word-wrap: break-word;
}

.tech-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.tech-stat {
    text-align: center;
    flex: 1;
    min-width: 100px;
    box-sizing: border-box;
}

.tech-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 5px;
    word-wrap: break-word;
}

.tech-stat .stat-label {
    font-size: 0.9rem;
    color: var(--primary-navy);
    font-weight: 500;
    word-wrap: break-word;
}

.tech-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* CTA Section */
.services-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.9), rgba(10, 26, 58, 0.7));
    z-index: 2;
}

.services-cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--neutral-white);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.services-cta-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--neutral-white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    width: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    word-wrap: break-word;
    text-align: center;
}

.cta-button.primary {
    background: var(--accent-orange);
    color: var(--neutral-white);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.3);
}

.cta-button.secondary {
    background: var(--primary-navy);
    color: var(--neutral-white);
    box-shadow: 0 8px 25px rgba(10, 26, 58, 0.3);
}

.cta-button.outline {
    background: transparent;
    color: var(--neutral-white);
    border: 2px solid var(--neutral-white);
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button.primary:hover {
    background: var(--accent-orange-light);
    box-shadow: 0 15px 30px rgba(245, 124, 0, 0.4);
}

.cta-button.secondary:hover {
    background: var(--primary-navy-dark);
    box-shadow: 0 15px 30px rgba(10, 26, 58, 0.4);
}

.cta-button.outline:hover {
    background: var(--neutral-white);
    color: var(--primary-navy);
}

.cta-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.contact-inf {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.contact-inf i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.contact-inf > div {
    flex: 1;
    min-width: 0;
}

.contact-inf h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--neutral-white);
    word-wrap: break-word;
}

.contact-inf p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    opacity: 0.9;
    word-wrap: break-word;
}

.contact-number {
    font-size: 1.2rem !important;
    font-weight: 700;
    color: var(--accent-orange) !important;
    margin-top: 5px !important;
}

.contact-email {
    font-size: 1rem !important;
    color: var(--neutral-white) !important;
    opacity: 0.9 !important;
}

/* Animation Classes */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

[data-animate].animate {
    opacity: 1;
}

/* Fade Up Animation */
[data-animate="fade-up"].animate {
    transform: translateY(0);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

/* Slide Left Animation */
[data-animate="slide-left"].animate {
    transform: translateX(0);
}

[data-animate="slide-left"] {
    transform: translateX(-50px);
}

/* Slide Right Animation */
[data-animate="slide-right"].animate {
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(50px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .services-hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
        padding: 0 15px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tabs-header {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tab-btn {
        width: auto;
        min-width: 150px;
        padding: 12px 20px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-description {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .overview-section,
    .core-services-section,
    .solutions-section,
    .tech-section {
        padding: 60px 0;
    }
    
    .overview-content {
        gap: 40px;
    }
    
    .overview-text h3,
    .solution-text h3,
    .tech-text h3 {
        font-size: 1.8rem;
    }
    
    .overview-text p,
    .solution-text p,
    .tech-text p {
        font-size: 1rem;
    }
    
    .feature {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
    
    .tabs-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .solution-content {
        gap: 30px;
    }
    
    .solution-features li {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .solution-features i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tech-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .tech-icon i {
        font-size: 1.2rem;
    }
    
    .tech-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .tech-stat {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    .cta-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .contact-inf {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-inf i {
        font-size: 2rem;
    }
    
    .services-cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .overview-section,
    .core-services-section,
    .solutions-section,
    .tech-section {
        padding: 50px 0;
    }
    
    .overview-content,
    .services-grid,
    .solutions-tabs,
    .tech-content {
        padding: 0 15px;
    }
    
    .image-container {
        height: 300px;
    }
    
    .image-overlay {
        padding: 15px;
    }
    
    .image-overlay h4 {
        font-size: 1.1rem;
    }
    
    .image-overlay p {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .solution-image img {
        height: 300px;
    }
    
    .solution-text h3 {
        font-size: 1.6rem;
    }
    
    .solution-text p {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }
    
    .cta-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .cta-button {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .contact-inf {
        padding: 15px;
    }
    
    .contact-inf h4 {
        font-size: 1.1rem;
    }
    
    .contact-number {
        font-size: 1.1rem !important;
    }
    
    .services-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .overview-text h3,
    .solution-text h3,
    .tech-text h3 {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .tab-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}