/*
 * LibLab - Main CSS
 * Modern Saudi Tech Elegance Theme
 */

/* Base Styles */
.noto-kufi-arabic {
    font-family: "Noto Kufi Arabic", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Font weight variants */
.font-weight-thin { font-weight: 100; }
.font-weight-extralight { font-weight: 200; }
.font-weight-light { font-weight: 300; }
.font-weight-regular { font-weight: 400; }
.font-weight-medium { font-weight: 500; }
.font-weight-semibold { font-weight: 600; }
.font-weight-bold { font-weight: 700; }
.font-weight-extrabold { font-weight: 800; }
.font-weight-black { font-weight: 900; }

:root {
    /* Color Palette */
    --deep-navy: #111111;
    --rich-charcoal: #1A1A1A;
    --navy-container: #1A1A1A;
    --border-grey: #666666;
    --teal-primary: #FF4C1E;
    --teal-primary-rgb: 255, 76, 30; /* RGB values for rgba() usage */
    --teal-light: #FF7349;
    --purple-accent: #FF4C1E;
    --emerald-success: #FF4C1E;
    --white: #FFFFFF;
    --light-grey: #DDDDDD;
    --medium-grey: #666666;
    --deep-charcoal: #111111;
    --darker-navy: #0A0A0A;
    --lighter-navy: #1F1F1F;

    /* Typography */
    --font-base: 16px;
    --ratio: 1.25;
    --line-height: 1.6;
    --font-family: "Noto Kufi Arabic", sans-serif;
    
    /* Spacing */
    --spacing-unit: 8px;
    --spacing-small: calc(var(--spacing-unit) * 1); /* 8px */
    --spacing-medium: calc(var(--spacing-unit) * 2); /* 16px */
    --spacing-large: calc(var(--spacing-unit) * 3); /* 24px */
    --spacing-xlarge: calc(var(--spacing-unit) * 4); /* 32px */
    --spacing-xxlarge: calc(var(--spacing-unit) * 6); /* 48px */
    --spacing-section: calc(var(--spacing-unit) * 10); /* 80px */
    
    /* Container */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Noto Kufi Arabic", sans-serif;
}

html {
    font-size: var(--font-base);
    scroll-behavior: smooth;
    font-family: "Noto Kufi Arabic", sans-serif;
}

body {
    font-family: "Noto Kufi Arabic", sans-serif !important;
    font-weight: 400;
    color: var(--white);
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--rich-charcoal) 100%);
    line-height: var(--line-height);
    direction: rtl;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Kufi Arabic", sans-serif;
    font-weight: 700;
    margin-bottom: var(--spacing-medium);
    line-height: 1.3;
}

h1 {
    font-size: calc(var(--font-base) * var(--ratio) * var(--ratio) * var(--ratio) * var(--ratio)); /* 54px */
}

h2 {
    font-size: calc(var(--font-base) * var(--ratio) * var(--ratio) * var(--ratio)); /* 40px */
}

h3 {
    font-size: calc(var(--font-base) * var(--ratio) * var(--ratio)); /* 30px */
}

h4 {
    font-size: calc(var(--font-base) * var(--ratio)); /* 20px */
}

p {
    margin-bottom: var(--spacing-medium);
}

a {
    color: var(--teal-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--teal-light);
}

ul, ol {
    padding-right: var(--spacing-large);
    margin-bottom: var(--spacing-medium);
}

img {
    max-width: 100%;
    height: 128px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    padding: var(--spacing-medium) var(--spacing-large);
    border-radius: var(--border-radius-sm);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid var(--teal-primary);
    color: var(--teal-primary);
}

.btn-secondary:hover {
    background-color: rgba(44, 157, 149, 0.1);
    transform: scale(1.03);
}

/* Menu Bar */
.menu-bar.v1 {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 7;
    padding: 30px 0;
    transition: all .4s ease;
}

.menu-bar.v1.scrolled {
    position: fixed;
    background-color: var(--deep-navy);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.menu-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.menu-logo {
    max-width: 400px;
}

.menu-logo a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.menu-logo a span {
    color: var(--white);
}

.nav-logo-img {
    height: 128px;
    width: auto;
    max-width: 400px;
    transition: all 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.menu-logo img {
    height: 128px !important;
    width: auto;
}

.mobile-logo-img {
    height: 128px;
    width: auto;
    max-width: 300px;
}

.main-menu {
    display: none; /* Initially hidden for mobile, shown in media query for desktop */
}

.main-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin-left: var(--spacing-xlarge);
}

.main-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
}

.main-menu a:hover {
    color: var(--teal-primary);
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--teal-primary);
    transition: width 0.3s ease;
}

.main-menu a:hover::after,
.main-menu li.active a::after {
    width: 100%;
}

.main-menu li.active a {
    color: var(--teal-primary);
}

.menu-right {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lang-switcher {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
}

.globe-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: var(--spacing-small);
    background-color: var(--white);
    border-radius: 50%;
    opacity: 0.7;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: transform 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-bar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--deep-navy);
    z-index: 1000;
    padding: var(--spacing-medium);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-bar.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-large);
}

.mobile-logo {
    max-width: 100px;
}

.mobile-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.close-mobile-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-main-menu li {
    margin-bottom: var(--spacing-medium);
}

.mobile-main-menu a {
    color: var(--white);
    font-size: 1.125rem;
    display: block;
    padding: var(--spacing-small) 0;
}

.mobile-main-menu li.active a {
    color: var(--teal-primary);
}

.mobile-content {
    margin-top: var(--spacing-xlarge);
}

