@charset "UTF-8";

:root {
    --dark-blue: #0a192f;
    --hero-text: #ccd6f6;
    --light-bg-primary: #FFFFFF;
    --light-bg-secondary: #F8F9FA;
    --text-primary: #212529;
    --text-secondary: #6C757D;
    --border-color: #DEE2E6;
    --theme-yellow: #FDE95B;
    --theme-blue: #007BFF;
    --theme-lightblue-bg: #EAF6FA;
    --max-width:1300px;
}

.tkmaxwidth {
    max-width: var(--max-width);
    padding: 0 2rem 0rem 2rem;
}
.banner_inpage .tkmaxwidth{display:none;}
.inpage_section_title{border:0px;display:none;}
.tkpage.services-container {
    width: 100% !important;
    padding-top: 0px;
}


 .cp-container {
    width: 100%;
    max-width:var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
} 

/* .hero-title-gradient {
    background: linear-gradient(90deg, #ffffff, var(--hero-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.process-item {
    background-color: var(--light-bg-secondary);
    border-left: 4px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-item.active {
    background-color: var(--theme-lightblue-bg);
    border-left-color: var(--theme-yellow);
}

.service-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-nav-link.active {
    color: var(--theme-yellow);
    transform: scale(1.05);
    font-weight: 700;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding-right: 1.5rem;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--text-secondary);
}

.faq-item[open] summary::after {
    content: '-';
}



.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--light-bg-secondary); 
    position: relative;
    padding: 2rem 1rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    font-size:0;
    background-color: var(--light-bg-secondary); 
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.3; */
}

/* .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-blue), transparent, var(--dark-blue));
} */

.hero-content {
    position: relative;
    z-index: 10;
    max-width:var(--max-width);
    margin: 0 auto;
    
}

.hero-title {
    font-size: 6rem !important;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color:#fff;
}

.hero-content .btn
{
    padding:10px 25px;
    font-size:1.8rem;
    font-weight:bold;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem !important;
    }
}

.hero-desc {
    
    color: #fff;
    margin-bottom: 2rem;
    /* max-width: 500px; */
    margin-left: auto;
    margin-right: auto;
    font-size:2rem;
}


.btn {
    display: inline-block;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    
    transition: all 0.3s ease;
    text-decoration: none;
}

.cp-btn-primary {
    background-color: var(--theme-yellow) !important;
    color: var(--text-primary) !important;
    padding: 10px 25px !important;
    font-size: 1.8rem !important;
    font-weight: bold !important;
}

.cp-btn-primary:hover {
    opacity: 0.9;
}

.partners-section {
    padding: 5rem 0;
    background-color: var(--light-bg-secondary);
    position: relative;
}

.partners-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    transform: translateY(-100%);
}

.partners-overlay svg {
    width: 100%;
    height: 100%;
}

