/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: Child Theme for Hello Elementor
Author: Your Name
Author URI: https://yourwebsite.com
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hello-elementor-child
*/
.site-navigation ul.menu li a {
    display: block;
    padding: 8px 15px;
    text-decoration-line: underline;
    text-underline-position: from-font;
    text-decoration-thickness: from-font;
    text-decoration-style: solid;
    cursor: pointer;
    white-space: pre;
    line-height: 1.45;
    font-variation-settings: normal;
    color: rgb(72, 117, 150);
    --letter-spacing: -0.08px;
    font-family: "Inter:Regular", sans-serif;
    word-break: break-word;
}
header#site-header {
    padding: 24px 64px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 11.9px 0px;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 9;
}
body {
    background: url(https://nsightglobal.com/wp-content/uploads/2025/09/97fb7383f16b9c39da67fce6881ada6c2f342a0f-scaled.webp);
    background-position: top center;
}
.hero::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    height: 100%;
    width: 100%;
}
.rcm-section {
  display: flex; 
  justify-content: space-between;  
  border-radius: 10px; 
}

.rcm-text {
    flex: 1;
    padding-right: 20px;
    font-size: 1.5rem;
}
.rcm-text h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #000;
    font-family: "Noto Sans Mono", monospace;
}
.rcm-text p {
  font-size: 17px;
  color: #475467;
  line-height: 1.6;
}

.rcm-text strong {
  font-weight: 600;
  color: #1d2939;
}

.rcm-image {
  flex: 0 0 350px; /* fixed width for image */
  text-align: right;
}

.rcm-image img {
  max-width: 100%;
  border-radius: 8px;
}
.stats-container {
    display: flex
;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
    margin-top: 30px;
}
.stat-box {
    flex: 1;
    background: #fff;
    padding: 20px;
    font-family: "Noto Sans Mono", monospace;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: grid
;
    grid-template-columns: 0.5fr 1fr;
    align-items: center;
}
.stat-value {
    font-size: 3rem;
    font-weight: 500;
    color: #2f6d9a;
    text-align: left;
}
.stat-label {
    font-size: 20px;
    color: #333;
    text-align: left;
}
.w-full.h-0\.5.bg-gray-300\/80.my-8 {
    background-color: #d1d5dca8;
    height: 2px;
    margin: 40px 0 0;
    text-align: center;
}
   .accordion-content { display: none; }
    .accordion-content.active { display: block; }
    .accordion-arrow { transition: transform 0.3s ease; }
    .accordion-arrow.rotate { transform: rotate(180deg); }

ul.list-it {
    padding-left: 20px;
    list-style: disc;
}
ul.list-it li {
    padding-bottom:10px; 
}

/* Custom Styles */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.1s;
}

.fade-in-delay-2 {
    animation-delay: 0.2s;
}

.fade-in-delay-3 {
    animation-delay: 0.3s;
}

.slide-in-up {
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInUp 0.5s ease-out forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    animation: scaleIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth transitions */
.smooth-transition {
    transition: all 0.3s ease;
}

.rotate-180 {
    transform: rotate(180deg);
}

/* Grid responsive classes */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

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

/* Card hover effects */
.service-card {
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

/* Expandable content animation */
.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out, opacity 0.25s ease-out;
    opacity: 0;
}

.expandable-content.expanded {
    max-height: 500px;
    opacity: 1;
}

/* Tab active indicator */
.tab-indicator {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #2F6D9A;
}

/* Image fallback styling */
.image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    border: 2px dashed #d1d5db;
}

/* Logo grid responsive */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
 