.all-btns {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-large);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    max-height: 700px;
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--rich-charcoal) 100%);
    padding-top: 140px; /* Navbar height */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../img/pattern-bg.026779a1e628.svg");
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: var(--spacing-xlarge);
    padding-bottom: var(--spacing-xlarge);
}

.hero-content {
    width: 45%;
    padding: var(--spacing-xlarge) 0;
    position: relative;
}

/* Anime bubble effect */
.anime-bubble {
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -100px;
    left: 120px;
    opacity: 0.4;
    filter: blur(140px);
    border-radius: 800px;
    background: var(--teal-primary);
    z-index: -1;
    animation: bannerBounce 5s linear infinite alternate;
    pointer-events: none;
}

/* Banner bounce animation */
@keyframes bannerBounce {
    0% {
        transform: translate(0, 0);
    }
    30% {
        transform: translate(50px, 20px);
    }
    60% {
        transform: translate(20px, 50px);
    }
    90% {
        transform: translate(-30px, 30px);
    }
    100% {
        transform: translate(-20px, -30px);
    }
}

.hero-visual {
    width: 55%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Arrow shape styles - visible only on very large screens (above 1200px) */
.arrow-shape {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 77px;
    height: 221px;
    z-index: 4;
    transform: scaleX(-1);
    animation: bArrow 3.2s ease infinite;
    
}

/* Arrow animation */
@keyframes bArrow {
    0% {
        opacity: 1;
        transform: scaleX(-1) scale(1.3) rotate(-3deg);
    }
    50% {
        opacity: .5;
        transform: scaleX(-1) scale(1) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scaleX(-1) scale(1.3) rotate(-3deg);
    }
}

/* Dot decorations styles and animations */
.shap-dot-1, .shap-dot-2, .shap-dot-3 {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: var(--teal-primary);
    z-index: 3;
}

/* Dots animation */
@keyframes bBoll {
    0% {
        opacity: 1;
        transform: scale(1.5);
    }
    50% {
        opacity: .5;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Top dot */
.shap-dot-1 {
    top: 3%;
    left: 25%;
    animation: bBoll 3.2s ease infinite;
}

/* Middle-top dot */
.shap-dot-2 {
    top: 8%;
    right: 30%;
    animation: bBoll 3.2s ease infinite;
    animation-delay: 0.3s;
}

/* Middle-bottom dot */
.shap-dot-3 {
    bottom: 45%;
    right: 15%;
    animation: bBoll 3.2s ease infinite;
    animation-delay: 0.6s;
}

/* Uncomment below line to hide arrow on all screen sizes */
/* .arrow-shape { display: none; } */

/* Profile image styles */
.profile-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
}

/* Horizontal flip effect (RTL) */
.flip-horizontal {
    transform: scaleX(-1);
}

.hero-title {
    font-size: 3.375rem;
    font-weight: 700;
    margin-bottom: var(--spacing-medium);
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--light-grey);
    margin-bottom: var(--spacing-xlarge);
}

.cta-group {
    display: flex;
    gap: var(--spacing-large);
}

.cta-group .btn {
    height: 50px;
    font-size: 1.125rem;
}

/* Live Demo Widget */
.demo-widget {
    max-width: 1000px;
    margin: -50px auto 0;
    background-color: #0c0e14;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(var(--teal-primary-rgb), 0.3);
    border: 1px solid rgba(var(--teal-primary-rgb), 0.3);
    position: relative;
    z-index: 10;
    font-family: "Tajawal", monospace;
    overflow: hidden;
}

/* Terminal Header */
.terminal-header {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #1a1e2c, #252b3d, #1a1e2c);
    padding: 12px 15px;
    border-top-left-radius: var(--border-radius-sm);
    border-top-right-radius: var(--border-radius-sm);
    border-bottom: 2px solid rgba(var(--teal-primary-rgb), 0.5);
}

.window-controls {
    display: flex;
    gap: 8px;
    margin-left: 5px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

.control:hover {
    transform: scale(1.1);
}

.close {
    background: linear-gradient(145deg, #ff5f56, #e85347);
}

.minimize {
    background: linear-gradient(145deg, #ffbd2e, #e8aa29);
}

.maximize {
    background: linear-gradient(145deg, #27c93f, #23b439);
}

.terminal-title {
    flex: 1;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 0 0 5px rgba(var(--teal-primary-rgb), 0.7);
}

.title-icon {
    color: var(--teal-primary);
    animation: pulse 2s infinite alternate;
}

.title-text {
    background: linear-gradient(90deg, #fff, var(--teal-primary), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 5px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
    animation: blink 1.5s infinite;
}

.status-text {
    color: #2ecc71;
    font-size: 0.7rem;
    font-weight: 700;
}

.chat-interface {
    background-color: #0c0e14;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(var(--teal-primary-rgb), 0.05) 1%, transparent 10%),
        radial-gradient(circle at 75% 75%, rgba(var(--teal-primary-rgb), 0.05) 1%, transparent 10%);
    background-size: 30px 30px;
    padding: var(--spacing-large);
    height: 300px;
    overflow-y: auto;
    margin-bottom: 0;
    font-family: "Tajawal", monospace;
    color: #bdc3c7;
    direction: rtl;
    position: relative;
}

.chat-interface::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(to bottom, rgba(12, 14, 20, 1), rgba(12, 14, 20, 0));
    pointer-events: none;
}

.message {
    margin-bottom: var(--spacing-medium);
    line-height: 1.5;
    position: relative;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.message:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.message-system {
    color: #bdc3c7;
    border-left: 2px solid rgba(var(--teal-primary-rgb), 0.4);
}

.message-user {
    color: #ecf0f1;
    border-left: 2px solid rgba(255, 255, 255, 0.4);
}

.message-bubble {
    padding: 0;
    max-width: 100%;
    font-size: 0.9375rem;
    background: transparent;
    white-space: pre-wrap;
    font-family: "Tajawal", monospace;
}

.message-timestamp {
    color: #7f8c8d;
    font-size: 0.8rem;
    margin-left: 8px;
    font-family: monospace;
}

.message-prefix {
    font-weight: 700;
    margin-right: 5px;
}

.message-system .message-prefix {
    color: var(--teal-primary);
    text-shadow: 0 0 5px rgba(var(--teal-primary-rgb), 0.3);
}

.message-user .message-prefix {
    color: #3498db;
    text-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.message-content {
    position: relative;
}

.input-area {
    display: flex;
    background: linear-gradient(90deg, #0c0e14, #151821, #0c0e14);
    padding: var(--spacing-medium) var(--spacing-large);
    border-top: 1px solid rgba(var(--teal-primary-rgb), 0.3);
}

.prompt {
    color: var(--teal-primary);
    padding: var(--spacing-small) 0;
    margin-left: var(--spacing-small);
    font-weight: 700;
    text-shadow: 0 0 5px rgba(var(--teal-primary-rgb), 0.3);
    font-family: monospace;
    letter-spacing: 1px;
}

.chat-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: var(--spacing-small) 0;
    font-family: "Tajawal", monospace;
    font-size: 0.9375rem;
    caret-color: var(--teal-primary);
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    opacity: 0.7;
}

.chat-input:focus {
    outline: none;
}

.send-button {
    width: 30px;
    height: 30px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: var(--teal-primary);
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.send-button:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(var(--teal-primary-rgb), 0.5);
}

.sample-questions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-small);
    margin: 0;
    padding: var(--spacing-medium) var(--spacing-large);
    background: linear-gradient(90deg, #0c0e14, #151821, #0c0e14);
    border-top: 1px solid rgba(var(--teal-primary-rgb), 0.3);
}

.sample-question {
    background: rgba(var(--teal-primary-rgb), 0.1);
    color: var(--white);
    padding: var(--spacing-small) var(--spacing-medium);
    border-radius: 20px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--teal-primary-rgb), 0.3);
    box-shadow: 0 0 5px rgba(var(--teal-primary-rgb), 0.1);
}

.sample-question:hover {
    background-color: var(--teal-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--teal-primary-rgb), 0.3);
}

.limit-notice {
    text-align: center;
    margin: 0;
    padding: var(--spacing-medium);
    font-size: 0.875rem;
    color: var(--light-grey);
    background: linear-gradient(90deg, #0c0e14, #151821, #0c0e14);
    border-bottom-left-radius: var(--border-radius-sm);
    border-bottom-right-radius: var(--border-radius-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.limit-notice a {
    color: var(--teal-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px dotted rgba(var(--teal-primary-rgb), 0.5);
    padding-bottom: 2px;
}

.limit-notice a:hover {
    text-shadow: 0 0 8px rgba(var(--teal-primary-rgb), 0.5);
}

/* Trust Bar */
.trust-bar {
    background-color: var(--lighter-navy);
    padding: var(--spacing-medium) 0;
    height: 90px;
    display: flex;
    align-items: center;
    margin-top: var(--spacing-section);
}

.trust-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-title {
    font-size: 0.875rem;
    color: var(--light-grey);
    font-weight: 500;
    margin-bottom: var(--spacing-medium);
}

.trust-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.trust-logo {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* Stats Section */
.stats-section {
    padding: var(--spacing-section) 0;
}

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

.stat-card {
    background-color: var(--navy-container);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xlarge) var(--spacing-large);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0099ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 153, 255, 0.05));
    margin: 0 auto 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.stat-icon img {
    width: 40px;
    height: 40px;
    display: block;
}

.stat-card:hover .stat-icon {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2), rgba(0, 153, 255, 0.1));
    box-shadow: 0 10px 20px rgba(0, 153, 255, 0.1);
}

.stat-number {
    font-size: 2.875rem;
    font-weight: 700;
    color: var(--teal-primary);
    margin-bottom: var(--spacing-small);
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
}

/* Feature Cards */
.features-section {
    padding: var(--spacing-section) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxlarge);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-medium);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--light-grey);
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-card {
    background-color: var(--navy-container);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xlarge) var(--spacing-large);
    height: 380px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: var(--teal-primary);
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #0099ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 153, 255, 0.05));
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon img {
    width: 35px;
    height: 35px;
    display: block;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2), rgba(0, 153, 255, 0.1));
    box-shadow: 0 10px 20px rgba(0, 153, 255, 0.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-medium);
}

