/* ==========================================
   PAFDA Landing Page - Design System
   Based on Figma Design
   ========================================== */

/* CSS Variables - Colors from Figma */
:root {
    /* Primary Colors */
    --color-primary: #1D2530;
    --color-secondary: #3D5AA8;
    --color-white: #FFFFFF;
	
    
    /* Text Colors */
    --color-text-primary: #67717E;
    --color-text-secondary: #757873; /* Camouflage Green */
    --color-text-gray: #47566B;
    --color-text-dark: #676060; /* Smoky Charcoal */
    --color-text-emperor: #4F4F4F;
    
    /* Background Colors */
    --color-bg-light: #FCFBF9;
    --color-bg-beige: #F3EEE9;
    --color-bg-blue-light: #E9FCFF;
    --color-bg-gray-light: #E6EBF0;
    
    /* Accent Colors */
    --color-alto: #D9D9D9;
    --color-border: #D8CDCD;
    --color-badge-bg: rgba(255,255,255,0);/*rgba(61, 90, 168, 0.12);*/
    
    /* Typography */
    --font-primary: 'DM Sans', sans-serif;
    --font-secondary: 'Aleo', serif;
    --font-accent: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 80px;
    --spacing-4xl: 96px;
    --spacing-5xl: 120px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    --shadow-md: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0px 4px 44px 0px rgba(0, 0, 0, 0.06);
}

/* ==========================================
   Global Styles
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    line-height: 1.5;
    font-size: 16px;
    background-color: var(--color-white);
    overflow-x: hidden;
	letter-spacing: -0.5px;
	/* Enable automatic optical sizing */
    font-optical-sizing: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==========================================
   Typography
   ========================================== */
/* ==========================================
   Typography with Optical Sizing
   ========================================== 
   
   Optical sizing automatically adjusts font features based on size:
   - Small text (9-16px): Wider letterforms, more spacing, thicker strokes
   - Medium text (16-24px): Balanced proportions
   - Display text (24-40px+): Finer details, higher contrast, tighter spacing
   
   Implementation:
   - font-optical-sizing: auto - Enables automatic optical sizing
   - font-variation-settings: 'opsz' N - Manual control (N = font size)
   ========================================== */
h1 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 64px;
    line-height: 69px;
    letter-spacing: -5px;
	/* Optical sizing optimized for large display text */
    font-optical-sizing: auto;
    font-variation-settings: 'opsz' 40;
}
/* Small Desktop 993px - 1279px */
@media (min-width: 993px) and (max-width: 1279px) {
    h1 {
        font-size: 40px;
        line-height: 44px;
		letter-spacing: -3px;
    }
    .navbar {
        top: 49px !important;
        padding: 32px 40px 32px 60px !important;
    }
    .navbar-menu a {
        font-size: 13.5px !important;
    }
}

/* Medium Desktop 1280px - 1599px */
@media (min-width: 1280px) and (max-width: 1599px) {
    h1 {
        font-size: 56px;
        line-height: 62px;
    }
}

/* Large Desktop 1600px+ */
@media (min-width: 1600px) {
    h1 {
        font-size: 64px;
        line-height: 69px;
    }
}

h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.42;
    letter-spacing: -1px;
	color: var(--color-primary);
}

h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.17;
    letter-spacing: -1px;
	color: var(--color-primary);
}

h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -1px;
}

p {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-text-secondary);
	letter-spacing:  -0.5px;
}





/* ==========================================
   Layout Containers
   ========================================== */

.container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 var(--spacing-2xl);
}

