/* --- CSS Variables & Design System --- */
:root {
    --color-bg-dark: #05140d;
    --color-bg-light: #f7faf8;
    --color-primary: #0a2d1d;
    --color-primary-medium: #114a30;
    --color-primary-light: #1c6643;
    --color-accent: #00e676;
    --color-accent-hover: #00c853;
    --color-accent-dim: rgba(0, 230, 118, 0.15);
    
    --color-text-light: #f0fdf4;
    --color-text-dark: #0f172a;
    --color-text-muted-light: #8cb8a1;
    --color-text-muted-dark: #64748b;
    
    --color-card-bg-dark: rgba(10, 45, 29, 0.6);
    --color-card-bg-light: rgba(255, 255, 255, 0.85);
    --color-card-border-dark: rgba(0, 230, 118, 0.12);
    --color-card-border-light: rgba(16, 185, 129, 0.15);
    
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --max-width: 1200px;
    --header-height: 80px;
}

/* --- Reset & Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    overflow-x: hidden;
}

body.dark-theme-active {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 600;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* --- Helper Classes --- */
.section {
    padding: 100px 0;
    position: relative;
}

.dark-section {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.text-center {
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-pretitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #10b981;
    display: block;
    margin-bottom: 12px;
}

.dark-section .section-pretitle {
    color: var(--color-accent);
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.dark-section .section-title,
.dark-section h2,
.dark-section h3 {
    color: #f0fdf4 !important;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-muted-dark);
}

.dark-section .section-subtitle {
    color: var(--color-text-muted-light);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-headings);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #05140d;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.2);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 8px 18px;
    font-size: 14px;
    background-color: var(--color-accent);
    color: #05140d;
}

.btn-nav:hover {
    background-color: var(--color-accent-hover);
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.2);
}

.btn-block {
    width: 100%;
}

/* --- Glassmorphism Cards --- */
.glass-card {
    background: var(--color-card-bg-light);
    border: 1px solid var(--color-card-border-light);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(10, 45, 29, 0.05);
    transition: var(--transition-smooth);
}

.dark-section .glass-card {
    background: var(--color-card-bg-dark);
    border: 1px solid var(--color-card-border-dark);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Ensure readable text in dark sections */
.dark-section,
.dark-section p,
.dark-section li,
.dark-section .param-desc,
.dark-section .tech-description {
    color: var(--color-text-light);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.3);
}

/* --- Sticky Header / Navbar --- */
.header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 45, 29, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 230, 118, 0.1);
    height: 70px;
}

.navbar-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
    transform: scale(1.1) rotate(-5deg);
}

.logo-text {
    font-family: var(--font-headings);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-light);
}

.logo-text .accent-text {
    color: var(--color-accent);
}

.header:not(.scrolled) .logo-text {
    /* If light background is active at the very top, text can be white since hero is dark */
    color: var(--color-text-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-headings);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-text-light);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-light);
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: #04120a url('assets/hero-bg.png') no-repeat center center / cover;
    color: var(--color-text-light);
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 20, 13, 0.9) 0%, rgba(10, 45, 29, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 780px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 24px;
    display: block;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title .highlight {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-muted-light);
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-footer-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 20, 13, 0.85);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 230, 118, 0.1);
    text-align: center;
    padding: 15px 0;
    z-index: 2;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--color-text-muted-light);
}

/* --- Section Layout & Grid --- */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- Challenge Section --- */
.challenge-section {
    background-color: var(--color-bg-light);
}

.challenge-text {
    font-size: 17px;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}

.needs-card h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 24px;
    border-left: 3px solid var(--color-primary-medium);
    padding-left: 12px;
}

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

.needs-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.needs-list li span {
    font-size: 16px;
    color: var(--color-text-dark);
}

.needs-list li span strong {
    color: var(--color-primary-medium);
}

.list-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Framework Section (Interactive) --- */
.framework-interactive {
    max-width: 900px;
    margin: 0 auto;
}

.framework-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.step-btn {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    color: var(--color-text-muted-light);
}

.step-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 230, 118, 0.2);
}

.step-btn.active {
    background-color: rgba(0, 230, 118, 0.1);
    border-color: var(--color-accent);
    color: var(--color-text-light);
}

.step-num {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.6;
}

.step-btn.active .step-num {
    opacity: 1;
}