.feature-description {
    color: var(--light-grey);
    margin-bottom: var(--spacing-large);
}

.feature-link {
    display: flex;
    align-items: center;
    color: var(--teal-primary);
    font-weight: 500;
}

.feature-link .arrow {
    margin-right: var(--spacing-small);
    transition: transform 0.2s ease;
}

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

.feature-badge {
    position: absolute;
    top: var(--spacing-medium);
    left: var(--spacing-medium);
    background-color: rgba(44, 157, 149, 0.2);
    color: var(--teal-primary);
    padding: 4px var(--spacing-small);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--spacing-section) 0;
    background-color: var(--rich-charcoal);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../img/texture-bg.19f05b85312d.svg");
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
}

.why-choose-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.why-choose-visual {
    width: 45%;
}

.why-choose-content {
    width: 55%;
    padding-right: var(--spacing-xlarge);
}

.why-choose-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-medium);
}

.why-choose-subtitle {
    font-size: 1.125rem;
    color: var(--light-grey);
    margin-bottom: var(--spacing-xlarge);
}

.why-choose-points {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large);
}

.point {
    display: flex;
    align-items: flex-start;
}

.point-icon {
    font-size: 1.5rem;
    color: #0099ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 153, 255, 0.05));
    position: relative;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.point-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.point:hover .point-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2), rgba(0, 153, 255, 0.1));
    box-shadow: 0 6px 12px rgba(0, 153, 255, 0.1);
}

