@charset "UTF-8";
   /* CSS Variables for consistent theming */
   :root {
    --dark-blue: #1C3C6E;
    --light-blue: #0061CD;
    --yellow: #F3E04E;
    --white: #FFFFFF;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --black: #000000;
    --red-500: #ef4444;
    --max-width:1400px;
}

/* Base Styles */
/* body {
    font-family: 'Inter', sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    background-color: var(--white);
    scroll-behavior: smooth;
    margin: 0;
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 18px; 
}

h1, h2, h3, h4 {
    color: var(--dark-blue);
    line-height: 1.2;
}

h1 { font-size: 4.25rem; font-weight: 800; margin-bottom: 1.5rem; } 
h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 3rem; text-align: center; }
h3 { font-size: 1.25rem; font-weight: 600; }

a {
    text-decoration: none;
    color: var(--light-blue);
}
a:hover {
    text-decoration: underline;
} */


.tkmaxwidth {
max-width: 1400px;
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;
}


.char-container {
max-width:var(--max-width);
margin-left: auto;
margin-right: auto;
padding-left: 1rem;
padding-right: 1rem;

}

.char-container h1,
.char-container h2,
.char-container h3,
.char-container h4
{
color: var(--dark-blue);
line-height: 1.2;
}
.char-container h2 { font-size:3.2rem !important;text-align: center; }


.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Button Styles */
.btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
    border: none;
    padding: 1rem 2rem !important;
    border-radius: 9999px !important;
    font-weight: 700 !important;
    font-size:16px !important;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}
.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn-primary {
background-color: var(--yellow) !important;
color: var(--black) !important;
border:0px !important;
}
.btn-primary:hover{
background-color: var(--dark-blue) !important;
color: var(--white) !important;
}
.btn-secondary,a.btn-secondary {
background-color: var(--yellow);
color: var(--black);
padding: 0.75rem 1.5rem;
}
.btn-secondary:hover,a.btn-secondary:hover {
background-color: var(--dark-blue) !important;
color: var(--white) !important;
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding:4rem 0;
}
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Darkened overlay */
}
#hero .char-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}
#hero h1 {
    font-size: 48px !important;
color: var(--white);
font-weight:bold;
}
#hero .hero-content {
    text-align: left;
    flex: 1.5;
}
#hero .hero-content p {
    font-size: 18px !important;
line-height: 1.75;
margin-bottom: 2rem;
}
#hero .hero-card {
    background-color: rgba(255, 255, 255, 0.15); /* Matched reference style */
    backdrop-filter: blur(5px); /* Matched reference style */
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 340px;
}
#hero .hero-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
#hero .hero-card img {
    margin: 0 auto 1rem;
}
#hero .hero-card .btn .icon {
    margin-right: 0.5rem;
}

/* Fixed Navbar */
.fixed-navbar {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
.fixed-navbar.visible {
    visibility: visible;
    opacity: 1;
}
.fixed-navbar.scrolled {
    background-color: rgba(28, 60, 110, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.fixed-navbar .nav-links-container {
    display: flex;
    flex-grow: 1;
    justify-content: space-around;
    align-items: center;
    overflow-x: auto;
    margin-right: 2rem;
}
.fixed-navbar .nav-link {
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    border-radius: 9999px;
    color: var(--white);
    transition: all 0.3s ease;
    cursor: pointer; /* Added cursor pointer for span */
}
.fixed-navbar .nav-link:hover {
    color: var(--yellow);
    text-decoration: none;
}
.fixed-navbar .nav-link.active-nav-link {
    background-color: var(--yellow);
    color: var(--dark-blue);
    font-weight: 600;
}
.fixed-navbar .btn {
    padding: 0.5rem 1.5rem;
    flex-shrink: 0;
    background-color: var(--yellow);
    color: var(--dark-blue);
}

/* Generic Section Layouts */
.section-with-image {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.section-with-image .text-content { flex: 1; }
.section-with-image .image-content { flex: 1; }
.section-with-image .image-content img {
    width: 100%;
    border-radius: 0.75rem;
}

/* Why Choose Us Section */
#why-choose-us .intro-text {
    max-width: 48rem;
    margin: 0 auto 3rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.realsections .feature-card{
    background-color: var(--light-blue); color: var(--white) ; font-size: 2rem; font-weight: 600;
}
.realsections .feature-card:hover{
    color:#fff !important;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
}
.feature-card .icon-wrapper {
    margin: 0 auto 1rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card .icon-wrapper svg {
    width: 4rem;
    height: 4rem;
    fill: var(--yellow);
}
.feature-card h3 {
    margin-bottom: 0.75rem;
}

/* Partner Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
}
.carousel-track {
    display: flex;
}
.carousel-item {
    flex-shrink: 0;
    padding: 1rem;
    box-sizing: border-box;
}
#partnerCarousel .carousel-item {
    width: calc(100% / 6);
    display: flex;
    /* justify-content: center; */
    align-items: center;
}
#partnerCarousel img {
    width: 100px;
    height: 50px;
    object-fit: contain;
}

/* Workflow Section */
.workflow-flow {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.workflow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.workflow-step .step-circle {
    width: 64px;
    height: 64px;
    background-color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--dark-blue);
    border: 4px solid var(--dark-blue);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 10;
}
.workflow-step .step-content {
    background: var(--white);
    padding: 4rem 1.5rem 1.5rem;
    border-radius: 0.75rem;
    margin-top: -32px;
    height: 100%;
}

/* Platform Carousel */
#platformCarousel .carousel-item {
    width: calc(100% / 3);
}
.platform-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    /* text-align: center; */
}
.platform-card img {
    margin: 0 auto 1rem;
    height: 25rem;
    width: 100%;
    object-fit: contain;
}
.platform-card h3 { margin-bottom: 0.5rem; }
.carousel-container .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--dark-blue);
    border: none;
    cursor: pointer;
    z-index: 10;
}
.carousel-container .carousel-btn.prev { left: 1rem; }
.carousel-container .carousel-btn.next { right: 1rem; }