.section-subtitle {
    text-align: center;
    
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

.partner-logo {
    display: block;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    max-height: 80px;
    width:110px;
    cursor: pointer;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.advantages-section {
    padding: 6rem 0;
    background-color: var(--light-bg-primary);
}

.section-title {
    font-size: 3.5rem !important;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-desc {
    
    color: var(--text-secondary);
    text-align: center;
    margin: 0 auto 4rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advantage-card {
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: var(--light-bg-secondary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-icon {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: var(--theme-lightblue-bg);
    /* color: var(--theme-blue); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.advantage-icon img{
    width:6rem;
    height:6rem;
}

.advantage-title {
    
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.advantage-desc {
    color: var(--text-secondary);
}

.process-section {
    padding: 6rem 0;
    background-color: var(--light-bg-secondary);
}

.process-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .process-container {
        flex-direction: row;
    }
}

.process-steps {
    width: 100%;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .process-steps {
        width: 33.333%;
        margin-bottom: 0;
    }
}

.process-item {
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin-bottom: 1rem;
    cursor: pointer;
}

.process-item.active {
    background-color: var(--theme-yellow-light);
    border-left: 4px solid var(--theme-yellow);
}

.process-item-title {
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-visual {
    width: 100%;
}

@media (min-width: 768px) {
    .process-visual {
        width: 66.666%;
    }
}

.process-text {
    height: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-text-item {
    position: absolute;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--text-primary);
    background-color: var(--theme-yellow);
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    transition: opacity 0.5s ease;
}

.process-image-container {
    min-height: 30rem;
    border-radius: 0.5rem;
    /* overflow: hidden; */
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.process-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-image {
    width: 100%;
    flex: 1;
    height:20rem;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.process-image-desc {
    padding: 3rem !important;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-secondary);
    transition: opacity 0.5s ease;
}

.services-section {
    padding: 6rem 0;
    background-color: var(--light-bg-primary);
}

.cp-services-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .cp-services-container {
        flex-direction: row;
    }
}

.service-nav {
    width: 100%;
}

@media (min-width: 1024px) {
    .service-nav {
        width: 25%;
        position: sticky;
        top: 6rem;
        align-self: flex-start;
    }
}

.service-nav-list {
    list-style: none;
}

.service-nav-item {
    margin-bottom: 1rem;
}

.service-content {
    width: 100%;
}

@media (min-width: 1024px) {
    .service-content {
        width: 75%;
    }
}

.service-content-item {
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: var(--light-bg-secondary);
    margin-bottom: 4rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--theme-blue);
    margin-bottom: 1.5rem;
}

.service-desc {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.service-features li {
    margin-bottom: 0.5rem;
}

.service-link {
    color: var(--theme-blue);
    font-weight: 600;
    text-decoration: none;
}

.capabilities-section {
    padding: 6rem 0;
    background-color: var(--light-bg-secondary);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.capability-card {
    border-radius: 0.5rem;
    background-color: var(--light-bg-primary);
    border: 1px solid var(--border-color);
    overflow: hidden;
    text-align: center;
}

.capability-img {
    max-width: 100%; 
    height: 20rem;
    object-fit:contain;
    margin:auto !important;
}
.capability-content {
    padding: 1.5rem;
    text-align: left;;
}

.capability-title {
    min-height:40px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.capability-desc {
    
    color: var(--text-secondary);
}

.download-section {
    padding: 6rem 0;
    background-color: var(--light-bg-primary);
}

.download-card {
    border-radius: 0.5rem;
    background-color: var(--light-bg-secondary);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .download-card {
        flex-direction: row;
    }
}

.download-img-container {
    width: 100%;
    /* max-width: 12rem; */
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .download-img-container {
        width: 33.333%;
    }
}

.download-img {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 200px;
}

.download-content {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .download-content {
        width: 66.666%;
        text-align: left;
    }
}

.download-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.download-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.related-products-section {
    padding: 6rem 0;
    background-color: var(--light-bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.products-grid .products-img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.product-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
     height: 28rem; 
    border-radius: 0.5rem;
    background-color: var(--light-bg-primary);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.product-content {
    position: relative;
    z-index: 10;
}

.product-title {
    
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-link {
    
    font-weight: 600;
    color: var(--theme-blue);
}

.testimonials-section {
    padding: 6rem 0;
    background-color: var(--theme-lightblue-bg);
}

.testimonial-container {
    max-width:var(--max-width);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    padding: 2rem;
}

.testimonial-text {
    
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-primary);
}

.author-title {
    
    color: var(--text-secondary);
}

.faq-section {
    padding: 6rem 0;
    background-color: var(--light-bg-secondary);
}

.faq-container {
    max-width:var(--max-width);
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: var(--light-bg-primary);
    border: 1px solid var(--border-color);
}

.faq-question {
    
    font-weight: 600;
    color: var(--text-primary);
}

.faq-answer {
    margin-top: 1rem;
    color: var(--text-secondary);
}

.related-sections-section {
    padding: 6rem 0;
    background-color: var(--light-bg-primary);
    text-align: center;
}

.related-title {
    font-size: 3.5rem !important;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.related-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.related-card {
    display: flex;
    flex-direction: column;
    min-height: 300px; 
    max-width: 300px;
    width: 100%;
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: var(--light-bg-secondary);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.related-card-content {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}

.related-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.related-card:hover .related-card-title {
    color: var(--theme-blue);
}

.related-card-desc {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1; 
}

.related-card-link {
    font-weight: bold;
    color: var(--theme-blue);
    margin: auto; 
    align-self: flex-start; 
}


.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.inquiry-section {
    padding: 3rem 0;
    background-color: var(--light-bg-primary);
    border-top: 1px solid var(--border-color);
}
.inquiry-container {
    max-width:var(--max-width);
    margin: 0 auto;
    text-align: center;
}
.inquiry-title {
    font-size: 3.5rem !important;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.floating-inquiry {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
}