.step-name {
    font-family: var(--font-headings);
    font-size: 16px;
    font-weight: 600;
}

.framework-content-box {
    padding: 40px;
    min-height: 350px;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeInSlide 0.5s ease forwards;
}

.step-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.step-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(0, 230, 118, 0.1);
    color: var(--color-accent);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.step-text-side h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.step-text-side p {
    font-size: 16px;
    color: var(--color-text-muted-light);
    margin-bottom: 24px;
}

.step-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-bullet-list li {
    position: relative;
    padding-left: 20px;
    color: var(--color-text-light);
    font-size: 15px;
}

.step-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-accent);
}

.step-graphic-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Clients Grid --- */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.client-logo {
    background: var(--color-card-bg-light);
    border: 1px solid var(--color-card-border-light);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    border-color: var(--color-accent);
}

.client-logo img {
    max-height: 50px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.client-logo span {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-dark);
    text-align: center;
}

.framework-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.framework-illustration svg {
    filter: drop-shadow(0 0 15px rgba(0, 230, 118, 0.25));
}

.framework-illustration .caption {
    font-size: 13px;
    color: var(--color-text-muted-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Solutions Section --- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    display: flex;
    flex-direction: column;
}

.solution-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.solution-card:hover .solution-icon {
    background-color: var(--color-accent);
    color: #05140d;
    transform: scale(1.1);
}

.solution-icon svg {
    width: 24px;
    height: 24px;
}

.solution-card h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.solution-card p {
    font-size: 15px;
    color: var(--color-text-muted-dark);
}

/* --- Industries We Serve Section --- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.industry-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.industry-icon {
    width: 24px;
    height: 24px;
}

.industry-card h3 {
    font-size: 18px;
    color: var(--color-text-light);
    font-weight: 600;
}

.industry-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.industry-bullet-list li {
    font-size: 14px;
    color: var(--color-text-muted-light);
    position: relative;
    padding-left: 15px;
}

.industry-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* --- Technology & Capabilities Section --- */
.tech-info h3 {
    font-size: 22px;
    color: var(--color-primary-light);
    margin-bottom: 20px;
}

.tech-description {
    font-size: 16px;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.advantages-box h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
}

.tech-advantages-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tech-advantages-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: #4ade80; /* Softer green for better contrast */
}

.tech-advantages-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
}

.tech-advantages-list li strong {
    color: #ffffff; /* White for strong text */
}

.tech-dashboard {
    height: 100%;
    display: flex;
    align-items: center;
}

.dashboard-card {
    width: 100%;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding-bottom: 14px;
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: inline-block;
    box-shadow: 0 0 10px var(--color-accent);
    animation: pulse 1.8s infinite;
}

.dashboard-header h3 {
    font-size: 18px;
    color: var(--color-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.param-widget {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.param-widget:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.param-widget:nth-child(3) {
    grid-column: span 2;
}

.param-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted-dark);
    margin-bottom: 8px;
}

.param-val {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary-medium);
}

.param-val-list {
    font-family: var(--font-headings);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary-medium);
    line-height: 1.4;
}

.param-desc {
    font-size: 12px;
    color: var(--color-text-muted-dark);
    margin-top: 6px;
}

/* --- Impact & Why Us --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-family: var(--font-headings);
    font-size: 54px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-muted-light);
    font-weight: 500;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-us-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-text-light);
}

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

.why-list li {
    font-size: 15px;
    color: var(--color-text-muted-light);
    position: relative;
    padding-left: 24px;
}

.why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-accent);
}

.testimonials-slider-container h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.testimonials-slider {
    position: relative;
    padding: 40px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeInSlide 0.5s ease forwards;
}

.testimonial-slide .quote {
    font-size: 16px;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-slide .author {
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    display: block;
}

.slider-controls {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: flex-end;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background-color: var(--color-accent);
    color: #05140d;
    border-color: var(--color-accent);
}

/* --- Contact & Assessment Section --- */
.contact-box {
    padding: 50px;
}

.contact-header {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.contact-header h2 {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 16px;
    color: var(--color-text-muted-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
}

.assessment-badge {
    background-color: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.assessment-badge span {
    display: block;
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary-medium);
    margin-bottom: 4px;
}

.assessment-badge small {
    font-size: 12px;
    color: var(--color-text-muted-dark);
}

.assessment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-hover);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.15);
}