/* Services Section */
.services-layout {
    display: flex;
    gap: 2rem;
}
.services-nav-container {
    flex-shrink: 0;
    width: 25%;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}
.services-nav-intro {
    padding: 1rem;
    background: var(--white);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}
.services-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.services-nav a {
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--gray-600);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}
.services-nav a:hover {
    background-color: var(--gray-100);
    text-decoration: none;
}
.services-nav a.active {
    background-color: #eef2ff;
    color: var(--dark-blue);
    font-weight: 700;
    border-left-color: var(--yellow);
}
.services-content {
    flex-grow: 1;
}
.service-category { margin-bottom: 4rem; }
.service-category h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.service-category h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.service-category h3 a:hover {
    color: var(--light-blue);
    text-decoration: underline;
}
.service-category p { margin-bottom: 2rem; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    position: relative;
    overflow: hidden;
    height: 18rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.75rem;
    background: var(--white);
}
.service-card .icon-container { transition: transform 0.3s ease;padding-top:20px; }
.service-card:hover .icon-container { transform: scale(0); }
.service-card:hover .icon-container h4{
    margin:0px !important;
    padding:0px !important;
}
.service-card .icon-container svg {
    width: 4rem;
    height: 4rem;
    fill: var(--light-blue);
    margin-top:1rem !important;

}
.service-category h3{
    font-size:22px !important;
}
.service-card .icon-container h4{
    font-size:17px !important;
}
.service-card .description {
    position: absolute;
    inset: 0;
    background: rgba(28, 60, 110, 0.95);
    color: var(--white);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card:hover .description { transform: translateY(0); }
.service-card .card-link { position: absolute; inset: 0; z-index: 10; }

/* Hot Products & Services */
.hot-products-layout {
    display: flex;
    gap: 3rem;
}
.hot-products-column {
    flex: 1;
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: 0.75rem;
}
.hot-products-column h3 a {
    color: var(--light-blue);
}
.hot-products-column ul {
    list-style: disc;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* FAQs */
.faq-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--dark-blue);
    color: var(--white);
    cursor: pointer;
}
.accordion-header h3 { color: var(--white); }
.accordion-header .icon {
    transition: transform 0.3s ease;
}
.accordion-header .icon.rotate-180 { transform: rotate(180deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}
.accordion-content.active {
    max-height: 500px;
    padding: 1.5rem;
}

/* Disclaimer & Footer */
.disclaimer {
    background: var(--gray-100);
    display: flex;
    align-items: center;
}
.disclaimer .icon { margin-right: 1rem; }


/* Card hover effect */
.card-hover-effect {
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    position: relative;
    animation: fadeIn 0.3s ease-out;
}
.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}
.close-button:hover, .close-button:focus { color: #333; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.modal-content input, .modal-content textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    #partnerCarousel .carousel-item { width: calc(100% / 4); }
    #platformCarousel .carousel-item { width: calc(100% / 2); }
    .services-layout { flex-direction: column; }
    .services-nav-container { position: static; width: 100%; }
    .hot-products-layout { flex-direction: column; }
    .fixed-navbar { padding: 1rem; }
}
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    #hero .char-container { flex-direction: column; text-align: center; } /* Center align hero on mobile */
    #hero .hero-content { text-align: center; width: 100%; margin-bottom: 2rem; }
    #hero .hero-card { width: 80%; max-width: 380px; }
    .section-with-image { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    #partnerCarousel .carousel-item { width: calc(100% / 2); }
    #platformCarousel .carousel-item { width: 100%; }
    .workflow-flow { flex-direction: column; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .fixed-navbar .nav-links-container { display: none; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
}