@media (min-width: 640px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* Stat card styling */
.stat-card {
    font-family: 'Noto Sans Mono', monospace;
}

/* Tab button styling */
.tab-button {
    position: relative;
    font-family: 'Noto Sans Mono', monospace;
}

.tab-button.active {
    background-color: #487596;
}

.tab-button:not(.active) {
    background-color: transparent;
}

.tab-button:not(.active):hover {
    background-color: #6E8D7E;
}

*, ::before, ::after{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}::after,::before{--tw-content:''}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0px}.bottom-0{bottom:0px}.left-0{left:0px}.right-0{right:0px}.top-0{top:0px}.z-10{z-index:10}.mx-\[0px\]{margin-left:0px;margin-right:0px}.my-4{margin-top:1rem;margin-bottom:1rem}.my-8{margin-top:2rem;margin-bottom:2rem}.my-\[16px\]{margin-top:16px;margin-bottom:16px}.my-\[24px\]{margin-top:24px;margin-bottom:24px}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-\[0px\]{margin-bottom:0px}.mb-\[24px\]{margin-bottom:24px}.mb-\[45px\]{margin-bottom:45px}.ml-\[0px\]{margin-left:0px}.ml-\[6px\]{margin-left:6px}.mr-\[0px\]{margin-right:0px}.mr-\[32px\]{margin-right:32px}.mt-1{margin-top:0.25rem}.mt-10{margin-top:2.5rem}.mt-4{margin-top:1rem}.mt-8{margin-top:2rem}.mt-\[-20px\]{margin-top:-20px}.mt-\[0px\]{margin-top:0px}.mt-\[4px\]{margin-top:4px}.inline{display:inline}.flex{display:flex}.grid{display:grid}.hidden{display:none}.h-5{height:1.25rem}.h-\[70px\]{height:70px}.h-full{height:100%}.h-0\.5{height:0.125rem}.h-36{height:9rem}.h-8{height:2rem}.h-\[200px\]{height:200px}.h-\[40px\]{height:40px}.h-\[45px\]{height:45px}.h-\[50px\]{height:50px}.h-\[60px\]{height:60px}.max-h-20{max-height:5rem}.min-h-screen{min-height:100vh}.w-5{width:1.25rem}.w-full{width:100%}.w-8{width:2rem}.w-\[40px\]{width:40px}.w-\[45px\]{width:45px}.min-w-\[180px\]{min-width:180px}.max-w-7xl{max-width:80rem}.max-w-3xl{max-width:48rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.cursor-pointer{cursor:pointer}.snap-x{scroll-snap-type:x var(--tw-scroll-snap-strictness)}.snap-center{scroll-snap-align:center}.list-disc{list-style-type:disc}.grid-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.items-start{align-items:flex-start}.items-center{align-items:center}.items-stretch{align-items:stretch}.justify-start{justify-content:flex-start}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:0.5rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-y-1 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0.25rem * var(--tw-space-y-reverse))}.space-y-2 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0.5rem * var(--tw-space-y-reverse))}.space-y-4 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-y-6 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.space-y-8 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(2rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(2rem * var(--tw-space-y-reverse))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:0.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:0.5rem}.border-b{border-bottom-width:1px}.border-r{border-right-width:1px}.border-white\/20{border-color:rgb(255 255 255 / 0.2)}.bg-\[\#7BA095\]{--tw-bg-opacity:1;background-color:rgb(123 160 149 / var(--tw-bg-opacity, 1))}.bg-gray-50{--tw-bg-opacity:0.8;background-color:rgb(249 250 251 / var(--tw-bg-opacity, 0.8))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.bg-\[\#FEFDFB\]{--tw-bg-opacity:1;background-color:rgb(254 253 251 / var(--tw-bg-opacity, 1))}.bg-\[\#eef8ff\]{--tw-bg-opacity:1;background-color:rgb(238 248 255 / var(--tw-bg-opacity, 1))}.bg-gray-300\/80{background-color:rgb(209 213 219 / 0.8)}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-2{padding-left:0.5rem;padding-right:0.5rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.px-\[0px\]{padding-left:0px;padding-right:0px}.py-4{padding-top:1rem;padding-bottom:1rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.py-\[15px\]{padding-top:15px;padding-bottom:15px}.py-\[8px\]{padding-top:8px;padding-bottom:8px}.py-\[32px\]{padding-top:32px;padding-bottom:32px}.pb-5{padding-bottom:1.25rem}.pl-5{padding-left:1.25rem}.pt-2{padding-top:0.5rem}.text-left{text-align:left}.text-center{text-align:center}.text-2xl{font-size:1.5rem;line-height:2rem}.text-5xl{font-size:3rem;line-height:1}.text-\[24px\]{font-size:24px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:0.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:0.75rem;line-height:1rem}.font-light{font-weight:300}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.leading-snug{line-height:1.375}.leading-tight{line-height:1.25}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128 / var(--tw-text-opacity, 1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.text-\[\#2F6D9A\]{--tw-text-opacity:1;color:rgb(47 109 154 / var(--tw-text-opacity, 1))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175 / var(--tw-text-opacity, 1))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99 / var(--tw-text-opacity, 1))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81 / var(--tw-text-opacity, 1))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55 / var(--tw-text-opacity, 1))}.opacity-0{opacity:0}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-colors{transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.duration-200{transition-duration:200ms}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}@media (min-width: 640px){.sm\:inline{display:inline}.sm\:hidden{display:none}.sm\:h-40{height:10rem}.sm\:min-w-\[220px\]{min-width:220px}.sm\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\:px-12{padding-left:3rem;padding-right:3rem}.sm\:px-8{padding-left:2rem;padding-right:2rem}.sm\:text-base{font-size:1rem;line-height:1.5rem}.sm\:text-sm{font-size:0.875rem;line-height:1.25rem}}@media (min-width: 768px){.md\:mt-0{margin-top:0px}.md\:mt-10{margin-top:2.5rem}.md\:mt-12{margin-top:3rem}.md\:mt-6{margin-top:1.5rem}.md\:block{display:block}.md\:h-\[125px\]{height:125px}.md\:h-10{height:2.5rem}.md\:h-\[220px\]{height:220px}.md\:max-h-24{max-height:6rem}.md\:w-10{width:2.5rem}.md\:w-\[350px\]{width:350px}.md\:w-\[50px\]{width:50px}.md\:w-\[60px\]{width:60px}.md\:w-auto{width:auto}.md\:min-w-\[260px\]{min-width:260px}.md\:flex-1{flex:1 1 0%}.md\:flex-shrink{flex-shrink:1}.md\:grow{flex-grow:1}.md\:basis-0{flex-basis:0px}.md\:grid-cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.md\:flex-row{flex-direction:row}.md\:justify-center{justify-content:center}.md\:space-y-10 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(2.5rem * var(--tw-space-y-reverse))}.md\:overflow-visible{overflow:visible}.md\:px-12{padding-left:3rem;padding-right:3rem}.md\:text-2xl{font-size:1.5rem;line-height:2rem}.md\:text-3xl{font-size:1.875rem;line-height:2.25rem}.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}.md\:text-base{font-size:1rem;line-height:1.5rem}.md\:text-lg{font-size:1.125rem;line-height:1.75rem}.md\:text-sm{font-size:0.875rem;line-height:1.25rem}.md\:text-xl{font-size:1.25rem;line-height:1.75rem}}
.textContents.css-61ygn9.css-vkpzlc.css-big338.css-hef06a {    
    --tw-bg-opacity: 0.8;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
    padding:60px 0 40px;
    text-align:center;
    font-family: "IBM Plex Mono:Regular", sans-serif;
    word-break: break-word;
    font-style: normal;
    font-size: 48px;
    line-height: 1.4;
}
p.css-4hzbpn {font-family: "IBM Plex Mono", monospace;}
span.css-pmwtsv.css-zg27u7 {
    color: #487596;
    font-weight: bold;
}
span.css-ql8nog {
    font-weight: 100;
}
/* Case Studies Page Styles */

/* IBM Plex Mono Font Import */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;600;700&display=swap');

/* Base Styles */
.case-studies-page {
    min-height: 100vh;
    background-color: #FEFDFB;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 1180px;
}

/* Hero Section */
.hero-section {
    background-color: #487596;
    color: white;
    padding: 32px 16px;
}

.hero-content {
    width: 100%;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out forwards;
}

.hero-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 16px;
    font-family: 'IBM Plex Mono', monospace;
    color: white;
    margin-top: 0;
    margin-left: 12px;
}

