/* Technology Services Section - All styles scoped with parent class */

.tech-services-section {
    padding: 80px 0;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(241, 245, 249, 1) 100%);
}
.tech-services-section .fullcoretech
{
    padding:0px 10px;
    background: #ffffff;
    border-radius: 16px;

}
.tech-services-section .container
{
max-width:1320px;
}
.tech-services-section .fullcoretech .col-md-9
{
    padding:0;
}

.tech-services-section__heading h2 {
    font-size: 42px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.tech-services-section__highlight {
    color: #ff6b35;
    font-size: 42px;
}

.tech-services-section__description {
    font-size: 16px;
    color: #666666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Tabs Styling */
.tech-services-section__tabs {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.tech-services-section__tab {
    display: flex;
    align-items: center;
    padding: 25px 24px;
    background-color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
}
.tech-services-section__content-inner
{
    border-radius: 16px;
    box-shadow: 0px 4px 6px -7px #0000001A;
}

.tech-services-section__tab:hover {
    border-color: #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
    transform: translateX(5px);
}

.tech-services-section__tab--active {
    background: #F76902;
    border-color: #ff6b35;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    outline: transparent;
}

.tech-services-section__tab--active .tech-services-section__tab-title {
    color: #ffffff;
}

.tech-services-section__tab--active .tech-services-section__tab-icon {
    color: #ffffff;
}
.tech-services-section__tab--active .tech-services-section__tab-icon img {
    filter: brightness(0) invert(1);
}

.tech-services-section__tab-icon {
    margin-right: 15px;
    color: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.tech-services-section__tab-content {
    flex: 1;
}

.tech-services-section__tab-title {
    font-size: 15px;
    font-weight: 500;
    color: #F76902;
    margin: 0;
    transition: color 0.3s ease;
}

/* Content Wrapper */
.tech-services-section__content-wrapper {
        position: relative;
    min-height: 400px;
    box-shadow: 0px 4px 4px -6px #0000001A;
}

.tech-services-section__content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tech-services-section__content--active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Wrapper */
.tech-services-section__image-wrapper {
    position: relative;
    height: 100%;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    border-radius: 16px 0 0 16px;
}

.tech-services-section__image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.tech-services-section__content:hover .tech-services-section__image {
    transform: scale(1.05);
}

.tech-services-section__icon-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Details Section */
.tech-services-section__details {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.tech-services-section__content-title {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.tech-services-section__content-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.tech-services-section__tech-label {
    font-size: 12px;
    font-weight: 600;
    color: #999999;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 5px;
     display: flex;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.tech-services-section__tech-label::after,.tech-services-section__tech-label::before {
    content: '';
  flex: 1;
    width: 60px;
    height: 1px;
    background: linear-gradient(
  270deg,
  rgba(43, 127, 255, 0.4) 0%,
  rgba(0, 184, 219, 0.4) 100%
);    

}

/* Technology Badges */
.tech-services-section__technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-services-section__tech-badge {
    display: inline-block;
    padding: 6px 15px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    color: #555555;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-services-section__tech-badge:hover {
    background-color: #ff6b35;
    color: #ffffff;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.2);
}

/* CTA Button */
.tech-services-section__cta-button {
        align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #F76902;
    color: #ffffff;
    text-decoration: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.tech-services-section__cta-button:hover {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.tech-services-section__cta-button svg {
    transition: transform 0.3s ease;
}

.tech-services-section__cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .tech-services-section__tabs {
        margin-bottom: 30px;
    }
    
    .tech-services-section__heading h2 {
        font-size: 32px;
    }
    
    .tech-services-section__content-title {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .tech-services-section__image-wrapper {
        min-height: 300px;
    }
    
    .tech-services-section__details {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .tech-services-section {
        padding: 50px 0;
    }
    
    .tech-services-section__heading h2 {
        font-size: 28px;
    }
    
    .tech-services-section__description {
        font-size: 14px;
    }
    
    .tech-services-section__tab {
        padding: 15px 20px;
    }
    
    .tech-services-section__tab-title {
        font-size: 14px;
    }
    
    .tech-services-section__image-wrapper {
        min-height: 250px;
    }
    
    .tech-services-section__details {
        padding: 20px;
    }
    
    .tech-services-section__content-title {
        font-size: 22px;
    }
    
    .tech-services-section__content-description {
        font-size: 14px;
    }
    
    .tech-services-section__cta-button {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 14px 25px;
    }
}