.container-row {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 var(--spacing-3xl);
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.section {
    padding: var(--spacing-2xl) 0;
}

/* Top News */
.top-news {
    background: linear-gradient(102.03deg, #3D5AA8 9.23%, #A6CE39 123.97%);
    padding: 8px 80px;
    text-align: center;
}
.top-news p {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.17;
    letter-spacing: -1.5px;
    color: var(--color-white);
}
.top-news .news-link{
    color: var(--color-white);
    margin-left: 40px;
    vertical-align: top;
	font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 16px;
}
.top-news .news-link svg{
    margin-left: 5px;
}

.top-news .news-link:hover{
    color: var(--color-white);
}
.top-news .news-link::after,.top-news .news-link:hover::after{
    background-color: var(--color-white);
	width: 100%;
}
/* ==========================================
   Top Bar
   ========================================== */

.top-bar {
    background-color: #0B3B2E;
    border-bottom: 1px solid rgba(11, 59, 46, 0.25);
    padding: 10px var(--spacing-5xl);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.top-bar-left {
    display: flex;
    gap: var(--spacing-sm);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: -0.02em;
}

.top-bar-right span {
    color: var(--color-white);
    font-weight: 500;
    font-size: 16px;
}

/* ==========================================
   Navbar
   ========================================== */

.navbar {
    position: absolute;
    top: 109px;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 1000;
    padding: 32px var(--spacing-3xl) 32px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1680px;
    margin: 0 auto;
}

.navbar-logo img {
    height: 63px;
}
.about-navbar .navbar-logo img {
    height: 48px;
}

.navbar-menu {
    display: flex;
    gap: 30px;
}
.navbar-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar-menu ul li {
    padding: 0 !important;
    color: var(--color-white);
    font-weight: 400;
    font-size: 17.5px;
    line-height: 1.45;
    letter-spacing: -0.02em;
    background-color: transparent;
    transition: color 0.3s ease;
    position: relative;
    
}
.navbar-menu ul li ul{
    display: none;
    position: absolute;
    top: 26px;
    left:0;
    background: var(--color-white);
    border-radius: 8px;
    z-index: 1000;    
    
}

.navbar.home .navbar-menu a {
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
}

.navbar.scrolled .navbar-menu a{
    color: var(--color-primary);
    text-shadow: none;
}

.navbar-menu li:hover {
    color: var(--color-secondary);
}
.navbar-menu li:hover ul {
    display: flex;
    flex-direction: column;
    width: 220px;
    gap: 0px;
    
}
.navbar-menu li:hover ul li {
    color: var(--color-primary);
    text-shadow: none;
    padding: 10px 20px 5px !important;
}
.navbar-menu li ul li:hover {
    color: var(--color-secondary);  
    background: rgba(29, 78, 216, 0.08);
}

/* Dropdown Navigation */
.nav-item.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 20px;
    color: var(--color-white);
    font-weight: 400;
    font-size: 17.5px;
    line-height: 1.45;
    letter-spacing: -0.02em;
    
    cursor: pointer;
    transition: color 0.3s ease;
}

.navbar.home .dropdown-toggle {
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
}

.navbar.scrolled .dropdown-toggle {
    color: var(--color-primary);
    text-shadow: none;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 0px;
    z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

a.dropdown-item {
    display: block;
    padding: 12px 20px !important;
    color: var(--color-text-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(29, 78, 216, 0.08);
    color: var(--color-secondary);
}

.dropdown-item.active {
    color: var(--color-secondary);
    font-weight: 500;
}

.nav-item.dropdown.nav-active .dropdown-toggle {
    color: var(--color-secondary);
    font-weight: 600;
    position: relative;
}
.nav-item.dropdown.nav-active .dropdown-toggle::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
}


.navbar.scrolled .nav-item.dropdown.nav-active .dropdown-toggle {
    color: var(--color-secondary);
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    display: flex;
    /* max-height: 800px; */
    height: 100vh;
    background-color: var(--color-white);
    position: relative;
    padding-top: 0;
}

.hero-content {
    flex: 0 0 45%;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 100px 80px 50px 80px;
}
@media (min-width: 1600px) {
    .hero-content {
        padding: 100px 80px 50px 110px;
    }
}

.hero-text {
    max-width: 100%;
}

.hero-heading {
    margin-bottom: 50px;
	margin-top: 80px;
}

.hero-heading h1 {
    color: var(--color-primary);
    margin-bottom: 12px;
}

.hero-subheading {
    font-family: "Aleo", serif;
    font-size: 24px;
    line-height: 28.16px;
    letter-spacing: -0.02em;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-primary);
    opacity: 0.7 !important;
    font-optical-sizing: auto;
    font-variation-settings: "opsz" 24;
}

.hero-description {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 70px;
}

.hero-description p {
    font-size: 17.6px;
    line-height: 1.6;
    color: var(--color-text-primary);
}
.hero-description a{
    width: fit-content;
}
.hero-image {
    flex: 0 0 55%;
    width: 55%;
    position: relative;
    display: flex;
    align-items: stretch;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    transform: none;
}

.desktop-image {
    display: block !important;
}
.mobile-image {
    display: none !important;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.slider-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #1D2530;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: #fff;
    /* width: 32px;
    border-radius: 6px; */
}

/* ==========================================
   Buttons
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 14.3px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow:
        0px -3px 0px 0px rgba(0, 0, 0, 0.25) inset, /* Inset shadow */
        0px 2px 4px -1px rgba(13, 13, 18, 0.25);     /* Outer shadow */
}

.btn-primary:hover {
    background-color: #0a3325;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 59, 46, 0.2);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

/* .btn-secondary:hover {
    background-color: #1a45c4;
    transform: translateY(-2px);
} */

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    background-color: var(--color-bg-light);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 600;
    font-size: 17.5px;
    line-height: 1.25;
    color: var(--color-primary);
    position: relative;
    padding-right: 70px;
}

.btn-link span {
    position: absolute;
    right: 0;
    top: -16px;
    width: 56px;
    height: 56px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.btn-link:hover {
    color: var(--color-secondary);
}

.btn-link-white {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 500;
    font-size: 20px;
    color: var(--color-alto);
    position: relative;
    padding-right: 70px;
}

.btn-link-white span {
    position: absolute;
    right: 0;
    top: -16px;
    width: 56px;
    height: 56px;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ==========================================
   Badge Component
   ========================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 0px;    
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 0;
    font-family: DM Mono;
}

/* ==========================================
   Section Headers
   ========================================== */

.section-header-center {
    text-align: center;
    max-width: 672px;
    margin: 0 auto var(--spacing-2xl);
}

.regulatory-domains-header {
    margin-bottom: 40px;
}

.section-header-center .badge {
    margin-bottom: var(--spacing-sm);
}

.section-header-center h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.section-description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-lg);
}

.section-header-split > div {
    flex: 1;
}

.section-header-split h2 {
    margin-bottom: 10px;
}

.section-header-split p {
    font-size: 16px;
    color: var(--color-text-secondary);
}

/* ==========================================
   Card Components
   ========================================== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* .card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
} */