.hero-description {
    font-size: 1rem;
    max-width: 48rem;
    color: white;
    margin: 0 12px;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out 0.1s forwards;
}

/* Tabs Navigation */
.tabs-navigation {
    background-color: #F3F7FD;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
    margin: 0;
}

.tabs-container {
    width: 100%;
}

/* Desktop Tabs */
.desktop-tabs {
    display: none;
    height: 4rem;
    width: 100%;
}

@media (min-width: 640px) {
    .desktop-tabs {
        display: flex;
        overflow-x: auto;
    }
}

.tab-button {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    border-right: 1px solid #d1d5db;
}

.tab-button:last-child {
    border-right: none;
}

.tab-button.active {
    background-color: #7BA095;
    color: white;
}

.tab-button:not(.active) {
    background-color: rgba(123, 160, 149, 0.15);
    color: #487596;
}

.tab-button:not(.active):hover {
    background-color: #487596;
    color: white;
}

.tab-icon {
    width: 26px;
    height: 26px;
    stroke-width: 0.9;
}

/* Mobile Tabs */
.mobile-tabs {
    display: block;
    position: relative;
}

@media (min-width: 640px) {
    .mobile-tabs {
        display: none;
    }
}

.mobile-tab-button {
    width: 100%;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: #7BA095;
    color: white;
    border: none;
    cursor: pointer;
}

.mobile-tab-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chevron-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.chevron-icon.rotate {
    transform: rotate(180deg);
}

.mobile-dropdown {
    position: absolute;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 20;
    display: none;
}

.mobile-dropdown.show {
    display: block;
}

