/* Base styles and smooth scrolling */
html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-size: 1rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scale down headings */
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

/* Choose Us Hero Section */
.tc-choose-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.tc-choose-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tc-choose-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-choose-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.tc-choose-content {
    text-align: center;
    max-width: 1200px;
    padding: 60px 20px;
    z-index: 1;
}

.tc-choose-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.tc-choose-counter {
    font-size: 2rem;
    color: #FFD700;
    margin: 0.5rem 0;
    min-height: 60px;
    font-weight: 700;
    opacity: 1;
    transition: opacity 0.5s ease;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.tc-choose-btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.tc-choose-btn:hover {
    background: white;
    color: black;
}

/* Responsive Design for About Hero Section */
@media (max-width: 768px) {
    .about-hero-section {
        height: auto;
        padding: 80px 0;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-animated-text {
        font-size: 2.5rem;
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.75rem;
    }

    .about-animated-text {
        font-size: 2rem;
        min-height: 48px;
    }

    .about-cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(135deg, rgba(5, 66, 107, 0.88), rgba(8, 80, 120, 0.85)), url('../files/crop-businessman-signing-contract-in-office-3771097.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px 0;
    position: relative;
}

.solutions-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(231, 76, 60, 0.1), transparent 70%);
    pointer-events: none;
}

.solutions-container {
    max-width: 1400px;
    padding-left: 50px;
    position: relative;
}

@media screen and (max-width: 1400px) {
    .solutions-container {
        padding-left: 30px;
    }
}

@media screen and (max-width: 1200px) {
    .solutions-container {
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 auto;
    }
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #05426b, #e74c3c);
}

.solutions-header {
    text-align: left;
    margin-bottom: 50px;
    max-width: 1000px;
}

.solutions-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #05426b;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.solutions-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: none;
    width: 80px;
    height: 3px;
    background: #e74c3c;
    border-radius: 3px;
}

.solutions-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0;
}

@media screen and (max-width: 1200px) {
    .solutions-header {
        text-align: center;
    }
    
    .solutions-header h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .solutions-header p {
        margin: 0 auto;
    }
}

/* Solutions Tabs */
.solutions-tabs {
    max-width: 1100px;
    margin: 0 auto 0 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

/* Tabs Slider Container */
.tabs-slider-container {
    display: flex;
    align-items: center;
    position: relative;
}

/* Enhanced slider arrows */
.slider-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #05426b;
    will-change: transform, background-color, box-shadow;
}

.slider-arrow.prev-slide {
    left: 15px;
}

.slider-arrow.next-slide {
    right: 15px;
}

.slider-arrow:hover {
    background: #05426b;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 20px 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #e74c3c;
    transform: scale(1.25);
}

.slider-dot:hover:not(.active) {
    background: #ccc;
    transform: scale(1.1);
}

/* Tab Content */
.solutions-tabs-content {
    position: relative;
    min-height: 400px;
    padding: 50px 70px;
    flex: 1;
}

/* Tab Content Animation */
.tab-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(80px);
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), 
                visibility 0.8s cubic-bezier(0.19, 1, 0.22, 1), 
                transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.tab-content.prev {
    transform: translateX(-80px);
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
}

/* Animation for elements within tabs */
.tab-content h2,
.tab-content p,
.tab-metrics,
.client-logo,
.tab-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1), 
                transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.tab-content p {
    transition-delay: 0.15s;
}

.tab-metrics {
    transition-delay: 0.3s;
}

.client-logo {
    transition-delay: 0.45s;
}

.tab-cta {
    transition-delay: 0.6s;
}

.tab-content.active h2,
.tab-content.active p,
.tab-content.active .tab-metrics,
.tab-content.active .client-logo,
.tab-content.active .tab-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Tab Content */
.tab-content-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.tab-content-left {
    flex: 1;
    max-width: 600px;
}

.tab-content-right {
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 40px;
}

.tab-content h2 {
    color: #05426b;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
}

.tab-content h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: #e74c3c;
    border-radius: 2px;
}

.tab-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Tab Metrics */
.tab-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.tab-metric {
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 12px;
    border-bottom: 4px solid #e74c3c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tab-metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.metric-value {
    color: #e74c3c;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}

.metric-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 8px;
}

/* Client Logo */
.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.client-logo img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.client-logo span {
    color: #05426b;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

/* CTA Button */
.tab-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #e74c3c;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tab-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.tab-cta:hover {
    background: #d63a2f;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(231, 76, 60, 0.35);
}