.card-icon {
    width: 100%;
    height: 253px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card h3 {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.02em;
    padding: 0 var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.card p {
    flex-grow: 1;
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    padding: 0 var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.service-list {
    padding: 0 var(--spacing-lg);
 
}
.service-label {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-primary);
}
.service-list ul {
    list-style: disc;
    margin-left: 30px;
    color: var(--color-text-secondary);
    font-weight: 400;
}
.service-list ul li {
    position: relative;
    padding-left: 5px;
    transition: padding-left 0.3s ease, color 0.3s ease;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.11;
    color: var(--color-secondary);
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
    margin-top: auto;
    padding-bottom: 0;
    margin-bottom: 32px;
}

.link-arrow span {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.link-arrow svg {
    fill: var(--color-secondary);
    vertical-align: middle;
}

.btn-primary svg {
    fill: #fff;
    vertical-align: middle;
}

/* .link-arrow:hover span {
    transform: translateX(4px);
} */

/* ==========================================
   Regulatory Domains Section
   ========================================== */

.regulatory-domains {
    background-color: var(--color-white);
    padding: var(--spacing-2xl) 0;
}

.regulatory-domains .container {
    max-width: 1680px;
    padding: 0 var(--spacing-2xl);
}

.regulatory-domains .section-header-center {
    margin-bottom: var(--spacing-2xl);
}

.regulatory-domains .section-header-center .badge {
    margin-bottom: var(--spacing-sm);
}

.regulatory-domains .section-header-center h2 {
    font-size: 36px;
    line-height: 1.11;
    margin-bottom: var(--spacing-sm);
}

.regulatory-domains .section-description {
    font-size: 16px;
    line-height: 1.5;
    max-width: 672px;
    margin: 0 auto;
}

.regulatory-domains .cards-grid {
    gap: var(--spacing-lg);
}

/* ==========================================
   Committed to Public Health Section
   ========================================== */

.committed-section {
    background-color: var(--color-white);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.committed-section .container {
    max-width: 1680px;
    padding: 0 var(--spacing-sm);
    position: relative;
}

.committed-background {
    width: 100%;
    height: 696px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 0;
}

.committed-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.committed-content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-3xl) 0;
}

.committed-header {
    text-align: center;
    margin-bottom: 44px;
}

.committed-header h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.11;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.committed-header p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.committed-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 44px;
}

.committed-column {
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.column-header {
    text-align: left;
}

.column-header h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.column-header p {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    color: var(--color-text-secondary);
}

.column-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background-color: var(--color-white);
    border: 1px solid #E6EBF0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon.citizen-icon {
    background-color: rgba(61, 90, 168, 0.08);
}

.service-icon.business-icon {
    background-color: rgba(38, 157, 217, 0.08);
}

.service-icon.regulator-icon {
    background-color: rgba(36, 143, 93, 0.08);
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-text h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: var(--color-primary);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.service-text p {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    color: var(--color-text-secondary);
}

/* Responsive Styles for Committed Section */
@media (max-width: 1200px) {
    .committed-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .committed-column:last-child {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .committed-section {
        padding: var(--spacing-xl) 0;
    }
    
    .committed-section .container {
        padding: 0 var(--spacing-sm);
    }
    
    .committed-background {
        height: auto;
        min-height: auto;
    }
    
    .committed-content {
        padding: var(--spacing-xl) 0;
    }
    
    .committed-header h2 {
        font-size: 24px;
        text-align: left;
    }
	.committed-header p {
        text-align: left;
    }
    
    .committed-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .committed-column {
        padding: 24px;
    }
    
    .committed-column:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    
    .service-item {
        align-items: flex-start;
    }
    .lab-bg {
        background-position: center;
        background-size: cover;
    }
    

}

/* ==========================================
   Who We Serve Section
   ========================================== */

.who-we-serve {
    background-color: var(--color-white);
}

.who-we-serve-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-xl);
}

.who-we-serve-header h2 {
    font-size: 36px;
    margin-bottom: 8px;
}

.tabs {
    display: flex;
    gap: 0px;
    padding: var(--spacing-xs);
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.tab {
    padding: 4px 22px;
    height: 44px;
    background-color: transparent;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #00144C;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.tab.active {
    background-color: var(--color-secondary);
    color: var(--color-white);
    opacity: 1;
}

.tab:hover {
    opacity: 1;
}

.serve-content {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.24);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.serve-title {
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    margin-bottom: var(--spacing-lg);
}

.serve-title h3 {
    font-size: 28px;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.serve-title p {
    color: var(--color-text-secondary);
}

.serve-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.serve-card {
    display: flex;
    gap: 10px;
    padding: 15px;
    background-color: var(--color-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.serve-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-badge-bg);
    border-radius: 10px;
    font-size: 20px;
    flex-shrink: 0;
}

.serve-card h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.serve-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* ==========================================
   About Us Section
   ========================================== */

.about-us {
    background-color: var(--color-white);
    padding: var(--spacing-4xl) 0;
}

.about-us .container-row {
    gap: 44px;
    align-items: center;
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.about-image {
    flex: 1;
    max-width: 955px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    
}
.about-content-header {
    margin-bottom: 8rem;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-content .badge {
    margin-bottom: 20px;
    width: fit-content;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.11;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    margin: 0;
}

.about-content p {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--color-text-secondary);
    margin: 10px 0;
}

.about-content .btn {
    margin-top: 15px;
    align-self: flex-start;
    font-size: 14.3px;
    padding: 10px 20px;
}

/* ==========================================
   Laboratory Network Section
   ========================================== */

.labs-section {
    background-color: var(--color-white);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.lab-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.lab-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.lab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lab-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lab-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.lab-location {
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-text-dark);
}
.lab-location img{
    display: inline;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.lab-badge {
    margin-left: auto;
    padding: 6px 12px;
    background-color: var(--color-badge-bg);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    color: var(--color-secondary);
}

.lab-content h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    color: var(--color-primary);
}

.lab-content > p {
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-text-emperor);
    min-height: 40px;
}

.lab-services {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    align-items: center;
    padding-top: 12px;
    min-height: 120px;
}

.service-label {
    font-size: 15px;
    line-height: 1.2;
    color: var(--color-text-secondary);
    width: 100%;
}

.service-tag {
    padding: 8px 12px;
    background-color: rgba(103, 96, 96, 0.03);
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-full);
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-text-secondary);
}

.lab-content .btn {
    margin-top: 10px;
    align-self: stretch;
}

/* ==========================================
   CTA Sections
   ========================================== */

.cta-section {
    position: relative;
}

.complex-cta {
    background-color: transparent;
    padding: 0 var(--spacing-2xl);
    margin: var(--spacing-4xl) 0;
}

.complex-cta .container-row {
    position: relative;
    display: flex;
    background-color: var(--color-secondary);
    border-radius: var(--radius-2xl);
    /*padding: 88px 80px;*/
    max-width: 1760px;
    margin: 0 auto;
    min-height: 350px;
}

.complex-cta .cta-content {
    width: 56%;
    max-width: 1000px;
    z-index: 2;
    position: relative;
    float: left;
}

.cta-label {
    font-weight: 700;
    font-size: 14.3px;
    line-height: 1.45;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.complex-cta h2 {
    font-size: 41px;
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
    max-width: 100%;
}

.complex-cta .cta-action {
    display: none;
}

.building-image {
    width: 37%;
    float: right;
}

.building-image img {
    width: 726px;
    position: absolute;
    top: -45px;
    z-index: 12;
    right: -33px;
}

.career-cta {
    background-color: #E9FCFF;
    padding: var(--spacing-5xl) 178px var(--spacing-5xl) 178px;
}

.career-cta .container-row {
    gap: 200px;
}

.career-cta .cta-content {
    flex: 1;
}

.career-cta h2 {
    font-size: 36px;
    line-height: 1.17;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.career-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.career-info p {
    font-size: 20px;
    line-height: 1.2;
    color: var(--color-primary);
    opacity: 0.8;
}

.career-info ul {
    list-style: disc;
    padding-left: 30px;
}

.career-info ul li {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-primary);
    position: relative;
    padding-left: 10px;
}

/* .career-info ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
} */

.career-image {
    flex: 1;
    max-width: 472px;
    position: relative;
}

.career-image img {
    width: 100%;
    
}
.green-box {
    position: absolute;
    bottom: 0;
    right: 10%;
}
.blue-box {
    position: absolute;
    right: -44px;
    top: 0;
}
.blue-box img{
    width: 300px;
}

.mandate-cta {
    background-color: var(--color-secondary);
    padding: 100px var(--spacing-2xl);
    margin: 64px;
    border-radius: 24px;
    position: relative;
}
.mandate-cta .container {
    padding: 0;
}

.mandate-cta .mandate-content {
    width: 65%;
    max-width: 1680px;
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    gap: 88px;
}

.mandate-cta h2 {
    font-size: 41px;
    font-weight: 400;
    line-height: 51.25px;
    color: #fff;
    font-optical-sizing: auto;
    font-variation-settings: "opsz" 36;
}
.mandate-content a {
    width: fit-content;
}

.shield-decoration {
    position: absolute;
    right: 5%;
    bottom: 25px;
    width: 527px;
    height: 545px;
}

.contact-cta {
    background-color: var(--color-primary);
    padding: 100px var(--spacing-3xl);
    text-align: center;
    margin: 64px;
    border-radius: 24px;
}

.contact-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.contact-cta h2 {
    font-size: 41px;
    line-height: 1.25;
    color: var(--color-white);
}

/* ==========================================
   Stats Section
   ========================================== */

.stats-section {
    background-color: var(--color-white);
}
.stats-section .container{
    padding: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.stat-card {
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.stat-card-dark {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.stat-card-dark h3 {
    color: var(--color-white);
}

.stat-card-dark p {
    color: var(--color-white);
    opacity: 0.8;
}

.stat-card-light {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
}

.stat-glow {
    position: absolute;
    width: 181px;
    height: 182px;
    background-color: var(--color-secondary);
    filter: blur(222px);
    opacity: 0.76;
    pointer-events: none;
}

.stat-card:nth-child(1) .stat-glow {
    right: -90px;
    bottom: -90px;
}

.stat-card:nth-child(2) .stat-glow {
    right: -90px;
    bottom: -90px;
}

.stat-card:nth-child(3) .stat-glow {
    right: -90px;
    bottom: -90px;
}

.stat-card h3 {
    font-size: 41px;
    line-height: 1.25;
    margin-bottom: 9px;
    font-weight: 400;
}

.stat-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* ==========================================
   Approach Section
   ========================================== */

.approach-section {
    background-color: var(--color-white);
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}

.approach-card {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.approach-number {
    width: 100%;
    height: 369px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    font-weight: 700;
    color: rgba(11, 59, 46, 0.08);
    background: linear-gradient(180deg, rgba(11, 59, 46, 0.05) 0%, rgba(11, 59, 46, 0.02) 100%);
    border-radius: var(--radius-lg);
}

.approach-card h3 {
    font-size: 27.5px;
    line-height: 1.3;
    color: var(--color-primary);
}

.approach-card p {
    font-size: 17.6px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.5);
}

/* ==========================================
   Programs Section
   ========================================== */

.programs-section {
    background-color: var(--color-white);
	padding: 0 64px;
}
.programs-section .container {
    max-width: 1760px;
	padding: 0;
}
.carousel-nav {
    display: flex;
    gap: 5px;
    justify-content: end;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border: none;
    background-color: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.programs-carousel {
    display: flex;
    gap: 30px;
    /*overflow-x: auto;*/
    scroll-behavior: smooth;
    padding: var(--spacing-lg) 0;
}

.programs-carousel::-webkit-scrollbar {
    display: none;
}

.program-card {
    width: 25%;
    padding: 0px;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.program-card h3 {
   font-size: 34px;
    line-height: 40px;
    color: var(--color-primary);
    padding: 35px;
    font-weight: 400;
}

.program-number {
    font-size: 72px;
    font-weight: 700;
    opacity: 0.2;
}

/* ==========================================
   News Section
   ========================================== */

.news-section {
    background-color: var(--color-white);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.news-featured {
    display: flex;
    flex-direction: column;
}

.news-featured img {
    width: 100%;
    height: auto;
    margin-bottom: 35px;
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 9.375px;
}

.news-category {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 9px;
}

.news-featured h3 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--color-primary);
    font-weight: 400;
}
.news-date-link a {
    float: right;
}

.news-date {
    font-size: 18px;
    line-height: 1.3;
    color: var(--color-text-emperor);
}

.news-list {
    background-color: var(--color-bg-beige);
    padding: var(--spacing-lg);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-item {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-white);
}

.news-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.news-item .news-category {
	font-family: "DM Mono", monospace;
    font-size: 14px;
	font-weight: 500;
    line-height: 16px;
}

.news-item .news-date {
    font-size: 15px;
    line-height: 1.3;
}

.news-item h4 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 4px;
    font-weight: 600;
    font-size: 17.5px;
    line-height: 1.25;
    color: var(--color-primary);
    position: relative;
}
.news-link svg {
    fill: var(--color-primary);
    vertical-align: middle;
}

.news-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 128px;
    height: 2px;
    background-color: var(--color-primary);
}

.news-link:hover {
    color: var(--color-secondary);
}
.news-link:hover svg {
    fill: var(--color-secondary);
}
/* ==========================================
   Case Studies Section
   ========================================== */

.case-studies-section {
    background-color: var(--color-white);
}

.lab-bg{
    background-image: url('./assets/images/lab-bg.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.case-study {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.case-study img {
    width: 100%;
    height: 369px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.case-content {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.case-label {
    font-weight: 700;
    font-size: 14.3px;
    line-height: 1.45;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.case-content h3 {
    font-size: 27.5px;
    line-height: 1.3;
    color: var(--color-primary);
}

.case-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.case-link {
    display: inline-flex;
    align-items: center;
    padding: 0 0 4px;
    font-weight: 600;
    font-size: 17.5px;
    line-height: 1.25;
    color: var(--color-primary);
    position: relative;
}

.case-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 166px;
    height: 2px;
    background-color: var(--color-primary);
}

.case-link:hover {
    color: var(--color-secondary);
}

/* ==========================================
   Contact Section
   ========================================== */

.contact-section {
    background-color: rgba(230, 235, 240, 0.5);
    padding: var(--spacing-4xl) 40px;
}

.contact-section .container-row {
    gap: var(--spacing-xl);
    align-items: stretch;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}
.contact-info .btn{
    width: fit-content;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background-color: var(--color-badge-bg);
    border: 1px solid rgba(29, 78, 216, 0.2);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.33;
    color: var(--color-secondary);
    width: fit-content;
}

.contact-info h2 {
    font-size: 36px;
    line-height: 1.11;
    color: var(--color-primary);
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.625;
    color: var(--color-text-gray);
    padding: 8px 0 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0 0;
}

.contact-detail {
    display: flex;
    gap: var(--spacing-sm);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-badge-bg);
    border-radius: var(--radius-sm);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 14px;
    line-height: 1.43;
    color: var(--color-text-gray);
}

.contact-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) 0;
}

.quick-action-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--color-white);
    border: 1px solid rgba(11, 59, 46, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.quick-action-card:hover {
    transform: translateX(8px);
}

.quick-action-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 24px;
    flex-shrink: 0;
}

.quick-action-card h4 {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.quick-action-card p {
    font-size: 14px;
    line-height: 1.43;
    color: var(--color-text-gray);
}

.arrow-icon {
    margin-left: auto;
    font-size: 18px;
    color: var(--color-text-gray);
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background-color: var(--color-bg-light);
    padding: var(--spacing-xl) var(--spacing-3xl);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    flex: 1;
    max-width: 384px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-brand img {
    height: 52px;
    
}
.footer-contact-item img{
	height: 18px;
}

.footer-brand p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-xs);
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-secondary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    font-size: 16px;
    line-height: 1.43;
    color: var(--color-primary);
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
}

.footer-contact-item span {
    font-size: 18px;
}

.footer-contact-item p {
    font-size: 16px;
    line-height: 1.43;
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(11, 59, 46, 0.24);
}

.footer-bottom p {
    font-size: 14px;
    line-height: 1.33;
    color: var(--color-primary);
	text-align: center;
    margin-bottom: 10px;
}
.footer-bottom img{
	display:inline;
	vertical-align: middle;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media(max-width: 1500px){
	.program-card h3{
		font-size: 24px;
	}
}

@media (max-width: 1440px) {
    .container,
    .container-row {
        padding: 0 var(--spacing-2xl);
    }
    
    .top-bar {
        padding: 2px var(--spacing-2xl);
    }
}

@media (max-width: 1200px) {
    .cards-grid,
    .labs-grid,
    .stats-grid,
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .navbar-menu {
        gap: var(--spacing-xs);
    }
    
    .navbar-menu a {
        padding: 0 var(--spacing-sm);
        font-size: 16px;
    }
}
@media(max-width: 1050px){
    .programs-carousel{
        overflow-x: auto;
    }
  	.program-card{
		min-width: 410px;
	}
}

@media (max-width: 992px) {
    h1 {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: -0.02em;
        font-weight: 600;

    }
	.hero-heading h1 {
        font-size: 32px;
        font-weight: 700;
        line-height: 36px;
    }
    
    h2 {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: -0.02em;
    }
    
    h3 {
        font-size: 20px;
    }
    p{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    .desktop-image{
        display: none !important;
    }
    .mobile-image{
        display: block !important;
    }
    .btn{
        font-size: 11px;
        line-height: 13.9px;
        font-weight: bold;
        padding: 10px 16px
    }
    .btn-white{
        font-size: 14px;
        line-height: 18px;
        letter-spacing: -0.02em;
        font-weight: 700;
        padding: 7px 13px;
    }
    .top-bar {
        display: none;
    }
    .navbar {
        top: 0;
        padding: 20px var(--spacing-md);
        background-color: var(--color-white);
        backdrop-filter: blur(10px);
        position: relative;
    }
    
    .hero {
        flex-direction: column;
        min-height: auto;
        padding-top: 0px;
        margin-bottom: 40px;
        height: auto;
    }
    
    .hero-content {
        padding: var(--spacing-sm);
        flex: 0 0 100%;
        width: 100%;
    }
    
    .hero-heading {
        margin-bottom: var(--spacing-sm);
		margin-top: 44px;
    }
    .hero-subheading{
        font-size: 16px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    
    
    .hero-description p {
        font-size: 14px;
        line-height: 20px;
        color: var(--color-primary);
    }
    .hero-description a {
        width: fit-content;
        font-size: 11px;
        line-height: 13.9px;
        font-weight: bold;
    }
    .hero-image {
        flex: 0 0 100%;
        width: 100%;
    }
    .desktop-image {
        display: none;
    }
    .mobile-image {
        display: block;
    }
    
    .container-row {
        flex-direction: column;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    .card h3{
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.02em;
        font-weight: 600;
    }
    .card p{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    
    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
    }
    .who-we-serve-header{
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
        margin-bottom: 20px;
    }
    .who-we-serve-header h2{
        margin-bottom: 0px;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -0.02em;
        font-weight: 700;
    }
    .who-we-serve-header p{
        margin-bottom: 0px;
    }
    .who-we-serve-header .btn{
        margin-top: 0px;
    }
    .who-we-serve-header .tabs{
        margin-top: 20px;
        padding: 6.4px;
        gap:3px;
    }
    .who-we-serve-header .tabs .tab{
        padding: 0px 15px;
        font-size: 12.8px;
        line-height: 16px;
        letter-spacing: -0.02em;
        font-weight: 700;
        width: 111px;
        height: 32px;
    }
    .who-we-serve-header .tabs .tab.active{
        padding: 0px 15px;
        font-size: 12.8px;
        line-height: 16px;
        letter-spacing: -0.02em;
        font-weight: 700;
        width: 111px;
        height: 32px;
    }

    .serve-content {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0px;
        box-shadow: none;
        border-radius: 0px;
    }
    .serve-title{
        border-bottom: none;
        margin-bottom: 0px;
        padding-bottom: 20px;
    }

    .serve-title h3{
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -0.02em;
        font-weight: 600;
        margin-bottom: 5px;
    }
    .serve-title p{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    .serve-card h4{
        font-size: 16px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 500;
        margin-bottom: 5px;
    }
    .serve-cards{
        gap: 12px;
    }
    .serve-card p{
        font-size: 13px;
        line-height: 18px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }

    .section.about-us > .container-row > .about-image {
    order: 1; /* Place the image after content */
    }

    .section.about-us > .container-row > .about-content {
    order: 0; /* Place the content before the image (default order is 0) */
    }
    .about-content .btn {
        margin-top: 0px;
        align-self: flex-start;
        font-size: 11px;
        padding: 7px 13px;
        font-weight: bold;
    }
    .lab-content{
        padding: 20px;
    }
    .lab-content h3{
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.02em;
        font-weight: 600;
    }
    .lab-content p{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 400;
        min-height: auto;
    }
    .lab-services{
        padding-top: 6px;
    }
    .service-label{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    .service-tag{
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.02em;
        font-weight: 400;
        padding: 4px 12px;
    }
    .complex-cta{
        padding: 0 20px;
    }
    .building-image img{
        right: 0px;
    }

    .regulatory-domains .container{
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    .cards-grid,
    .labs-grid,
    .stats-grid,
    .case-studies-grid,
    .serve-cards {
        grid-template-columns: 1fr;
    }
    
    /* Hero Slider Mobile Styles */
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev {
        left: 12px;
    }
    
    .slider-next {
        right: 12px;
    }
    
    .slider-dots {
        bottom: 16px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 24px;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .top-bar-container {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

	.committed-column{
		display:none;
	}
	#citizen{
		display:flex;
	}
    
    .approach-cards {
        flex-direction: column;
    }
    
    .contact-section {
        padding: var(--spacing-2xl);
    }
    
    .footer {
        padding: var(--spacing-lg);
    }
    
    .footer-main {
        flex-direction: column;
    }
    .career-cta{
        padding: 50px var(--spacing-sm);
        margin-bottom: 32px;
    }
    .career-cta .container-row{
        padding: 0 var(--spacing-sm);
        gap: 50px;
    }
    .career-cta .cta-content{
        max-width: 100%;
    }
    .career-cta h2{
        font-size: 24px;
    }
    .career-info{
        max-width: 100%;
    }
    .career-info p{
        font-size: 14px;
    }
    .career-info ul{
        max-width: 100%;
    }
    .career-info ul li{
        font-size: 14px;
    }
    .career-info ul li::before{
        font-size: 14px;
    }
    .career-image{
        max-width: 100%;
    }
    .career-image img{
        max-width: 100%;
    }
    
    .mandate-cta{
        padding: 0 var(--spacing-sm);
    }
    .mandate-cta .container-row{
        padding: 0 var(--spacing-sm);
    }
    .mandate-cta .cta-content{
        max-width: 100%;
    }
    .mandate-cta h2{
        font-size: 24px;
    }
    .mandate-content{
        max-width: 100%;
    }
    .mandate-content p{
        font-size: 14px;
    }
    .mandate-content ul{
        max-width: 100%;
    }
    .mandate-content ul li{
        font-size: 14px;
    }
    .mandate-content ul li::before{
        font-size: 14px;
    }
    .mandate-image{
        max-width: 100%;
    }
    .mandate-image img{
        max-width: 100%;
    }
    .contact-cta{
        padding: 24px;
        margin:20px;
    }
    .contact-cta .container{
        padding: 0 var(--spacing-sm);
    }
    .contact-cta h2{
        font-size: 28px;
        text-align: left;
        font-weight: 400;
        line-height: 36px;
        letter-spacing: -0.02em;
        margin-bottom: 24px;
    }
    .contact-cta .btn{
        margin: 0 auto;
    }
    .contact-info{
        max-width: 100%;
    }
    .contact-info h2{
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.9px;
        font-weight: 700;
    }
    .contact-section .container-row{
        gap:0;
    }
    .contact-info p{
        font-size: 14px;
        padding-top: 0;
    }
    .contact-info ul{
        max-width: 100%;
    }
    .contact-info ul li{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-info ul li::before{
        font-size: 14px;
    }
    .contact-cta .container{
        padding: 0;
        max-width: 100%;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
    }
    .quick-action-card p{
        font-size: 12px;
    }
    .career-cta .cta-content{
        max-width: 100%;
    }
    .career-cta h2{
        font-size: 24px;
    }
    .career-info{
        max-width: 100%;
    }
    .career-info p{
        font-size: 14px;
    }
    .career-info ul{
        max-width: 100%;
    }
    .career-info ul li{
        font-size: 14px;
    }
    .career-info ul li::before{
        font-size: 14px;
    }
    .career-image{
        max-width: 100%;
        margin-bottom: 72px;
    }
    .career-image img{
        max-width: 90%;
    }
    .green-box {
        bottom: 0;
        right: 0;
    }
    .green-box img{
        width: 100%;
    }
    .blue-box {
        right: 0;
        top: 50%;
    }
    .blue-box .mobile-image{
        display: block;
        width: 65px;
    }
    .blue-box .desktop-image{
        display: none;
    }
    .mandate-cta{
        padding: 32px 20px;
        margin:100px 20px 20px
    }
    .mandate-cta .container-row{
        padding: 0 var(--spacing-sm);
    }
    .mandate-cta .cta-content{
        max-width: 100%;
    }
    .lab-bg {
        background-size: cover;
		background-image: none;
		padding:0;
    }
	.lab-bg img{
		border-start-end-radius: 24px;
    	border-start-start-radius: 24px;
	}
    .mandate-cta .mandate-content {
        width: 100%;
        gap: 36px;
        margin-bottom: 0px;
        padding: 2rem 20px;       
        text-align: center;
    }

    .mandate-cta h2{
        font-size: 26px;
        line-height: 36px;
        letter-spacing: -0.03em;
        font-weight: 400;
		color: #fff;
    }
    .mandate-content{
        max-width: 100%;
    }
    .mandate-content p{
        font-size: 14px;
    }
    .mandate-content ul{
        max-width: 100%;
    }
    .mandate-content ul li{
        font-size: 14px;
    }
    .mandate-content ul li::before{
        font-size: 14px;
    }
    .mandate-image{
        max-width: 100%;
    }
    .mandate-image img{
        max-width: 100%;
    }
    .mandate-content a {
        margin: 0 auto;
    }
    .about-content-header {
        margin-bottom: 0rem;
    }
    .complex-cta{
        margin: 32px 0;
    }
    .complex-cta .container-row{
        padding: 99px 30px 0px;
    }
    .complex-cta .cta-content{
        float: none;
        width: 100%;
        margin-top: 8rem;
        text-align: center;
    }
    .complex-cta h2{
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: -0.02em;
    }
    .building-image img {
        right: 0px;
    }
    .blue-box img {
        display: none;
    }
    .shield-decoration {
        position: absolute;
        width: 100%;
        height: auto;
        top: -65px;
        left: 15px;
    }
    .shield-decoration img{
        max-width: 309px;
    }
    .stats-section .container{
        padding: 0 20px;
    }
    .section-header-split{
        gap: 24px;
        margin-bottom: 32px;
        padding: 0 4px;
    }
    .section-header-split p{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    .stat-card {
        padding: 16px 16px 24px;
    }
    .stat-card h3{
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    .stat-card p {
        font-size: 11px;
        line-height: 18px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    .approach-cards{
        padding: 0 4px;
        gap: 32px;
    }
    .approach-card{
        gap: 16px;
    }
	
    .approach-card h3{
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.02em;
        font-weight: 500;
    }
    .approach-card p{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    .programs-section .container{
        padding: 0 var(--spacing-sm);
    }

    .carousel-nav{
        display: none;
    }
    .program-card{
        min-width: 243px;
        height: auto;
    }
    .program-card h3{
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.02em;
        font-weight: 400;
        padding: 20px;
    }
    .program-card img{
        width: 100%;
        object-fit: cover;
    }
    .news-category, .news-date {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 600;
    }
    .news-featured h3{
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    .news-grid{
        gap: 32px;
    }
    .news-list{
        padding: var(--spacing-sm);
    }
    .news-link{
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.02em;
        font-weight: 600;
    }
    .news-item h4{
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    .case-studies-grid{
        gap: 32px;
    }
    .case-study{
        gap: 16px;
    }
    .case-study img {
        height: auto;
        border-radius: 0;
    }
    .case-study h3{
        font-size: 20px;
        line-height: 24px;
        letter-spacing: -0.02em;
        font-weight: 500;
    }
    .case-study p{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    .case-content{
        gap: 8px;
    }
    .case-content span{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 600;
    }
    .case-content p{
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.02em;
        font-weight: 400;
    }
    .footer-bottom {
        flex-direction: column;
    }
     

}

@media (max-width: 576px) {
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .container,
    .container-row {
        padding: 0 20px;
    }
    
    .btn-link,
    .btn-link-white {
        font-size: 14px;
        padding-right: 50px;
    }
    
    .btn-link span,
    .btn-link-white span {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .about-us .container-row{
        padding: 0 var(--spacing-sm);
    }
    .about-image{
        max-width: 100%;
    }
    .about-content{
        max-width: 100%;
    }
    .about-content h2{
        font-size: 24px;
    }
    .about-content p{
        font-size: 14px;
    }
    
    
    .about-content .badge img{
        width: 16px;
        height: 16px;
    }
    .about-content .badge span{
        font-size: 12px;
    }
    .about-content .badge span img{
        width: 16px;
        height: 16px;
    }
    .about-content .badge span img{
        width: 16px;
        height: 16px;
    }
    .about-content .badge span img{
        width: 16px;
        height: 16px;
    }
    .about-content .badge span img{
        width: 16px;
        height: 16px;
    }
}

/* ==========================================
   Animations & Transitions
   ========================================== */

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Hero Section Animations */
.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-description {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

/* Enhanced Card Animations */
/* .card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
} */

/* .card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.15);
}

.card-icon img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon img {
    transform: scale(1.1) rotate(2deg);
} */

/* Service Item Hover Effects */
.service-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    transition: width 0.4s ease;
}

/* .service-item:hover::after {
    width: 100%;
} */

.service-icon {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* .service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-item:hover .service-icon.citizen-icon {
    background-color: rgba(61, 90, 168, 0.15);
}

.service-item:hover .service-icon.business-icon {
    background-color: rgba(38, 157, 217, 0.15);
}

.service-item:hover .service-icon.regulator-icon {
    background-color: rgba(36, 143, 93, 0.15);
} */

/* Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.95);
}

/* Program Card Animations */
.program-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.program-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.program-card img {
    transition: transform 0.6s ease, filter 0.4s ease;
	width: 100%;
    
    object-fit: cover;
}

.program-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* News Item Animations */
.news-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

/* .news-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.5);
    padding-left: 15px;
    border-radius: 8px;
} */

.news-featured {
    overflow: hidden;
}

.news-featured img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .news-featured:hover img {
    transform: scale(1.08);
} */

/* Quick Action Card Animations */
.quick-action-card {
    position: relative;
    overflow: hidden;
}

.quick-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(11, 59, 46, 0.05), transparent);
    transition: left 0.5s ease;
}

.quick-action-card:hover::before {
    left: 100%;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.quick-action-card:hover .arrow-icon {
    transform: translateX(5px);
}

/* CTA Section Animations */
.complex-cta .cta-content {
    animation: fadeInLeft 1s ease-out;
}

/* Badge Pulse Animation */
.badge {
    position: relative;
    /*animation: pulse 2s ease-in-out infinite;*/
}

/* Link Arrow Animation */
.link-arrow {
    position: relative;
    transition: color 0.3s ease;
}

.link-arrow::after {
    content: ' ';
    position: absolute;
    bottom: -5px;
    left: 32px;
    width: 120px;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.4s ease;
}

/* .link-arrow:hover::after {
    width: 100%;
} */

/* Parallax Effect */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Loading Shimmer Effect */
.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Section Header Animations */
.section-header-split,
.section-header-center,
.regulatory-domains-header,
.committed-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-header-split.animated,
.section-header-center.animated,
.regulatory-domains-header.animated,
.committed-header.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Transitions for All Interactive Elements */
a, button, input, textarea, select {
    transition: all 0.3s ease;
}

/* Image Hover Effects */
img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* .card-icon img:hover,
.lab-image img:hover,
.case-study img:hover {
    transform: scale(1.05);
} */

/* Footer Animation */
.footer {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.footer.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Tab Smooth Transition */
.tab {
    position: relative;
}

.tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: width 0.3s ease;
}

.tab.active::after,
.tab:hover::after {
    width: 100%;
}

/* Stat Card Number Animation */
.stat-card h3 {
    transition: transform 0.3s ease;
}

.stat-card:hover h3 {
    transform: scale(1.1);
}

/* SVG Icon Animations */
svg {
    transition: all 0.3s ease;
}

/* .service-icon:hover svg {
    transform: scale(1.1);
} */

/* Scroll Progress Bar */
.scroll-progress {
    box-shadow: 0 2px 8px rgba(61, 90, 168, 0.3);
}

/* Enhanced Navbar Active State */
.navbar-menu a.active {
    color: var(--color-secondary) !important;
    font-weight: 600;
    position: relative;
}

.navbar-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
}

.navbar.scrolled .navbar-menu a.active::after {
    background: var(--color-secondary);
}

/* Committed Background Animation */
.committed-background {
    position: relative;
    overflow: hidden;
}

.committed-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(61, 90, 168, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 1s ease;
}

.committed-section:hover .committed-background::before {
    transform: translateX(100%);
}

/* News Category Badge Animation */
.news-category {
    position: relative;
    display: inline-block;
	font-family: "DM Mono", monospace;
    font-size: 14px;
	font-weight: 500;
    line-height: 16px;
}

.news-category::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.4s ease;
}

/* .news-item:hover .news-category::before,
.news-featured:hover .news-category::before {
    width: 100%;
} */

/* Enhanced Contact Detail Hover */
.contact-detail {
    position: relative;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.contact-detail::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(61, 90, 168, 0.05), transparent);
    transition: width 0.3s ease;
    border-radius: 8px;
}

.contact-detail:hover::before {
    width: 5px;
}

.contact-detail:hover {
    padding-left: 15px;
}

/* Service List Animation */
.service-list ul li {
    position: relative;
    padding-left: 5px;
    transition: padding-left 0.3s ease, color 0.3s ease;
}

/* .card:hover .service-list ul li {
    padding-left: 10px;
    color: var(--color-primary);
} */

/* CTA Label Animation */
.cta-label {
    position: relative;
    display: inline-block;
}

.cta-label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--color-alto);
    transition: width 0.5s ease;
}

.complex-cta:hover .cta-label::after,
.mandate-cta:hover .cta-label::after {
    width: 100%;
}

/* Programs Carousel Scroll Indicator */
.programs-carousel {
    position: relative;
}

/* .programs-carousel::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
    pointer-events: none;
} */

/* Footer Link Hover Effect */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social Links Enhanced Hover */
.social-links a {
    position: relative;
    display: inline-block;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 120%;
    height: 120%;
    background: rgba(61, 90, 168, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.social-links a img {
    position: relative;
    z-index: 1;
}

/* Tab Active State Enhancement */
.tabs {
    position: relative;
}

.tab {
    position: relative;
    z-index: 1;
}

.tab.active {
    box-shadow: 0 4px 12px rgba(61, 90, 168, 0.2);
}

/* Approach Card Number Animation */
.approach-number {
    position: relative;
    overflow: hidden;
}

.approach-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(11, 59, 46, 0.05), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.approach-card:hover .approach-number::before {
    transform: rotate(45deg) translateX(100%);
}

/* Hero Content Glow Effect */
.hero-heading h1 {
    position: relative;
    text-shadow: 0 0 20px rgba(11, 59, 46, 0.1);
}

/* News Featured Enhanced */
.news-featured {
    position: relative;
}

/* .news-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 8px;
} */

.news-featured:hover::before {
    opacity: 1;
}

/* Lab Badge Pulse */
.lab-badge {
    animation: pulse 3s ease-in-out infinite;
}

/* Service Tag Hover */
.service-tag {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-tag:hover {
    background-color: rgba(61, 90, 168, 0.08);
    border-color: rgba(61, 90, 168, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* Contact Badge Hover */
.contact-badge {
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(61, 90, 168, 0.2);
}

/* Stat Glow Enhancement */
.stat-glow {
    animation: pulse 4s ease-in-out infinite;
}

/* Case Study Link Animation */
.case-link {
    transition: all 0.3s ease;
}

.case-link:hover {
    transform: translateX(5px);
    color: var(--color-secondary);
}

.case-link::after {
    transition: width 0.3s ease, background-color 0.3s ease;
}

.case-link:hover::after {
    background-color: var(--color-secondary);
    width: 180px;
}

/* News Link Enhanced */
.news-link {
    transition: all 0.3s ease;
}

.news-link:hover {
    transform: translateX(5px);
}

.news-link::after {
    transition: width 0.3s ease, background-color 0.3s ease;
}

.news-link:hover::after {
    background-color: var(--color-secondary);
    width: 140px;
}

/* Responsive Animation Adjustments */
@media (max-width: 992px) {
    /* Simplify animations on mobile */
    .card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .program-card:hover {
        transform: translateY(-5px);
    }
    
    .quick-action-card:hover {
        transform: translateX(4px);
    }
    
    /* Disable tilt effects on mobile */
    .card,
    .program-card,
    .quick-action-card {
        transform-style: flat !important;
    }
    
    /* Faster animations on mobile */
    .fade-in-up,
    .fade-in-left,
    .fade-in-right,
    .scale-in {
        transition-duration: 0.5s;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .parallax-section {
        background-attachment: scroll !important;
    }
}

/* ==========================================
   Back to Top Button
   ========================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(29, 78, 216, 0.4);
}

/* ==========================================
   Mobile Menu
   ========================================== */

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .hamburger-menu span {
        background-color: var(--color-primary);
    }
    
    .navbar.scrolled .hamburger-menu span {
        background-color: var(--color-primary);
    }
    
    .navbar-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: rgba(11, 59, 46, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .navbar-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-menu a {
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--color-white);
    }
    
    .navbar-menu a:last-child {
        border-bottom: none;
    }
    
    /* Mobile Dropdown Styles */
    .nav-item.dropdown {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-toggle {
        padding: var(--spacing-sm) 0;
        width: 100%;
        justify-content: space-between;
        text-shadow: none;
        color: var(--color-white);
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item.dropdown.open .dropdown-menu {
        display: block;
        max-height: 500px;
    }
    
    .dropdown-item {
        padding: 12px 0 12px 20px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover,
    .dropdown-item.active {
        background: rgba(255, 255, 255, 0.1);
        color: var(--color-white);
    }
    
    .nav-item.dropdown.open .dropdown-toggle svg {
        transform: rotate(180deg);
    }
}

/* ==========================================
   Loading Spinner (Optional)
   ========================================== */

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-bg-light);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(61, 90, 168, 0.5),
                    0 0 10px rgba(61, 90, 168, 0.3),
                    0 0 15px rgba(61, 90, 168, 0.2);
    }
    50% {
        box-shadow: 0 0 10px rgba(61, 90, 168, 0.8),
                    0 0 20px rgba(61, 90, 168, 0.5),
                    0 0 30px rgba(61, 90, 168, 0.3);
    }
}

/* ==========================================
   Print Styles
   ========================================== */

@media print {
    .navbar,
    .top-bar,
    .btn,
    .footer,
    .back-to-top,
    .hamburger-menu {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    h1 {
        font-size: 24pt;
    }
    
    h2 {
        font-size: 18pt;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    a {
        text-decoration: underline;
        color: var(--color-primary);
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
}




