/* Reset and Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #334155; background-color: #f8fafc; } /* Container */ .container { min-height: 286vh; display: flex; flex-direction: column; } /* Hero Section */ .hero-section { background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%); padding: 4rem 1rem; text-align: center; border-bottom: 1px solid #e2e8f0; } .hero-content { max-width: 1200px; margin: 0 auto; } .service-subtitle { padding: 20px 20px 0; margin: 0 0 -15px; color: #487596; font-weight: bolder; font-size: 16px; } .hero-title { font-size: clamp(2rem, 5vw, 4rem); font-weight: 300; color: #1e293b; margin-bottom: 1rem; } .hero-accent { color: #2563eb; font-weight: 500; } /* Tabs Container */ .tabs-container { flex: 1; display: flex; flex-direction: column; background: white; box-shadow: 0 4px 16px 6px rgba(0, 0, 0, 0.08); } /* Tab Navigation */ .tab-navigation { background: #7BA095; color: white; height: 70px; display: flex; align-items: stretch; position: relative; border-bottom: 1px solid rgba(255, 255, 255, 0.2); } @media (min-width: 768px) { .tab-navigation { height: 125px; } } .tab-scroll-buttons { display: flex; align-items: center; z-index: 10; } .scroll-button { background: #7BA095; border: none; color: #64748b; padding: 0 0.5rem; height: 100%; cursor: pointer; transition: background-color 0.2s ease; display: none; } .scroll-button:hover { background: #6E8D7E; } .scroll-button.visible { display: flex; align-items: center; justify-content: center; } .tabs-wrapper { flex: 1; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; } .tabs-wrapper::-webkit-scrollbar { display: none; } .tabs-nav { display: flex; height: 100%; min-width: 100%; } @media (min-width: 768px) { .tabs-nav { justify-content: center; min-width: auto; } } /* Tab Buttons */ .tab-button { background: transparent; border: none; color: white; cursor: pointer; font-size: 0.75rem; font-weight: 400; min-width: 180px; padding: 0 2rem; position: relative; transition: all 0.2s ease; border-right: 1px solid rgba(255, 255, 255, 0.2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; } .tab-button:last-child { border-right: none; } .tab-button:hover { background: #6E8D7E; } .tab-button.active { background: #487596; padding: 0 3rem; } .tab-button.active::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 4px; background: #2F6D9A; } @media (min-width: 640px) { .tab-button { font-size: 0.875rem; min-width: 220px; padding: 0 2.5rem; } .tab-button.active { padding: 0 3.5rem; } } @media (min-width: 768px) { .tab-button { font-size: 1rem; min-width: 260px; flex: 1; flex-basis: 0; flex-shrink: 1; flex-grow: 1; } .tab-button.active { padding: 0 3rem; } } /* Tab Content */ .tab-content { display: flex; align-items: center; gap: 0.5rem; } .tab-icon { width: 40px; height: 40px; flex-shrink: 0; stroke-width: 0.75; } .tab-button.active .tab-icon { width: 45px; height: 45px; } @media (min-width: 768px) { .tab-icon { width: 50px; height: 50px; } .tab-button.active .tab-icon { width: 60px; height: 60px; } } .tab-text { text-align: left; line-height: 1.2; margin-left: 0.375rem; } .tab-full { display: none; } .tab-short { display: inline; } @media (min-width: 640px) { .tab-full { display: inline; } .tab-short { display: none; } } /* Tab Panels */ .tab-content-wrapper { flex: 1; position: relative; overflow: hidden; background: #f3f7fd; } .tab-panel { position: absolute; top: 0; left: 0; right: 0; bottom: 0; padding: 1rem; overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; } .tab-panel.active { opacity: 1; pointer-events: auto; } @media (min-width: 640px) { .tab-panel { padding: 2rem; } } @media (min-width: 768px) { .tab-panel { padding: 3rem; } } /* Tab Header */ .tab-header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; animation: fadeInUp 0.5s ease; } @media (min-width: 768px) { .tab-header { flex-direction: row; align-items: flex-start; margin-bottom: 3rem; } } .header-content { flex: 1; } .section-title { font-family: 'Noto Sans Mono', monospace; font-size: 2rem; font-weight: 300; color: #1e293b; margin-bottom: 1.5rem; animation: fadeIn 0.5s ease 0.1s both; } @media (min-width: 768px) { .section-title { font-size: 2.5rem; } } .section-description { font-size: 1.25rem; color: #475569; line-height: 1.4; animation: fadeIn 0.5s ease 0.2s both; } @media (min-width: 768px) { .section-description { font-size: 1.5rem; margin-right: 2rem; } } .header-image { width: 100%; max-width: 350px; margin: 0 auto; animation: fadeInScale 0.5s ease 0.3s both; } @media (min-width: 768px) { .header-image { width: auto; flex-shrink: 0; margin: 0; } } .section-image { width: 100%; height: 200px; object-fit: cover; border-radius: 0.5rem; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); } @media (min-width: 768px) { .section-image { width: 350px; height: 220px; } } /* Stats Grid */ .stats-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 2rem 0; } @media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 3rem 0; } } @media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } } .stat-card { background: #FEFDFB; padding: 2rem 1.5rem; border-radius: 0.5rem; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); display: flex; align-items: center; gap: 1rem; font-family: 'Noto Sans Mono', monospace; } .stat-value { font-size: 3rem; font-weight: 500; color: #2F6D9A; white-space: nowrap; } @media (min-width: 768px) { .stat-value { font-size: 3.5rem; } } .stat-label { font-size: 1.125rem; font-weight: 500; color: #64748b; line-height: 1.2; } @media (min-width: 768px) { .stat-label { font-size: 1.25rem; } } /* Section Note */ .section-note { font-size: 1.125rem; color: #475569; margin: 2rem 0; padding: 2rem 0; } @media (min-width: 768px) { .section-note { font-size: 1.25rem; } } /* Section Divider */ .section-divider { width: 100%; height: 2px; background: rgba(203, 213, 225, 0.8); margin: 2rem 0; } /* Services Section */ .services-section { margin: 2.5rem 0; } .services-title { font-family: 'Noto Sans Mono', monospace; font-size: 1.875rem; font-weight: 300; color: #1e293b; margin-bottom: 1rem; padding: 0.9375rem 0; } @media (min-width: 768px) { .services-title { font-size: 2.25rem; } } .services-description { font-size: 1.125rem; color: #475569; margin-bottom: 3rem; line-height: 1.5; } @media (min-width: 768px) { .services-description { font-size: 1.5rem; } } /* Services Grid */ .services-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; } @media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } } /* Service Cards */ .service-card { background: #FEFDFB; border-radius: 0.5rem; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); cursor: pointer; transition: all 0.2s ease; } .service-card:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); } .service-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 1.25rem; } .service-info { display: flex; align-items: center; gap: 1rem; } .service-icon { width: 2rem; height: 2rem; color: #2F6D9A; flex-shrink: 0; stroke-width: 0.75; } @media (min-width: 768px) { .service-icon { width: 2.5rem; height: 2.5rem; } } .service-title { font-weight: 600; color: #1e293b; font-size: 1rem; line-height: 1.3; } @media (min-width: 768px) { .service-title { font-size: 1.125rem; } } .service-toggle { color: #9ca3af; transition: transform 0.2s ease; } .service-toggle.expanded { transform: rotate(180deg); } .service-toggle svg { width: 1.25rem; height: 1.25rem; stroke-width: 0.75; } .service-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, opacity 0.3s ease; opacity: 0; } .service-content.expanded { max-height: 1000px; opacity: 1; } .service-description { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: #475569; line-height: 1.6; } .service-description p { margin-bottom: 0.5rem; } .service-description .font-medium { font-weight: 500; margin: 1rem 0; } .service-description ul { list-style: disc; padding-left: 1.25rem; margin-top: 0.25rem; } .service-description li { margin-bottom: 0.25rem; } /* Software Section */ .software-section { margin: 2.5rem 0; } .software-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; } @media (min-width: 640px) { .software-grid { grid-template-columns: repeat(3, 1fr); } } @media (min-width: 768px) { .software-grid { grid-template-columns: repeat(5, 1fr); margin-top: 2.5rem; } } .software-card { background: #FEFDFB; border-radius: 0.5rem; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); padding: 1rem; display: flex; flex-direction: column; align-items: center; text-align: center; height: 9rem; } @media (min-width: 640px) { .software-card { height: 10rem; } } .software-logo { flex: 1; max-height: 5rem; max-width: 100%; object-fit: contain; margin-bottom: 0.5rem; } @media (min-width: 768px) { .software-logo { max-height: 6rem; } } .software-logo-text { flex: 1; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 600; color: #64748b; } .software-name { font-size: 0.75rem; font-weight: 500; color: #374151; line-height: 1.2; padding-top: 0.5rem; } @media (min-width: 768px) { .software-name { font-size: 0.875rem; } } /* Compliance Section */ .compliance-section { margin: 2.5rem 0; } .compliance-grid { background: #FEFDFB; border-radius: 0.5rem; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); padding: 1.5rem; margin: 1.5rem 0; display: grid; grid-template-columns: 1fr; gap: 1.5rem; } @media (min-width: 768px) { .compliance-grid { grid-template-columns: repeat(3, 1fr); } } .compliance-item { display: flex; align-items: center; gap: 1rem; justify-content: flex-start; } .compliance-icon { background: #eef8ff; padding: 1rem; border-radius: 50%; flex-shrink: 0; } .compliance-icon svg { width: 2rem; height: 2rem; color: #2F6D9A; } .compliance-title { font-size: 1rem; font-weight: 500; color: #1e293b; } @media (min-width: 768px) { .compliance-title { font-size: 1.125rem; } } /* Animations */ @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInScale { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } } /* Utility Classes */ .w-5 { width: 1.25rem; } .h-5 { height: 1.25rem; } /* Responsive adjustments for very small screens */ @media (max-width: 380px) { .tab-button { min-width: 160px; padding: 0 1.5rem; font-size: 0.6875rem; } .tab-icon { width: 35px; height: 35px; } .tab-button.active .tab-icon { width: 40px; height: 40px; } } .home .tab-content { opacity: 1; }
/* 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;
}
}