.mobile-dropdown-item {
    width: 100%;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    border: none;
    cursor: pointer;
    color: #374151;
    background-color: transparent;
    transition: background-color 0.2s ease;
}

.mobile-dropdown-item:hover {
    background-color: #f3f4f6;
}

.mobile-dropdown-item.active {
    background-color: #F3F7FD;
    color: #7BA095;
}

/* Main Content */
.main-content {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

@media (min-width: 640px) {
    .main-content {
        padding: 2rem 1.5rem;
    }
}

.vertical-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #111827;
    margin-bottom: 1.5rem;
    font-family: 'IBM Plex Mono', monospace;
}

@media (min-width: 640px) {
    .vertical-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* Tab Content */
 
.tab-content.active {
    display: block;
    opacity: 1;
}

/* Case Studies Section */
.case-studies-section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #487596;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

@media (min-width: 640px) {
    .section-title {
        margin-bottom: 1.5rem;
    }
}

.title-line {
    background-color: #487596;
    width: 1.5rem;
    height: 2px;
    margin-right: 8px;
}

.case-studies-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.case-study-card {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.case-study-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    background-color: rgba(123, 160, 149, 0.15);
}

.case-study-title {
    font-size: 1rem;
    font-weight: 400;
    color: #1f2937;
    font-family: 'IBM Plex Mono', monospace;
    padding: 0.5rem 0;
    margin: 0;
}

@media (min-width: 640px) {
    .case-study-title {
        font-size: 1.125rem;
    }
}

.case-study-content {
    padding: 1rem;
}

.case-study-section {
    margin-bottom: 0.75rem;
}

.case-study-section:last-of-type {
    margin-bottom: 0;
}

.case-study-label {
    font-weight: 700;
    font-size: 0.875rem;
    color: #374151;
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 0.5rem;
}

.case-study-text {
    font-size: 0.875rem;
    color: #4b5563;
    margin-left: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .case-study-text {
        font-size: 1rem;
    }
}

.case-study-link {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #487596;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
	background: none;
}
.read-more-btn:focus  {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #487596;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
	background: none;
}

.read-more-btn:hover {
    color: #7BA095;
    text-decoration: underline;
    background: none;
}

.arrow-icon {
    width: 1rem;
    height: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 0;
}

.testimonials-grid {
    display: grid;
    gap: 1rem;
}

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

.testimonial-card {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
    .testimonial-card {
        padding: 1.25rem;
    }
}

.quote-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #487596;
    opacity: 0.5;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .quote-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.testimonial-text {
    font-size: 0.875rem;
    color: #374151;
    font-style: italic;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .testimonial-text {
        font-size: 1rem;
    }
}

.testimonial-author {
    margin-top: 1rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1f2937;
    font-family: 'IBM Plex Mono', monospace;
    margin: 0;
}

@media (min-width: 640px) {
    .author-name {
        font-size: 1rem;
    }
}

.author-title {
    font-size: 0.75rem;
    color: #4b5563;
    margin: 0;
}

@media (min-width: 640px) {
    .author-title {
        font-size: 0.875rem;
    }
}

/* CTA Section */
.cta-section {
    background-color: #F3F7FD;
    padding: 32px 1rem;
}

.cta-content {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 1.5rem;
    }
}

.cta-description {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .cta-description {
        font-size: 1rem;
    }
}

.cta-button {
    display: inline-block;
    background-color: #487596;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #7BA095;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Typography */
@media (min-width: 640px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.25rem;
    }
}
 button.px-3.py-2.sm\:px-4.rounded-md.text-xs.sm\:text-sm.font-medium.careers-tab-inactive {
    border: none;
}

button.px-3.py-2.sm\:px-4.rounded-md.text-xs.sm\:text-sm.font-medium.careers-tab-active {
    border: none;
}
.home .bg-white {
    min-height: 2000px !important;
}
.home .tab-button:not(.active) {
    font-size:20px;
    color: #fff;
}
.tab-button.active {
    font-size:20px;
    color: #fff;
    background:#487596;
}

/* Home style */
.tab-content {
    opacity: 0;
    display: none;
}
section.timeline-section {
    display: none;
}
.bg-gray-50 {
    --tw-bg-opacity: 0.8;
    background-color : rgb(249 250 251 / var(--tw-bg-opacity, 0.8));
}
/* Medium devices (tablets, 640px - 1023px) */
@media (min-width: 300px) and (max-width: 1023px) {
 	.case-studies-page.case-studies-page { 
    max-width: 100%!important;
    min-height: auto!important;
}
header#site-header {
    padding: 24px 15px!important; 
    z-index: 9;
}
	.tab-content {
    font-size: 14px;
}
}