.point-content {
    flex: 1;
}

.point-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-small);
}

.point-description {
    color: var(--light-grey);
}

.why-choose-animation {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.05) 0%, transparent 70%);
    position: relative;
}

.robot-animation {
    max-width: 320px;
    width: 100%;
    height: auto;
    z-index: 1;
}

/* Final CTA Section */
.final-cta-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--rich-charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../img/pattern-bg.026779a1e628.svg");
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
}

.final-cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-medium);
}

.final-cta-subtitle {
    font-size: 1.125rem;
    color: var(--light-grey);
    margin-bottom: var(--spacing-xlarge);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-large);
}

.final-cta-buttons .btn {
    height: 50px;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: var(--darker-navy);
    padding: 60px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xlarge);
    margin-bottom: var(--spacing-xlarge);
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-medium);
}

.footer-description {
    color: var(--light-grey);
    font-size: 0.9375rem;
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-large);
    color: var(--white);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: var(--spacing-medium);
}

.footer-column a {
    color: var(--light-grey);
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--teal-primary);
}

.social-icons {
    display: flex;
    gap: var(--spacing-medium);
    margin-top: var(--spacing-medium);
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.social-icons a:hover {
    background-color: var(--teal-primary);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-xlarge);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--light-grey);
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    gap: var(--spacing-large);
}

.legal-links a {
    color: var(--light-grey);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--teal-primary);
}

/* Page Header */
.page-header {
    background-color: var(--deep-navy);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../img/pattern-bg.026779a1e628.svg");
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
}

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

.page-header h1 {
    font-size: 3rem;
    margin: 0;
    color: var(--white);
}