.form-feedback {
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-feedback.error {
    color: #ef4444;
    display: block;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.info-block h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding-bottom: 6px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.contact-detail a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.detail-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary-medium);
}

.address-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted-dark);
}

/* --- Footer --- */
.footer {
    background-color: #030d08;
    color: var(--color-text-muted-light);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    font-size: 14px;
}

.footer-subtext {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.7;
}

.footer-right {
    text-align: right;
}

.footer-alignment {
    font-size: 13px;
    opacity: 0.8;
}

/* --- Modal --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    background-color: rgba(5, 20, 13, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(8px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.4s ease forwards;
}

.modal-content {
    max-width: 500px;
    width: 100%;
    padding: 40px;
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px auto;
}

.modal h2 {
    font-size: 26px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.modal p {
    font-size: 15px;
    color: var(--color-text-muted-dark);
    margin-bottom: 30px;
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(0, 230, 118, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

/* --- Scroll triggered fade-in --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .section {
        padding: 60px 0;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .mobile-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-bg-dark);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .framework-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .step-graphic-side {
        order: -1;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .param-widget:nth-child(3) {
        grid-column: span 1;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .stat-number {
        font-size: 42px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .framework-steps {
        grid-template-columns: 1fr;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Print Styles for PDF Generation --- */
@media print {
    *, *::before, *::after {
        background: transparent !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    html, body {
        background-color: #ffffff !important;
        color: #0f172a !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* Hide Navigation, Footers and Interactive buttons */
    .header, .mobile-toggle, .slider-controls, .btn-nav, .hero-actions, .mobile-toggle, .slider-btn, .hero-footer-banner {
        display: none !important;
    }
    
    .section {
        padding: 40px 0 !important;
        page-break-inside: avoid !important;
    }

    .dark-section {
        background-color: #0a2d1d !important;
        color: #ffffff !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* Hero print styling */
    .hero-section {
        height: auto !important;
        min-height: auto !important;
        background: #0a2d1d !important;
        color: #ffffff !important;
        padding: 80px 0 !important;
        page-break-after: always !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .hero-bg-overlay {
        display: none !important;
    }

    .hero-title {
        font-size: 38px !important;
        color: #ffffff !important;
    }

    .hero-title .highlight {
        color: var(--color-accent) !important;
    }

    /* CCTS needs print */
    .glass-card {
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important;
        color: #0f172a !important;
        box-shadow: none !important;
        page-break-inside: avoid !important;
    }

    .dark-section .glass-card {
        background: #114a30 !important;
        border: 1px solid rgba(255,255,255,0.15) !important;
        color: #ffffff !important;
    }

    /* Make all steps visible on print */
    .framework-steps {
        display: none !important;
    }

    .step-content {
        display: block !important;
        opacity: 1 !important;
        margin-bottom: 30px !important;
        page-break-inside: avoid !important;
    }

    .step-content-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .step-graphic-side {
        display: none !important;
    }

    /* Solutions page print layout */
    .solutions-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }

    .solution-card {
        page-break-inside: avoid !important;
        margin-bottom: 10px !important;
    }

    /* Industries page print layout */
    .industries-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .industry-card {
        page-break-inside: avoid !important;
    }

    /* Tech dashboard widgets print */
    .dashboard-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .param-widget {
        page-break-inside: avoid !important;
    }

    /* Stats print styling */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px !important;
        margin-bottom: 40px !important;
    }

    .stat-card {
        padding: 15px !important;
        page-break-inside: avoid !important;
    }

    .stat-number {
        font-size: 32px !important;
        color: #10b981 !important;
    }

    /* Why us and Testimonials print layout */
    .why-us-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .testimonial-slide {
        display: block !important;
        opacity: 1 !important;
        margin-bottom: 25px !important;
        page-break-inside: avoid !important;
    }

    /* Hide form and show direct contact */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    #assessmentForm {
        display: none !important;
    }

    .assessment-badge {
        background-color: #f1f5f9 !important;
        border: 1px solid #10b981 !important;
    }

    .contact-info-side {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 30px !important;
    }

    .info-block {
        flex: 1 1 250px !important;
        page-break-inside: avoid !important;
    }
}

