@charset "UTF-8";
.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;
}

        .tk-container {
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        @media (min-width: 640px) {
            .tk-container { max-width: 640px; }
        }
        @media (min-width: 768px) {
            .tk-container { max-width: 768px; }
        }
        @media (min-width: 1024px) {
            .tk-container { max-width: 1024px; padding-left: 2rem; padding-right: 2rem;}
        }
        @media (min-width: 1280px) {
            .tk-container { max-width: 1280px; }
        }
        @media (min-width: 1536px) {
            .tk-container { max-width: 1400px; }
        }
        
        /* Custom Colors */
        .color-dark-blue { color: #1C3C6E; }
        .bg-dark-blue { background-color: #1C3C6E; }
        .color-light-blue { color: #0061CD; }
        .bg-light-blue { background-color: #0061CD; }
        .color-yellow { color: #F3E04E; }
        .bg-yellow { background-color: #F3E04E; }
        .border-light-blue { border-color: #0061CD; }

        /* Utility Classes */
        .hidden { display: none; }
        .block { display: block; }
        .inline-flex { display: inline-flex; }
        .flex { display: flex; }
        .grid { display: grid; }
        .relative { position: relative; }
        .absolute { position: absolute; }
        .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .font-bold { font-weight: 700; }
        .font-extrabold { font-weight: 800; }
        .font-semibold { font-weight: 600; }
        .rounded-full { border-radius: 9999px; }
        .rounded-lg { border-radius: 0.5rem; }
        .rounded-xl { border-radius: 0.75rem; }
        .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); }
        .w-full { width: 100%; }
        .h-full { height: 100% !important; }
        .min-h-screen { min-height: 100vh; }
        .items-center { align-items: center; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .mx-auto { margin-left: auto; margin-right: auto; }
        .z-10 { z-index: 10; }
        .list-disc { list-style-type: disc; }
        .list-inside { list-style-position: inside; }
        .overflow-hidden { overflow: hidden; }
        
        /* Animation Keyframes */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
        .animate-fade-in-right { animation: fadeInRight 0.6s ease-out forwards; }
        .animate-fade-in-left { animation: fadeInLeft 0.6s ease-out forwards; }
        .animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }

        .animation-delay-100 { animation-delay: 100ms; }
        .animation-delay-200 { animation-delay: 200ms; }
        .animation-delay-300 { animation-delay: 300ms; }
        .animation-delay-400 { animation-delay: 400ms; }
        .animation-delay-500 { animation-delay: 500ms; }
        .animation-delay-600 { animation-delay: 600ms; }

        /* Button Styles */
        .btn-primary {
            transition: all 0.3s ease;
            transform: translateY(0);
            cursor: pointer;
            border: none;
            background-color: #F3E04E !important;
            color:#000 !important;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* Card Hover Effects */
        .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);
        }

        /* Fixed Navbar */
        .fixed-navbar {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: transparent;
            backdrop-filter: blur(5px);
            z-index: 1000;
            transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            padding: 1rem 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .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: none; /* Hidden on mobile */
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .fixed-navbar .nav-links-container::-webkit-scrollbar {
            display: none;
        }
        .fixed-navbar .nav-link {
            padding: 0.5rem 1rem;
        
            white-space: nowrap;
            border-radius: 9999px;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
        }
        .fixed-navbar .nav-link:hover {
            color: #F3E04E;
            background-color: none;
        }
        .fixed-navbar .nav-link.active-nav-link {
            background-color: #F3E04E;
            color: #1C3C6E;
            font-weight: 600;
        }
        @media (min-width: 768px) {
            .fixed-navbar .nav-links-container {
                display: flex;
                gap: 0.5rem;
            }
            .fixed-navbar {
/*
                padding-left: 4rem;
                padding-right: 4rem;
*/
            }
        }

        /* Hero Section */
        #hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            color: white;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        #hero .hero-overlay {
            position: absolute;
            inset: 0;
            background-color: black;
            opacity: 0.4;
        }
        #hero .hero-content {
            z-index: 10;
            padding: 1rem;
            max-width: 1280px;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        #hero .hero-text {
            text-align: left;
            margin-bottom: 2rem;
        }
        #hero .hero-text h1 {
            font-size: 6rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        #hero .hero-text p {
            
            margin-bottom: 2rem;
            line-height: 1.75;
        }
        #hero #heroQuoteBtn {
            background-color: #F3E04E;
            color: #1C3C6E;
            font-weight: 700;
            padding: 1rem 2.5rem;
            border-radius: 9999px;
            
        }
        #hero .pdf-download {
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            color: white;
            text-align: center;
        }
        #hero .pdf-download h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
		.pdf-download-img{
			display: block;
		}
        #hero .pdf-download img {
            margin: 0 auto 1rem auto;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
        }
        #hero .pdf-download a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background-color: #0061CD;
            color: white;
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            text-decoration: none;
        }
        #hero .pdf-download a:hover {
            background-color: #1C3C6E;
        }
        
        @media (min-width: 768px) {
            #hero .hero-content { flex-direction: row; }
            #hero .hero-text { width: 50%; margin-bottom: 0; }
            /* #hero .hero-text h1 { font-size: 3.75rem; }
            #hero .hero-text p { font-size: 1.25rem; } */
            #hero .pdf-download { width: 33.333%; }
        }

        /* Section Styles */
        .section {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }
        .section-title {
            font-size: 3.5rem !important;
            font-weight: 700;
            color: #1C3C6E;
            text-align: center;
            margin-bottom: 3rem;
            line-height: 1.2;
        }
        .section-subtitle {
            
            text-align: center;
            margin-bottom: 2rem;
            max-width: 80vw;
            margin-left: auto;
            margin-right: auto;
            color: #4B5563; /* gray-600 */
        }
        .text-lg {  }

        /* Why Engineering Section */
        #why-engineering .content-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
        }
        #why-engineering .text-content {
            width: 100%;
        }
        #why-engineering .text-content h2 {
            font-size: 3.5rem !important;
            font-weight: 700;
            color: #1C3C6E;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: left;
        }
        #why-engineering .text-content p {
            margin-bottom: 1rem;
            color: #374151;
            
        }
        #why-engineering .image-content {
            width: 100%;
        }
        #why-engineering .image-content img {
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            width: 100%;
        }
        @media (min-width: 768px) {
            #why-engineering .content-wrapper { flex-direction: row; }
            #why-engineering .text-content, #why-engineering .image-content { width: 50%; }
        }

        /* Why Choose Us Section */
        #why-choose-us .grid-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        #why-choose-us .feature-card {
            background-color: white;
            padding: 2rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            text-align: center;
        }
        #why-choose-us .icon-wrapper {
            margin: 0 auto 1rem auto;
            border-radius: 9999px;
            padding: 0.5rem;
            background-color: #0061CD;
            width: 8rem;
            height: 8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #why-choose-us .icon-wrapper i {
            font-size: 4rem;
            color: #F3E04E;
        }
        #why-choose-us .feature-card h3 {
        
            font-weight: 600;
            color: #1C3C6E;
            margin-bottom: 0.75rem;
        }
        #why-choose-us .feature-card p {
            color: #374151;
        }
        #why-choose-us .cta-button-wrapper {
            text-align: center;
            margin-top: 3rem;
        }
        #why-choose-us .cta-button-wrapper button {
            background-color: #F3E04E;
            color: #1C3C6E;
            font-weight: 700;
            padding: 0.75rem 2rem;
            border-radius: 9999px;
            
        }
        @media (min-width: 768px) {
            #why-choose-us .grid-container { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 1024px) {
            #why-choose-us .grid-container { grid-template-columns: repeat(4, 1fr); }
        }

        /* Carousel Styles */
        .carousel-container {
            overflow: hidden;
            position: relative;
        }
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .carousel-item {
            flex: 0 0 auto;
            width: calc(100% / 3);
            padding: 1rem  1rem  2rem  1rem;
            box-sizing: border-box;
            
        }
        #partnerCarousel .carousel-item {
            width: calc(100% / 6);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        #partnerCarousel .carousel-item img {
            width: 100px;
            height: 50px;
            object-fit: contain;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
        }
        #platformCarousel .carousel-item a {
            display: block;
            text-decoration: none;
            color: inherit;
            height:100%;
        }
        #platformCarousel .platform-card {
            background-color: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            /* justify-content: space-between; */
        }
        #platformCarousel .platform-card img {
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            width: 100%;
            height: 22rem; /* Increased from 10rem */
            object-fit: contain;
        }
        #platformCarousel .platform-card h3 {
        
            font-weight: 600;
            color: #1C3C6E;
            margin-bottom: 0.5rem;
        }
        #platformCarousel .platform-card p {
            
            color: #374151;
        }
        .carousel-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 9999px;
            padding: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            color: #1C3C6E;
            border: none;
            cursor: pointer;
        }
        .carousel-nav-btn:hover {
            background-color: rgba(255, 255, 255, 1);
        }
        .carousel-nav-btn.left { left: 1rem; }
        .carousel-nav-btn.right { right: 1rem; }
        
        @media (max-width: 1024px) {
            #partnerCarousel .carousel-item { width: calc(100% / 4); }
            .carousel-item { width: calc(100% / 2); }
        }
        @media (max-width: 768px) {
            .carousel-item { width: 100%; }
            #partnerCarousel .carousel-item { width: calc(100% / 2); }
        }

        /* Workflow Section */
        #workflow .workflow-flow {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            padding: 3rem 0;
        }
        #workflow .workflow-steps-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: stretch;
            width: 100%;
            position: relative;
            z-index: 10;
        }
        #workflow .step-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            flex: 1;
            padding: 1rem;
            margin-bottom: 2rem;
        }
        #workflow .step-circle {
            width: 64px;
            height: 64px;
            background-color: #F3E04E;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            font-weight: bold;
            color: #1C3C6E;
            border: 4px solid #1C3C6E;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            z-index: 10;
            transition: all 0.3s ease;
        }
        #workflow .step-content {
            background-color: #f8f8f8;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 260px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.3s ease;
        }
        #workflow .step-content h3 {
        
            font-weight: 600;
            color: #1C3C6E;
            margin-bottom: 0.5rem;
        }
        #workflow .step-content p {
            
            color: #374151;
        }
        #workflow .connector-line-horizontal {
            display: none;
            position: absolute;
            height: 4px;
            background-color: #0061CD;
            z-index: 5;
            top: 32px; /* Half of circle height */
        }
        @media (min-width: 768px) {
            #workflow .workflow-steps-wrapper { flex-direction: row; }
            #workflow .step-container { padding-top: 50px; margin-bottom: 0; }
            #workflow .step-circle { position: absolute; top: 0; transform: translateY(-50%); }
            #workflow .connector-line-horizontal { display: block; }
        }
        #workflow .step-container.active .step-circle {
            background-color: #0061CD;
            border-color: #F3E04E;
            color: #FFFFFF;
        }
        #workflow .step-container.active .step-content {
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            border: 2px solid #0061CD;
            transform: translateY(-5px);
        }

        /* Tabs and Tables */
        .tabs-nav {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }
        .tab-button {
            padding: 0.75rem 2rem;
            border-top-left-radius: 0.5rem;
            border-top-right-radius: 0.5rem;
            
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            background-color: transparent;
            cursor: pointer;
        }
        .tab-button.active {
            background-color: #1C3C6E;
            color: white;
            border-bottom: 3px solid #F3E04E;
        }
        .tab-content {
            background-color: #F9FAFB; /* gray-50 */
            padding: 2rem;
            border-bottom-left-radius: 0.5rem;
            border-bottom-right-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
        }
        .table-wrapper { overflow-x: auto; }
        .styled-table {
            min-width: 100%;
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
        }
        .styled-table thead tr {
            background-color: #0061CD;
            color: white;
        }
        .styled-table th {
            padding: 0.75rem 1rem;
            text-align: left;
            
            font-weight: 500;
            text-transform: uppercase;
        }
        .styled-table tbody tr {
            border-bottom: 1px solid #E5E7EB; /* gray-200 */
        }
        .styled-table tbody tr:hover {
            background-color: #F3F4F6; /* gray-100 */
        }
        .styled-table td {
            padding: 0.75rem 1rem;
            color: #374151;
        }
        .styled-table td:first-child { font-weight: 500; }
        .styled-table a { color: #0061CD; text-decoration: none; }
        .styled-table a:hover { text-decoration: underline; }

        /* Property Optimization Cards */
        #property-optimization .grid-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .property-opt-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-height: 300px;
            border: 1px solid #0061CD;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .property-opt-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.2);
        }
        .property-opt-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            transition: transform 0.5s ease;
        }
        .property-opt-card:hover img {
            transform: scale(1.05);
        }
        .property-opt-card .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(28, 60, 110, 0.95) 0%, rgba(28, 60, 110, 0.8) 50%, rgba(28, 60, 110, 0.4) 100%);
            z-index: 1;
            transition: background 0.3s ease;
        }
        .property-opt-card:hover .overlay {
            background: linear-gradient(to top, rgba(28, 60, 110, 0.98) 0%, rgba(28, 60, 110, 0.9) 50%, rgba(28, 60, 110, 0.6) 100%);
        }
        .property-opt-card .initial-title {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            color: white;
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            padding: 2rem;
            transition: opacity 0.3s ease, transform 0.3s ease;
            pointer-events: none;
        }
        .property-opt-card:hover .initial-title {
            opacity: 0;
            transform: translateY(-20px);
        }
        .property-opt-card .full-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 2;
            padding: 2rem;
            color: white;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.5s ease-out, opacity 0.5s ease-out;
            opacity: 0;
            box-sizing: border-box;
            height:100%;
       
        }
        .property-opt-card:hover .full-content {
            transform: translateY(0);
            opacity: 1;
        }
        .property-opt-card .full-content h3 {
            font-size: 2rem !important;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .property-opt-card .full-content p {
            line-height: 1.5;
            margin-bottom: 1rem;
        }
        @media (min-width: 768px) {
            #property-optimization .grid-container { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 1024px) {
            #property-optimization .grid-container { grid-template-columns: repeat(3, 1fr); }
        }

        /* Hot Products & Services */
        #hot-products-services .content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }
        #hot-products-services .service-column {
            width: 100%;
            padding: 2rem;
            background-color: #F9FAFB; /* gray-50 */
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
        }
        #hot-products-services .service-column h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        #hot-products-services .service-column h3 a {
            color: #0061CD;
            text-decoration: none;
        }
        #hot-products-services .service-column h3 a:hover {
            text-decoration: underline;
        }
        #hot-products-services .service-column ul {
            list-style-type: disc;
            list-style-position: inside;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            color: #374151;
            
        }
        #hot-products-services .service-column ul li a {
            color: #0061CD;
            text-decoration: none;
        }
        #hot-products-services .service-column ul li a:hover {
            text-decoration: underline;
        }
        #hot-products-services .service-column p {
            color: #374151;
            
            margin-bottom: 1.5rem;
        }
        #hot-products-services .service-column p a {
            color: #0061CD;
            text-decoration: none;
        }
        #hot-products-services .service-column p a:hover {
            text-decoration: underline;
        }
        #hot-products-services .service-column button {
            margin-top: 2rem;
        }
        @media (min-width: 1024px) {
            #hot-products-services .content-wrapper { flex-direction: row; }
            #hot-products-services .service-column { width: 50%; }
        }


        /* FAQs (Accordion) */
        #faqs .faq-container {
            margin: auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .accordion-item {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            overflow: hidden;
        }
        .accordion-header {
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            background-color: #1C3C6E;
            color: white;
        }
        .accordion-header h3 {
        
            font-weight: 600;
        }
        .accordion-header i {
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }
        .accordion-header i.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;
            color: #374151;
        }
        .accordion-content.active {
            max-height: 500px;
            padding: 1.5rem;
        }



.btn-nav-quote {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    margin-left: 1rem;
}




.bg-f9fafb {
    background-color: #F9FAFB;
}

.bg-white {
    background-color: white;
}

.bg-f3f4f6 {
    background-color: #F3F4F6;
}

.btn-lg {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
}

.text-center {
    text-align: center;
}

.mt-3rem {
    margin-top: 3rem;
}

.tk-container-flex {
    display: flex;
    align-items: center;
}

.disclaimer-icon {
    color: #EF4444;

    margin-right: 1rem;
}

.disclaimer-text {
    color: #374151;
    
}

.related-link {
    padding: 1.5rem;
    background-color: #0061CD;
    color: white;
    border-radius: 0.75rem;
    text-decoration: none;

    font-weight: 600;
    display: block;
}

.related-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: white;
}
.related-sections-cont{
    display: grid; 
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.related-sections-cont a{
    color:#fff;
}