@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;
}


.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; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }

.text-center { text-align: center; }

.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; }

/* 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;
    font-size:16px !important;
    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;
    background-image: url('../../img/Custom-Production-Manufacturing-1.jpg');
}
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
#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);
    backdrop-filter: blur(5px);
    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;
    border-radius: 0.5rem;
}
#hero .hero-card .btn-secondary svg {
    height: 0.9em;
}

/* 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);
    cursor: pointer; /* Add pointer cursor to indicate it's clickable */
    transition: all 0.3s ease;
}
.fixed-navbar .nav-link:hover {
    color: var(--yellow);
}
.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;
    font-size: 1rem;
    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 & Related Sections */
#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%;
}

/* Characterization Services Section */
#characterization-services {
    background-color: var(--gray-50);
}
.service-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
.service-intro-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-intro-card p {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}
.service-intro-card .btn {
    align-self: flex-start;
}
.service-category {
    padding-top: 4rem;
}
.service-category:first-of-type {
    padding-top: 0;
}
.service-category h3 {
    font-size: 2.5rem !important;
    margin-bottom: 0.5rem;
    text-align: left;
}
.service-category h3 a {
    color: var(--dark-blue);
}
.service-category > p {
    margin-bottom: 2rem;
    /* max-width: 800px; Removed to allow full width */
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-card h4 {
    font-size: 1.8rem !important; /* Increased font size */
}
.service-card h4 a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
}
.service-card h4 a:hover {
    text-decoration: underline;
}
.service-card p {
    flex-grow: 1;
}

/* 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); font-size: 1.1rem; }
.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;
    padding: 1rem 0;
}
.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; }

.features-grid a{
    background-color: var(--light-blue); color: var(--white); font-size: 1.25rem; font-weight: 600;
}
@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: 3rem; }
    h2 { font-size: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    #partnerCarousel .carousel-item { width: calc(100% / 4); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hot-products-layout { flex-direction: column; }
    .fixed-navbar { padding: 1rem; }
    .service-intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    body { font-size: 16px; } /* Adjust font size for smaller screens */
    #hero .char-container { flex-direction: column; text-align: center; }
    #hero .hero-content { text-align: center; 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); }
    .workflow-flow { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .fixed-navbar .nav-links-container { display: none; }
}