/* Page Content */
.page-content {
    padding: var(--spacing-section) 0;
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    padding: var(--spacing-xxlarge) 0;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon h2 {
    color: var(--teal-primary);
    margin-bottom: var(--spacing-large);
}

.coming-soon p {
    color: var(--light-grey);
    margin-bottom: var(--spacing-xlarge);
}

/* Error Page */
.error-page {
    padding: 150px 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-page h1 {
    font-size: 6rem;
    color: var(--teal-primary);
    margin-bottom: var(--spacing-small);
}

.error-page h2 {
    margin-bottom: var(--spacing-large);
}

.error-page p {
    color: var(--light-grey);
    margin-bottom: var(--spacing-xlarge);
}

/* Media Queries for Menu */
@media (min-width: 1200px) {
    .menu-bar.v1 {
        padding: 0;
    }
    
    .menu-bar-content {
        padding: 20px 0;
    }
    
    .menu-logo {
        max-width: 137px;
    }
    
    .main-menu {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Typing indicator */
.typing-indicator {
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Terminal scrollbar */
.chat-interface::-webkit-scrollbar {
    width: 8px;
}

.chat-interface::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.chat-interface::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.chat-interface::-webkit-scrollbar-thumb:hover {
    background: #444;
}

/* Additional animations */
@keyframes pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* User Profile Link */
.user-profile-link {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.user-profile-link:hover {
    color: var(--teal-primary);
}

.user-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--teal-primary);
    border-radius: 50%;
    margin-left: 8px;
    position: relative;
}

.user-icon::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}

.user-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 10px;
    background-color: white;
    border-radius: 10px 10px 0 0;
    clip-path: ellipse(9px 7px at 50% 100%);
}

/* User Avatar Styles */
.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 8px;
    object-fit: cover;
    border: 2px solid var(--white);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.user-avatar-small {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 5px;
    object-fit: cover;
    vertical-align: middle;
}

.user-profile-link:hover .user-avatar {
    transform: scale(1.1);
    border-color: var(--teal-primary);
}

/* User Profile Page Styles */
.user-profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 15px;
    border: 3px solid var(--teal-primary);
    box-shadow: 0 0 15px rgba(var(--teal-primary-rgb), 0.3);
}

/* NEW Solutions Page Styles - Redesigned with Flexbox */

/* Hero Section */
.solutions-hero-new {
    padding: var(--spacing-section) 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--rich-charcoal) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.solutions-hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(var(--teal-primary-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.main-title {
    font-size: calc(var(--font-base) * 3.5);
    font-weight: 700;
    margin-bottom: var(--spacing-medium);
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.main-subtitle {
    font-size: calc(var(--font-base) * 1.5);
    color: var(--light-grey);
    margin-bottom: var(--spacing-large);
    font-weight: 500;
    line-height: 1.4;
}

.hero-description p {
    color: var(--medium-grey);
    font-size: calc(var(--font-base) * 1.1);
    line-height: 1.7;
    margin: 0;
}

/* Modern Services Section */
.services-modern {
    padding: calc(var(--spacing-section) * 1.2) 0;
    background: linear-gradient(180deg, var(--rich-charcoal) 0%, var(--deep-navy) 50%, var(--rich-charcoal) 100%);
    position: relative;
}

.services-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(var(--teal-primary-rgb), 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(var(--teal-primary-rgb), 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-xlarge);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Service Cards */
.service-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.02) 0%, 
        rgba(255, 255, 255, 0.01) 50%, 
        transparent 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, 
        rgba(var(--teal-primary-rgb), 0.02) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(var(--teal-primary-rgb), 0.2);
    box-shadow: 
        0 25px 50px rgba(var(--teal-primary-rgb), 0.15),
        0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Featured Card */
.featured-card {
    background: linear-gradient(145deg, 
        rgba(var(--teal-primary-rgb), 0.08) 0%, 
        rgba(var(--teal-primary-rgb), 0.03) 50%, 
        transparent 100%);
    border: 2px solid rgba(var(--teal-primary-rgb), 0.2);
    position: relative;
}

.featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    border-radius: 20px 20px 0 0;
}

/* Card Header */
.card-header {
    padding: var(--spacing-xlarge) var(--spacing-xlarge) 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.service-badge {
    position: absolute;
    top: var(--spacing-large);
    right: var(--spacing-large);
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    border-radius: 25px;
    padding: var(--spacing-small) var(--spacing-medium);
    box-shadow: 0 8px 25px rgba(var(--teal-primary-rgb), 0.4);
    position: relative;
    overflow: hidden;
}

.badge-text {
    color: var(--white);
    font-size: calc(var(--font-base) * 0.85);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.badge-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, 
        rgba(var(--teal-primary-rgb), 0.1) 0%, 
        rgba(var(--teal-primary-rgb), 0.05) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(var(--teal-primary-rgb), 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.service-icon img {
    width: 45px;
    height: 45px;
    filter: brightness(0) saturate(100%) invert(54%) sepia(67%) saturate(2618%) hue-rotate(343deg) brightness(103%) contrast(101%);
    transition: all 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
    border-radius: 24px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .icon-glow {
    opacity: 0.6;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    border-color: rgba(var(--teal-primary-rgb), 0.3);
}

/* Card Content */
.card-content {
    padding: var(--spacing-large) var(--spacing-xlarge);
}

.service-title {
    color: var(--white);
    font-size: calc(var(--font-base) * 1.7);
    font-weight: 700;
    margin-bottom: var(--spacing-medium);
    line-height: 1.3;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-grey) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    color: var(--light-grey);
    font-size: calc(var(--font-base) * 1.05);
    line-height: 1.7;
    margin-bottom: var(--spacing-large);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-medium);
    color: var(--medium-grey);
    font-size: calc(var(--font-base) * 0.95);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: var(--light-grey);
    transform: translateX(5px);
}

.check-icon {
    color: var(--teal-primary);
    font-weight: bold;
    font-size: calc(var(--font-base) * 1.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(var(--teal-primary-rgb), 0.15) 0%, 
        rgba(var(--teal-primary-rgb), 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(var(--teal-primary-rgb), 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.check-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
    border-radius: 50%;
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-item:hover .check-icon::before {
    opacity: 0.4;
}

.feature-item:hover .check-icon {
    transform: scale(1.1);
    border-color: rgba(var(--teal-primary-rgb), 0.4);
    background: rgba(var(--teal-primary-rgb), 0.2);
}

/* Card Footer */
.card-footer {
    padding: 0 var(--spacing-xlarge) var(--spacing-xlarge);
}

.explore-btn {
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(var(--teal-primary-rgb), 0.1) 0%, 
        rgba(var(--teal-primary-rgb), 0.05) 100%);
    border: 2px solid rgba(var(--teal-primary-rgb), 0.2);
    color: var(--teal-primary);
    padding: var(--spacing-medium) var(--spacing-large);
    border-radius: 12px;
    font-size: calc(var(--font-base) * 1.05);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(var(--teal-primary-rgb), 0.1) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.explore-btn:hover::before {
    left: 100%;
}

.explore-btn:hover {
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    color: var(--white);
    border-color: var(--teal-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--teal-primary-rgb), 0.3);
}

/* Methodology Section */
.methodology-new {
    padding: var(--spacing-section) 0;
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--rich-charcoal) 100%);
}

.methodology-header {
    text-align: center;
    margin-bottom: var(--spacing-xxlarge);
}

.section-title {
    font-size: calc(var(--font-base) * 2.8);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-medium);
    line-height: 1.2;
}

.section-subtitle {
    font-size: calc(var(--font-base) * 1.2);
    color: var(--light-grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.methodology-flow {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-large);
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-step {
    background: linear-gradient(135deg, var(--lighter-navy) 0%, var(--navy-container) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-large);
    min-width: 300px;
    max-width: 350px;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.methodology-step::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.methodology-step:hover::before {
    transform: scaleY(1);
}

.methodology-step:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--teal-primary-rgb), 0.3);
    box-shadow: 0 15px 35px rgba(var(--teal-primary-rgb), 0.2);
}

.step-number {
    font-size: calc(var(--font-base) * 1.8);
    font-weight: 700;
    color: var(--teal-primary);
    margin-bottom: var(--spacing-medium);
    background: rgba(var(--teal-primary-rgb), 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(var(--teal-primary-rgb), 0.3);
}

.step-info h4 {
    color: var(--white);
    font-size: calc(var(--font-base) * 1.3);
    font-weight: 600;
    margin-bottom: var(--spacing-small);
    line-height: 1.3;
}

.step-info p {
    color: var(--light-grey);
    font-size: var(--font-base);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.solutions-cta {
    padding: var(--spacing-section) 0;
    background: linear-gradient(135deg, var(--rich-charcoal) 0%, var(--deep-navy) 100%);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: calc(var(--font-base) * 2.5);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-medium);
    line-height: 1.3;
}

.cta-description {
    font-size: calc(var(--font-base) * 1.2);
    color: var(--light-grey);
    margin-bottom: var(--spacing-large);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-medium);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    min-width: 200px;
    font-size: calc(var(--font-base) * 1.1);
    padding: var(--spacing-medium) var(--spacing-xlarge);
}

/* Responsive Design for Solutions Page */
@media (max-width: 768px) {
    .main-title {
        font-size: calc(var(--font-base) * 2.5);
    }
    
    .main-subtitle {
        font-size: calc(var(--font-base) * 1.2);
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--spacing-large);
        max-width: 500px;
    }
    
    .card-header {
        padding: var(--spacing-large) var(--spacing-large) 0;
    }
    
    .card-content {
        padding: var(--spacing-medium) var(--spacing-large);
    }
    
    .card-footer {
        padding: 0 var(--spacing-large) var(--spacing-large);
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon img {
        width: 35px;
        height: 35px;
    }
    
    .service-title {
        font-size: calc(var(--font-base) * 1.4);
    }
    
    .methodology-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .methodology-step {
        min-width: auto;
        max-width: 100%;
    }
    
    .cta-title {
        font-size: calc(var(--font-base) * 2);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .solutions-hero-new,
    .services-modern,
    .methodology-new,
    .solutions-cta {
        padding: calc(var(--spacing-section) * 0.7) 0;
    }
    
    .main-title {
        font-size: calc(var(--font-base) * 2.2);
    }
    
    .section-title {
        font-size: calc(var(--font-base) * 2.2);
    }
    
    .cta-title {
        font-size: calc(var(--font-base) * 1.8);
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--spacing-medium);
    }
    
    .service-card {
        border-radius: 16px;
    }
    
    .card-header {
        padding: var(--spacing-medium) var(--spacing-medium) 0;
    }
    
    .card-content {
        padding: var(--spacing-small) var(--spacing-medium);
    }
    
    .card-footer {
        padding: 0 var(--spacing-medium) var(--spacing-medium);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .service-icon img {
        width: 30px;
        height: 30px;
    }
    
    .service-title {
        font-size: calc(var(--font-base) * 1.3);
    }
    
    .service-description {
        font-size: var(--font-base);
    }
    
    .feature-item {
        font-size: calc(var(--font-base) * 0.9);
    }
    
    .check-icon {
        width: 24px;
        height: 24px;
        font-size: var(--font-base);
    }
    
    .methodology-step {
        padding: var(--spacing-medium);
    }
    
    .methodology-flow {
        flex-direction: column;
    }
}

/* NEW About Page Styles - Redesigned with Flexbox */

/* Hero Section */
.about-hero-new {
    padding: calc(var(--spacing-section) + 60px) 0 var(--spacing-section) 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--rich-charcoal) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-main-title {
    font-size: calc(var(--font-base) * 3.5);
    font-weight: 700;
    margin-bottom: var(--spacing-medium);
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-main-subtitle {
    font-size: calc(var(--font-base) * 1.5);
    color: var(--light-grey);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Mission & Vision Section */
.mission-vision-new {
    padding: var(--spacing-section) 0;
    background: linear-gradient(180deg, var(--rich-charcoal) 0%, var(--deep-navy) 100%);
}

.mission-vision-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xlarge);
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.content-item {
    background: linear-gradient(135deg, var(--lighter-navy) 0%, var(--navy-container) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xlarge);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 350px;
    max-width: 450px;
}

.content-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-item:hover::before {
    opacity: 1;
}

.content-item:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--teal-primary-rgb), 0.3);
    box-shadow: 0 15px 40px rgba(var(--teal-primary-rgb), 0.2);
}

.content-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-medium);
    text-align: center;
}

.content-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(var(--teal-primary-rgb), 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-medium);
    border: 2px solid rgba(var(--teal-primary-rgb), 0.2);
}

.content-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(54%) sepia(67%) saturate(2618%) hue-rotate(343deg) brightness(103%) contrast(101%);
}