.tab-cta:hover:before {
    width: 100%;
}

.tab-cta i {
    transition: transform 0.3s ease;
}

.tab-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .solutions-header h1 {
        font-size: 2.4rem;
    }
    
    .solutions-header p {
        font-size: 1.1rem;
    }
    
    .tab-content {
        padding: 25px;
    }
    
    .tab-content h2 {
        font-size: 1.4rem;
    }
    
    .metric-value {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .solutions-section {
        padding: 60px 0;
    }
    
    .solutions-header {
        margin-bottom: 40px;
    }
    
    .solutions-header h1 {
        font-size: 2rem;
    }
    
    .solutions-header p {
        font-size: 1rem;
    }
    
    .tab-item {
        padding: 12px 8px;
    }
    
    .tab-item i {
    font-size: 1.1rem;
    }
    
    .tab-item span {
        font-size: 0.7rem;
    }
    
    .tab-content-inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .tab-content-right {
        width: 100%;
        padding-top: 0;
        align-items: center;
        margin-bottom: 20px;
        order: 3; /* Logo above CTA button */
    }
    
    .tab-content h2 {
        font-size: 1.5rem;
    }
    
    .client-logo {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    
    .client-logo img {
        max-width: 100px;
    }
    
    /* Position CTA button last */
    .tab-cta {
        order: 4;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    /* Restructure content inside tab-content-left to move CTA after client logo */
    .tab-content-left {
        display: flex;
        flex-direction: column;
    }
    
    .tab-content-left .tab-cta {
        order: 4;
        margin-top: 0;
    }
    
    .tab-metrics {
        order: 2; /* Keep metrics between content and logo */
        justify-content: center;
    }
    
    .tab-content-left {
        order: 1; /* Keep content at top */
    }
    
    .tab-cta {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
    }
    
    .client-logo {
        margin-top: 10px;
    }
    
    .client-logo img {
        max-width: 100px;
    }
    
    .tab-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .tab-metrics {
        gap: 15px;
    }
    
    .tab-metric {
        padding: 12px;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .solutions-section {
        padding: 50px 0;
    }
    
    .solutions-header h1 {
        font-size: 1.8rem;
    }
    
    .solutions-header p {
        font-size: 0.9rem;
    }
    
    .solutions-tabs {
        border-radius: 8px;
    }
    
    .tab-item {
        padding: 10px 5px;
    }
    
    .tab-item i {
        font-size: 1rem;
    }
    
    .tab-item span {
        font-size: 0.65rem;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
    
    .tab-content h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .tab-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .tab-metrics {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-cta {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .client-logo img {
        width: 50px;
        height: 50px;
    }
    
    .client-logo span {
        font-size: 0.8rem;
    }
}

/* Why TheConversion Section */
.why-section {
    padding: 80px 0 50px;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #05426b;
    margin: 0;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f15a40;
    border-radius: 2px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: calc(33.333% - 30px);
    margin: 15px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-image {
    height: 220px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

/* Target only the Digital Marketing Expert photo */
.feature-card:nth-child(1) .feature-image {
    height: 220px;
}

.feature-card:nth-child(1) .feature-image img {
    object-position: center 30%;
}

.feature-card:nth-child(3) .feature-image img {
    object-position: top;
}

.feature-title {
    padding: 20px;
    background-color: #05426b;
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

.feature-content {
    padding: 25px;
    background-color: #fff;
}

.feature-content p {
    margin-bottom: 15px;
    color: #555;
}

.feature-content strong {
    color: #05426b;
    font-weight: 600;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .feature-card {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media screen and (max-width: 768px) {
    .why-section {
        padding: 50px 0 30px; /* Reduced padding for mobile */
    }
    
    .section-title {
        margin-bottom: 40px; /* Reduced margin for mobile */
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px; /* Reduced from 30px */
    }
    
    .feature-image {
        height: 180px; /* Reduced height for mobile */
    }
    
    .feature-content {
        padding: 20px 15px; /* Reduced padding for mobile */
    }
}

@media screen and (max-width: 480px) {
    .why-section {
        padding: 40px 0 20px; /* Further reduced padding for very small devices */
    }
    
    .section-title {
        margin-bottom: 30px; /* Further reduced for very small devices */
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* Clients Section */
.clients-section {
    padding: 40px 0 60px;
    background-color: #f9f9f9;
    overflow: hidden;
    width: 100%;
}

.client-box-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
}

.client-box-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #05426b, #f15a40);
}

.clients-title {
    text-align: center;
    margin-bottom: 20px;
}

.clients-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #05426b;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.clients-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #05426b, #f15a40);
    border-radius: 2px;
}

.clients-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin: 15px auto 30px;
    max-width: 800px;
    line-height: 1.6;
}

.clients-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.logo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.logo-row {
    display: flex;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    margin: 20px 0;
    width: 100%;
}

.logo-row-1 {
    animation-name: scroll-right-to-left;
    animation-duration: 15s;
}

.logo-row-2 {
    animation-name: scroll-left-to-right;
    animation-duration: 40s;
}

.logo-item {
    flex: 0 0 auto;
    height: 120px;
    width: 180px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #05426b, #f15a40);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.logo-item:hover::before {
    transform: translateX(0);
}

.logo-item img {
    max-width: 85%;
    max-height: 70px;
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.logo-item:hover img {
    transform: scale(1.05);
}

@keyframes scroll-right-to-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Full width container for client logos */
.full-width-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* Portfolio Section */
.tc-portfolio-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.tc-portfolio-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.tc-portfolio-header {
    text-align: center;
    margin-bottom: 50px;
}

.tc-portfolio-header h2 {
    font-size: 2.5rem;
    color: #05426b;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.tc-portfolio-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #05426b, #f15a40);
    border-radius: 2px;
}

.tc-portfolio-header p {
    color: #666;
    font-size: 1.2rem;
}

.tc-portfolio-slider {
    position: relative;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.tc-portfolio-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    margin: 20px auto;
}

.tc-portfolio-item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    max-width: 900px;
    padding: 20px;
    margin: 0 auto;
}

/* Device mockup styles */
.tc-portfolio-device {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.device-header {
    background: #f8f9fa;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.device-buttons {
    display: flex;
    gap: 6px;
}

.device-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.device-buttons span:nth-child(1) { background: #ff605c; }
.device-buttons span:nth-child(2) { background: #ffbd44; }
.device-buttons span:nth-child(3) { background: #00ca4e; }

.device-screen {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #f8f9fa;
}

.device-screen img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Content styles */
.tc-portfolio-content {
    text-align: center;
    padding: 0 20px;
}

.portfolio-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f15a40;
    margin-bottom: 20px;
    line-height: 1.2;
}

.portfolio-highlight {
    margin: 25px 0;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 30px;
    color: #05426b;
    font-size: 0.9rem;
}

.highlight-tag img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.portfolio-service {
    margin-top: 30px;
}

.portfolio-service h4 {
    font-size: 1.5rem;
    color: #05426b;
    margin-bottom: 5px;
}

.portfolio-service h5 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 25px 0;
    justify-content: center;
}

.price-label {
    color: #05426b;
    font-size: 1.2rem;
    font-weight: 500;
}

.price-value {
    font-size: 4rem;
    font-weight: 700;
    color: #f15a40;
    line-height: 1;
}

.price-type {
    color: #666;
    font-size: 1.1rem;
    margin-left: 5px;
}

.service-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

.service-stats {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.service-stats span {
    padding: 8px 16px;
    background: #e9ecef;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #05426b;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .tc-portfolio-item {
        flex-direction: column;
        gap: 30px;
    }

    .tc-portfolio-device,
    .tc-portfolio-content {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .tc-portfolio-slider {
        padding: 0 20px;
    }

    .portfolio-title {
        font-size: 1.8rem;
    }

    .price-value {
        font-size: 2.8rem;
    }
}

.tc-portfolio-nav {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    color: #f15a40;
}

.tc-portfolio-nav:hover {
    background: #f15a40;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.tc-portfolio-nav.tc-prev {
    left: 10px;
}

.tc-portfolio-nav.tc-next {
    right: 10px;
}

.tc-portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.tc-portfolio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tc-portfolio-dot.active {
    background: #05426b;
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tc-portfolio-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .tc-portfolio-header h2 {
        font-size: 2rem;
    }
    
    .tc-portfolio-item {
        flex: 0 0 calc(100% - 20px);
    }
    
    .tc-portfolio-slider {
        padding: 0 40px;
    }
    
    .tc-portfolio-nav {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .tc-portfolio-header h2 {
        font-size: 1.8rem;
    }
    
    .tc-portfolio-header p {
        font-size: 1rem;
    }
    
    .tc-portfolio-content h3 {
        font-size: 1.2rem;
    }
}

/* Portfolio Section */
.tc-portfolio-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.tc-portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.tc-portfolio-header h2 {
    font-size: 2.5rem;
    color: #05426b;
    margin-bottom: 15px;
    font-weight: 700;
}

.tc-portfolio-header p {
    color: #666;
    font-size: 1.2rem;
}

.tc-portfolio-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.tc-portfolio-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.tc-portfolio-item {
    flex: 0 0 100%;
    padding: 20px;
}

.tc-portfolio-device {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.device-header {
    background: #f8f9fa;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

.device-buttons {
    display: flex;
    gap: 6px;
}

.device-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.device-buttons span:nth-child(1) { background: #ff605c; }
.device-buttons span:nth-child(2) { background: #ffbd44; }
.device-buttons span:nth-child(3) { background: #00ca4e; }

.device-screen {
    background: #fff;
    padding: 30px;
}

.device-content {
    display: flex;
    gap: 40px;
}

.content-left {
    flex: 1;
}

.content-title {
    color: #f15a40;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-left h4 {
    color: #05426b;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.content-left h5 {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 20px 0;
}

.price-tag .service {
    color: #05426b;
    font-size: 1.2rem;
}

.price-tag .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #05426b;
    line-height: 1;
}

.price-tag .unit {
    color: #666;
}

.note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

.content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.info-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.info-tag span {
    color: #05426b;
    font-size: 0.9rem;
}

.service-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.stats-tag {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.stats-tag .stat {
    background: #f8f9fa;
    padding: 8px 20px;
    border-radius: 20px;
    color: #05426b;
    font-size: 0.9rem;
}

.tc-portfolio-info {
    text-align: center;
    margin-top: 20px;
}

.tc-portfolio-info h3 {
    color: #05426b;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.tc-portfolio-info p {
    color: #666;
    font-size: 1rem;
}

.tc-portfolio-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    color: #f15a40;
}

.tc-portfolio-nav:hover {
    background: #f15a40;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.tc-portfolio-nav.tc-prev { left: 0; }
.tc-portfolio-nav.tc-next { right: 0; }

.tc-portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.tc-portfolio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tc-portfolio-dot.active {
    background: #f15a40;
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .device-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .content-right {
        align-items: center;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .price-tag .price {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .tc-portfolio-header h2 {
        font-size: 2rem;
    }
    
    .device-screen {
        padding: 20px;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .content-left h4 {
        font-size: 1.2rem;
    }
    
    .price-tag .price {
        font-size: 2.5rem;
    }
}

/* Services Section */
.services-section {
    padding: 60px 0 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #05426b;
    margin-bottom: 15px;
}

/* Service Slider Styles */
.srv-service-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    touch-action: pan-y;
}

.srv-slides {
    display: flex;
    width: 400%;
    transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.srv-slide {
    width: 25%;
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: #fff;
    height: 500px;
}

.srv-slide-image {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.srv-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.srv-slide-content {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.srv-slide-title {
    color: #05426b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.srv-slide-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #05426b;
}
    font-weight: 500;
    color: #05426b;
}

.case-study-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.case-info-item {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.case-info-item:last-child {
    margin-bottom: 0;
}

.case-info-label {
    font-weight: 600;
    color: #05426b;
    width: 100px;
    flex-shrink: 0;
}

.case-info-value {
    color: #333;
}

.case-results {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.result-box {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.result-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.srv-slider-controls {
    position: absolute;
    bottom: -40px; /* Moved below the slider */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.srv-slider-dot {
    width: 14px;
    height: 14px;
    background-color: rgba(5, 66, 107, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.srv-slider-dot.srv-active {
    background-color: #e74c3c;
    transform: scale(1.2);
}

/* Slider Navigation Arrows */
.srv-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.srv-slider-nav:hover {
    background-color: #e74c3c;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.srv-slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.srv-slider-nav i {
    font-size: 1.2rem;
    pointer-events: none;
}

.srv-slider-nav.srv-prev {
    left: 20px;
}

.srv-slider-nav.srv-next {
    right: 20px;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .srv-slide {
        height: auto;
        flex-direction: column;
    }
    
    .srv-slide-image, .srv-slide-content {
        width: 100%;
    }
    
    .srv-slide-image {
        height: 250px;
    }
    
    .srv-slide-content {
        padding: 30px;
    }
    
    .srv-slider-nav {
        width: 45px;
        height: 45px;
    }
    
    .srv-slider-nav i {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: 50px 0 80px;
    }
    
    .srv-slide-title {
        font-size: 1.6rem;
    }
    
    .srv-slide-content {
        padding: 25px;
    }
    
    .case-study-info {
        padding: 15px;
    }
    
    .case-info-label {
        width: 80px;
    }
    
    .result-value {
        font-size: 1.5rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .srv-slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .srv-slider-nav i {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .srv-slider-nav {
        width: 42px;
        height: 42px;
        background-color: rgba(231, 76, 60, 0.95);
    }
    
    .srv-slider-nav i {
        font-size: 1.1rem;
    }
    
    .srv-slider-nav.srv-prev {
        left: 10px;
    }
    
    .srv-slider-nav.srv-next {
        right: 10px;
    }
}

@media screen and (max-width: 480px) {
    .services-section {
        padding: 40px 0 70px;
    }
    
    .srv-slide-image {
        height: 200px;
    }
    
    .srv-slide-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .srv-slide-content {
        padding: 20px;
    }
    
    .case-results {
        flex-direction: row;
        gap: 10px;
    }
    
    .srv-slider-controls {
        bottom: -35px;
    }
    
    .srv-slider-dot {
        width: 12px;
        height: 12px;
    }
} 

/* Consultation Section Styles */
.consultation-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.consultation-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.consultation-content {
    flex: 1;
    min-width: 300px;
}

.consultation-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Section Heading Styles */
.section-heading {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #05426b;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #e74c3c;
    border-radius: 1.5px;
}

/* Checklist Container and Items */
.checklist-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: white;
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border-left: 3px solid #e74c3c;
}

.checklist-item:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.check-icon {
    background-color: #e74c3c;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon i {
    font-size: 14px;
}

.check-text {
    font-weight: 500;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.checklist-description {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    background-color: white;
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-left: 3px solid #e74c3c;
}

.checklist-description p {
    margin: 0;
}

.form-header {
    margin-bottom: 25px;
    text-align: center;
}

.form-header h3 {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 10px;
}

.form-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.highlight {
    color: #e74c3c;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #d44333;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(231, 76, 60, 0.2);
}

.form-footer {
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color: #777;
}

.form-footer a {
    color: #e74c3c;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Responsive styles for consultation section */
@media (max-width: 992px) {
    .consultation-container {
        flex-direction: column;
    }
    
    .consultation-content, 
    .consultation-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .check-text {
        font-size: 14px;
    }
    
    .form-header h2 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .consultation-section {
        padding: 40px 0;
    }
    
    .consultation-form {
        padding: 20px;
    }
    
    .check-icon {
        width: 25px;
        height: 25px;
    }
    
    .checklist-item {
        gap: 10px;
    }
} 

/* Footer Styles */
.footer {
    background-color: #05426b;
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding-right: 30px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #e74c3c;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    margin-bottom: 12px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.social-links a i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.social-links a:hover {
    color: #e74c3c;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: #e74c3c;
    font-size: 16px;
    margin-top: 3px;
}

.contact-info div strong {
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-info div p {
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 20px;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c3c;
}

/* Responsive styles for footer */
@media (max-width: 992px) {
    .footer-column {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        flex: 0 0 100%;
        padding-right: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
        justify-content: center;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
} 

/* Mobile-specific styles for services section */
@media (max-width: 576px) {
    .case-results {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
        margin-top: 15px;
    }
    
    .result-box {
        width: calc(50% - 5px);
        padding: 15px;
        min-width: 0;
        margin-bottom: 0;
        border-radius: 6px;
    }
    
    .result-value {
        font-size: 1.5rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .result-label {
        font-size: 0.9rem;
        white-space: normal;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
}

.highlight {
    color: #f15a40;
    font-weight: 600;
} 

/* Responsive styles for client logos */
@media screen and (max-width: 992px) {
    .client-box-container {
        padding: 25px 15px;
        margin: 0 20px;
    }
    
    .clients-subtitle {
        font-size: 1.1rem;
        margin: 0 20px 25px;
    }
    
    .logo-item {
        height: 110px;
        width: 160px;
        margin: 0 15px;
    }
    
    .logo-item img {
        max-height: 65px;
    }
    
    .logo-row-1 {
        animation-duration: 12s;
    }
    
    .logo-row-2 {
        animation-duration: 14s;
    }
}

@media screen and (max-width: 768px) {
    .clients-section {
        padding: 30px 0 50px;
    }
    
    .clients-title h2 {
        font-size: 2rem;
    }
    
    .clients-subtitle {
        font-size: 1rem;
        margin: 0 15px 20px;
    }
    
    .client-box-container {
        padding: 20px 10px;
        margin: 0 15px;
    }
    
    .logo-item {
        height: 100px;
        width: 150px;
        margin: 0 12px;
        padding: 12px;
    }
    
    .logo-item img {
        max-height: 60px;
    }
    
    .logo-row-1 {
        animation-duration: 10s; /* Much faster animation */
    }
    
    .logo-row-2 {
        animation-duration: 12s; /* Much faster animation */
    }
}

@media screen and (max-width: 576px) {
    .client-box-container {
        padding: 15px 5px;
        margin: 0 10px;
    }
    
    .clients-subtitle {
        font-size: 0.95rem;
        margin: 0 10px 15px;
    }
    
    .logo-item {
        height: 90px;
        width: 130px;
        margin: 0 10px;
        padding: 10px;
    }
    
    .logo-item img {
        max-height: 50px;
    }
    
    .logo-row-1 {
        animation-duration: 8s; /* Extremely fast animation for smallest screens */
    }
    
    .logo-row-2 {
        animation-duration: 9s; /* Extremely fast animation for smallest screens */
    }
} 

/* Solutions Tabs Navigation */
.solutions-tabs-nav {
    display: flex;
    background: #05426b;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.solutions-tabs-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.tab-item {
    flex: 1;
    min-width: 100px;
    padding: 15px 10px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tab-item i {
    font-size: 1.3rem;
}

.tab-item span {
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.tab-item.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid #e74c3c;
}

.tab-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

@media screen and (max-width: 1200px) {
    .solutions-tabs {
        margin: 0 auto;
    }
} 

/* Mobile Client Logo */
.mobile-client-logo {
    display: none;
}

@media screen and (max-width: 768px) {
    /* Client logo improvements */
    .mobile-client-logo {
        display: block;
        margin: 5px 0 20px;
    }
    
    .mobile-client-logo .client-logo {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 8px 15px;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #eee;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .client-logo img {
        max-width: 60px;
        max-height: 40px;
        margin-bottom: 0;
    }
    
    .client-logo span {
        font-weight: 500;
        font-size: 0.9rem;
        color: #05426b;
    }
    
    /* Container and section spacing */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Full-width design for mobile */
    .solutions-section .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Better content spacing */
    .tab-content h2 {
        padding: 0 5px;
    }
    
    .tab-content p {
        padding: 0 5px;
    }
} 

/* Enhanced Mobile Styling */
@media screen and (max-width: 768px) {
    /* Solutions section improvements */
    .solutions-section {
        padding: 40px 0;
    }
    
    .solutions-container {
        padding: 0;
    }
    
    .solutions-tabs {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        max-width: 100%;
    }
    
    .tabs-slider-container {
        margin: 0;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        z-index: 20;
    }
    
    .slider-arrow.prev-slide {
        left: 5px;
    }
    
    .slider-arrow.next-slide {
        right: 5px;
    }
    
    /* Tab content improvements */
    .solutions-tabs-content {
        padding: 20px 15px 30px;
        min-height: auto;
    }
    
    .tab-content-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .tab-content-left {
        order: 1;
    }
    
    .tab-content h2 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.3;
        padding: 0 5px;
    }
    
    .tab-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    /* Tab metrics improvements */
    .tab-metrics {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        margin-bottom: 25px;
    }
    
    .tab-metric {
        flex: 1;
        background: #f8f9fa;
        border-radius: 8px;
        padding: 12px 8px;
        text-align: center;
        border-left: 3px solid #e74c3c;
        max-width: calc(50% - 6px);
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .metric-value {
        font-size: 1.4rem;
        margin-bottom: 2px;
        display: block;
    }
    
    .metric-label {
        font-size: 0.8rem;
        display: block;
        margin-top: 3px;
    }
    
    /* Client logo improvements */
    .mobile-client-logo {
        display: block;
        margin: 5px 0 20px;
    }
    
    .mobile-client-logo .client-logo {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 8px 15px;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #eee;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .client-logo img {
        max-width: 60px;
        max-height: 40px;
        margin-bottom: 0;
    }
    
    .client-logo span {
        font-weight: 500;
        font-size: 0.9rem;
        color: #05426b;
    }
    
    /* CTA button improvements */
    .tab-cta {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 14px;
        font-weight: 600;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
    }
    
    /* Dots navigation improvements */
    .slider-dots {
        padding: 12px 0;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Hide desktop client logo */
    .tab-content-right {
        display: none;
    }
} 

/* Mobile Styling Adjustments */
@media screen and (max-width: 768px) {
    /* Solutions section improvements */
    .solutions-section {
        background-attachment: scroll;
    }
    
    /* Restore original text colors */
    .tab-content h2 {
        color: #05426b;
    }
    
    .tab-content p {
        color: #555;
    }
    
    /* Fix slider dots positioning */
    .slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        padding: 10px 0;
        width: 100%;
        background: transparent;
        border-top: none;
        margin: 0 auto;
        max-width: 250px;
    }
    
    .slider-dot {
        margin: 0;
        opacity: 0.8;
    }
    
    .slider-dot.active {
        opacity: 1;
    }
}

@media screen and (max-width: 576px) {
    /* Further fix for slider dots on very small screens */
    .slider-dots {
        max-width: 200px;
        gap: 4px;
        padding: 8px 0;
        margin: 0 auto;
    }
    
    .slider-dot {
        width: 6px;
        height: 6px;
    }
} 

/* Carousel logo untuk solutions section */
.client-logos-carousel {
    display: flex;
    overflow: hidden;
    width: 180px; /* Atur sesuai kebutuhan */
    height: 60px;
    position: relative;
    transition: transform 0.5s;
}
.client-logo-item {
    min-width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s;
}
@media (max-width: 600px) {
    .client-logos-carousel, .client-logo-item {
        width: 120px;
        min-width: 120px;
        height: 40px;
    }
} 

/* Management Campaigns Section */
.management-campaigns-section {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.management-campaigns-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
}

.management-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.mgmt-slides {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mgmt-slide {
    flex: 0 0 100%;
    background: #ffffff;
    display: flex;
    min-height: 500px;
    transition: transform 0.5s ease;
}

.mgmt-slide-image {
    flex: 0 0 45%;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.mgmt-slide-image img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mgmt-slide-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mgmt-slide-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    text-align: center;
}

.mgmt-slide-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
    text-align: left;
}

.mgmt-study-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.mgmt-info-item {
    background: #f7fafc;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.mgmt-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.mgmt-info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
}

.mgmt-results {
    display: flex;
    gap: 20px;
}

.mgmt-result-box {
    flex: 1;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.mgmt-result-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.mgmt-result-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Management Slider Navigation */
.mgmt-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.mgmt-slider-nav:hover {
    background: #059669;
    transform: translateY(-50%) scale(1.1);
}

.mgmt-prev {
    left: 10px;
}

.mgmt-next {
    right: 10px;
}

.mgmt-slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.mgmt-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mgmt-slider-dot.mgmt-active {
    background: #10b981;
    transform: scale(1.2);
}

/* Responsive Design for Management Section */
@media (max-width: 1024px) {
    .management-slider {
        padding: 0 40px;
    }
    
    .mgmt-slide {
        flex-direction: column;
        min-height: auto;
    }
    
    .mgmt-slide-image {
        flex: none;
        min-height: 200px;
    }
    
    .mgmt-slide-image img {
        max-width: 150px;
        max-height: 150px;
    }
    
    .mgmt-slide-content {
        padding: 30px;
    }
    
    .mgmt-study-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .management-campaigns-section {
        padding: 60px 0;
    }
    
    .management-slider {
        padding: 0 20px;
    }
    
    .mgmt-slide-title {
        font-size: 1.5rem;
    }
    
    .mgmt-slide-content {
        padding: 25px 20px;
    }
    
    .mgmt-results {
        flex-direction: column;
        gap: 15px;
    }
    
    .mgmt-result-box {
        padding: 20px;
    }
    
    .mgmt-result-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .mgmt-slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .mgmt-prev {
        left: 5px;
    }
    
    .mgmt-next {
        right: 5px;
    }
    
    .mgmt-slide-image {
        padding: 20px;
        min-height: 150px;
    }
    
    .mgmt-slide-image img {
        max-width: 100px;
        max-height: 100px;
    }
}