.content-title {
    color: var(--white);
    font-size: calc(var(--font-base) * 1.6);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

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

.content-description {
    color: var(--light-grey);
    font-size: calc(var(--font-base) * 1.1);
    line-height: 1.7;
    margin: 0;
}

/* Values Section */
.values-new {
    padding: var(--spacing-section) 0;
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--rich-charcoal) 100%);
}

.values-header {
    text-align: center;
    margin-bottom: var(--spacing-xxlarge);
}

.values-section-title {
    font-size: calc(var(--font-base) * 2.8);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-medium);
    line-height: 1.2;
}

.values-section-subtitle {
    font-size: calc(var(--font-base) * 1.2);
    color: var(--light-grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-large);
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: linear-gradient(135deg, var(--lighter-navy) 0%, var(--navy-container) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-large);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.value-item:hover::before {
    transform: scaleY(1);
}

.value-item:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--teal-primary-rgb), 0.3);
    box-shadow: 0 12px 30px rgba(var(--teal-primary-rgb), 0.2);
}

.value-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-medium);
}

.value-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(var(--teal-primary-rgb), 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-medium);
    border: 2px solid rgba(var(--teal-primary-rgb), 0.2);
}

.value-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(54%) sepia(67%) saturate(2618%) hue-rotate(343deg) brightness(103%) contrast(101%);
}

.value-title {
    color: var(--white);
    font-size: calc(var(--font-base) * 1.3);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

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

.value-description {
    color: var(--light-grey);
    font-size: var(--font-base);
    line-height: 1.6;
    margin: 0;
}

/* Commitment Section */
.commitment-new {
    padding: var(--spacing-section) 0;
    background: linear-gradient(180deg, var(--rich-charcoal) 0%, var(--deep-navy) 100%);
}

.commitment-wrapper {
    display: flex;
    gap: var(--spacing-xxlarge);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-text-area {
    flex: 1;
    min-width: 300px;
}

.commitment-title {
    color: var(--white);
    font-size: calc(var(--font-base) * 2.5);
    font-weight: 700;
    margin-bottom: var(--spacing-medium);
    line-height: 1.3;
}

.commitment-description {
    color: var(--light-grey);
    font-size: calc(var(--font-base) * 1.1);
    line-height: 1.7;
    margin-bottom: var(--spacing-large);
}

.commitment-points {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
}

.commitment-point {
    display: flex;
    align-items: center;
    gap: var(--spacing-medium);
    color: var(--medium-grey);
    font-size: var(--font-base);
}

.commitment-check {
    color: var(--teal-primary);
    font-weight: bold;
    font-size: calc(var(--font-base) * 1.2);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--teal-primary-rgb), 0.1);
    border-radius: 50%;
    border: 2px solid rgba(var(--teal-primary-rgb), 0.3);
    flex-shrink: 0;
}

.commitment-stats-area {
    flex: 1;
    min-width: 300px;
}

.stats-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large);
}

.stat-item {
    background: linear-gradient(135deg, var(--lighter-navy) 0%, var(--navy-container) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-large);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    opacity: 0.7;
}

.stat-item:hover {
    transform: scale(1.05);
    border-color: rgba(var(--teal-primary-rgb), 0.3);
    box-shadow: 0 10px 25px rgba(var(--teal-primary-rgb), 0.2);
}

.stat-value {
    font-size: calc(var(--font-base) * 2.5);
    font-weight: 700;
    color: var(--teal-primary);
    margin-bottom: var(--spacing-small);
    line-height: 1;
}

.stat-label {
    color: var(--light-grey);
    font-size: var(--font-base);
    font-weight: 500;
}

/* About CTA Section */
.about-cta-new {
    padding: var(--spacing-section) 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--rich-charcoal) 100%);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: calc(var(--font-base) * 2.5);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-medium);
    line-height: 1.3;
}

.about-cta-description {
    font-size: calc(var(--font-base) * 1.2);
    color: var(--light-grey);
    margin-bottom: var(--spacing-large);
    line-height: 1.6;
}

.about-cta-actions {
    display: flex;
    gap: var(--spacing-medium);
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-btn {
    min-width: 200px;
    font-size: calc(var(--font-base) * 1.1);
    padding: var(--spacing-medium) var(--spacing-xlarge);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-main-title {
        font-size: calc(var(--font-base) * 2.5);
    }
    
    .about-main-subtitle {
        font-size: calc(var(--font-base) * 1.2);
    }
    
    .mission-vision-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .content-item {
        min-width: auto;
        max-width: 100%;
    }
    
    .values-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .value-item {
        min-width: auto;
        max-width: 100%;
    }
    
    .commitment-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-text-area,
    .commitment-stats-area {
        min-width: auto;
    }
    
    .stats-showcase {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-cta-title {
        font-size: calc(var(--font-base) * 2);
    }
    
    .about-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .about-hero-new,
    .mission-vision-new,
    .values-new,
    .commitment-new,
    .about-cta-new {
        padding: calc(var(--spacing-section) * 0.7) 0;
    }
    
    .about-main-title {
        font-size: calc(var(--font-base) * 2.2);
    }
    
    .values-section-title {
        font-size: calc(var(--font-base) * 2.2);
    }
    
    .commitment-title {
        font-size: calc(var(--font-base) * 2);
    }
    
    .about-cta-title {
        font-size: calc(var(--font-base) * 1.8);
    }
    
    .content-item,
    .value-item,
    .stat-item {
        padding: var(--spacing-medium);
    }
    
    .content-title {
        font-size: calc(var(--font-base) * 1.4);
    }
    
    .stats-showcase {
        flex-direction: column;
    }
    
    .commitment-point {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-small);
        text-align: right;
    }
}

/* End of file */ 

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007bff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

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

.success-stories .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.success-stories .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
}

.success-stories .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6610f2);
    border-radius: 2px;
}

.success-stories .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.1);
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6610f2);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.story-stats {
    margin-bottom: 25px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.story-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.story-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .success-stories {
        padding: 60px 0;
    }
    
    .success-stories .section-title {
        font-size: 2rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
} 

/* Service Detail Pages Styles */

/* Service Hero */
.service-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

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

.hero-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    text-decoration: underline;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.hero-stats .stat-item {
    text-align: center;
    min-width: 140px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: #ffd700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: white;
}

.service-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.service-overview p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.features-highlight {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff, #6610f2);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.service-image {
    text-align: center;
    padding: 20px;
}

.service-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* AI Products Grid */
.ai-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-grid,
.areas-grid,
.solutions-grid,
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card,
.area-card,
.solution-card,
.type-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.product-card:hover,
.area-card:hover,
.solution-card:hover,
.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-icon,
.area-icon,
.solution-icon,
.type-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff, #6610f2);
    border-radius: 12px;
}

.product-icon img,
.area-icon img,
.solution-icon img,
.type-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.product-card h3,
.area-card h3,
.solution-card h3,
.type-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.product-card p,
.area-card p,
.solution-card p,
.type-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features,
.area-features,
.solution-features {
    list-style: none;
    padding: 0;
}

.product-features li,
.area-features li,
.solution-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.product-features li:before,
.area-features li:before,
.solution-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Custom Development */
.custom-development {
    padding: 80px 0;
    background: white;
}

.development-process {
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #007bff;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.applications-grid {
    margin-top: 30px;
}

.applications-grid h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.application-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.application-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 10px;
}

.application-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Key Features */
.key-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-icon {
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Applications */
.applications {
    padding: 80px 0;
    background: white;
}

.applications h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.application-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.app-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff, #6610f2);
    border-radius: 12px;
}

.app-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.application-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.application-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Methodology */
.methodology {
    padding: 80px 0;
    background: #f8f9fa;
}

.methodology h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Service Levels */
.service-levels {
    padding: 80px 0;
    background: white;
}

.service-levels h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.level-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.level-card.featured {
    border-color: #007bff;
    transform: scale(1.05);
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.level-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.level-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.level-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.level-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.level-features {
    list-style: none;
    padding: 0;
}

.level-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.level-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Development Methodology Timeline */
.dev-methodology {
    padding: 80px 0;
    background: #f8f9fa;
}

.methodology-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid #007bff;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Technologies */
.technologies,
.analysis-technologies {
    padding: 80px 0;
    background: white;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    border: 1px solid #e9ecef;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tech-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Advantages */
.advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Service CTA */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #007bff;
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #007bff;
}

/* Government Solutions Specific */
.government-solutions {
    padding: 80px 0;
    background: #f8f9fa;
}

.implementation-methodology {
    padding: 80px 0;
    background: white;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-card .step-number {
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Commitments */
.commitments {
    padding: 80px 0;
    background: #f8f9fa;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.commitment-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.commitment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.commitment-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.commitment-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Success Stories Detail */
.success-stories-detail,
.gov-success-stories,
.data-success-stories {
    padding: 80px 0;
    background: white;
}

.stories-grid,
.gov-stories-grid,
.data-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-detail,
.gov-story,
.data-story {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid #007bff;
}

.story-metrics,
.story-stat,
.story-number {
    margin-bottom: 20px;
}

.metric {
    display: inline-block;
    margin-right: 30px;
}

.metric-number,
.story-stat,
.story-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    display: block;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
}

.story-detail h4,
.gov-story h4,
.data-story h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.story-detail p,
.gov-story p,
.data-story p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Analysis Methodology Flow */
.analysis-methodology {
    padding: 80px 0;
    background: #f8f9fa;
}

.methodology-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.flow-step {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.flow-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.flow-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .features-highlight {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .products-grid,
    .areas-grid,
    .solutions-grid,
    .types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-overview h2,
    .methodology h2,
    .service-levels h2 {
        font-size: 2rem;
    }
} 

/* SERVICE DETAIL PAGES COMPREHENSIVE STYLING */

/* Service Hero Section */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

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

.hero-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero-breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.service-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.service-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    line-height: 1.5;
}

.service-hero .hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.service-hero .stat-item {
    text-align: center;
    min-width: 140px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-hero .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: #ffd700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.service-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Service Overview Section */
.service-overview {
    padding: 80px 0;
    background: white;
}

.service-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-overview p {
    font-size: 1.1rem;
    color: var(--medium-grey);
    line-height: 1.7;
    margin-bottom: 30px;
}

.features-highlight {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-point .feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.feature-point .feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 5px;
}

.feature-point .feature-text p {
    font-size: 0.95rem;
    color: var(--medium-grey);
    margin: 0;
}

.service-image {
    text-align: center;
    padding: 20px;
}

.service-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Key Features Section */
.key-features {
    padding: 80px 0;
    background: var(--light-background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--teal-primary-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--teal-primary-rgb), 0.3);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
    border-radius: 12px;
}

.feature-card .feature-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    color: var(--medium-grey);
    line-height: 1.6;
    margin: 0;
}

/* AI Products / Applications / Solutions Grid */
.ai-products, .applications, .solutions, .methodology, .service-levels {
    padding: 80px 0;
}

.ai-products {
    background: var(--light-background);
}

.applications {
    background: white;
}

.solutions {
    background: var(--light-background);
}

.methodology {
    background: white;
}

.service-levels {
    background: var(--light-background);
}

.products-grid, .applications-grid, .solutions-grid, .areas-grid, .types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card, .application-card, .solution-card, .area-card, .type-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--teal-primary-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.product-card:hover, .application-card:hover, .solution-card:hover, .area-card:hover, .type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--teal-primary-rgb), 0.3);
}

.product-icon, .app-icon, .solution-icon, .area-icon, .type-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
    border-radius: 12px;
}

.product-icon img, .app-icon img, .solution-icon img, .area-icon img, .type-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.product-card h3, .application-card h3, .solution-card h3, .area-card h3, .type-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-card p, .application-card p, .solution-card p, .area-card p, .type-card p {
    color: var(--medium-grey);
    line-height: 1.6;
    margin: 0;
}

/* Methodology Steps */
.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(var(--teal-primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--teal-primary-rgb), 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--medium-grey);
    line-height: 1.6;
    margin: 0;
}

/* Service Levels */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.level-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    border: 2px solid rgba(var(--teal-primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.level-card.featured {
    border-color: var(--teal-primary);
    transform: scale(1.02);
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.level-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.level-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.level-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 15px;
}

.level-description {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.level-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.level-features li {
    padding: 8px 0;
    color: var(--medium-grey);
    position: relative;
    padding-right: 25px;
}

.level-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--teal-primary);
    font-weight: bold;
}

/* Service CTA Section */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .service-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-hero .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .service-hero .stat-item {
        min-width: 120px;
        padding: 15px 10px;
    }
    
    .service-hero .stat-number {
        font-size: 2rem;
    }
    
    .features-highlight {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-point {
        text-align: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .products-grid, .applications-grid, .solutions-grid, .areas-grid, .types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2, .service-overview h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 80px 0 50px;
    }
    
    .service-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .service-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-hero .stat-item {
        min-width: 100px;
        padding: 12px 8px;
    }
    
    .service-hero .stat-number {
        font-size: 1.8rem;
    }
    
    .service-hero .stat-label {
        font-size: 0.8rem;
    }
    
    .feature-card, .product-card, .application-card, .solution-card, .area-card, .type-card, .step {
        padding: 20px;
    }
    
    .section-header h2, .service-overview h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}