/* ===== Root Variables ===== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text: #334155;
    --text-muted: #64748b;
    --text-heading: #0f172a;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --gradient-1: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
    --gradient-2: linear-gradient(135deg, #06b6d4, #6366f1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-sm: 10px;
}

/* ===== Global ===== */
* { margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.section-padding {
    padding: 120px 0;
}

/* ===== Navbar ===== */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-dark .navbar-brand,
.navbar-dark .nav-link {
    color: var(--text-heading) !important;
}

.navbar-brand {
    font-size: 1.4rem;
    color: var(--text-heading) !important;
}

.brand-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

/* Override navbar-dark for light theme */
.navbar-dark .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-dark .navbar-toggler {
    border-color: var(--border);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(139,92,246,0.05) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #06b6d4;
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

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

.badge-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    color: var(--text-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn-outline-light {
    border: 1px solid var(--border);
    color: var(--text);
    background: rgba(255,255,255,0.8);
}

.hero-buttons .btn-outline-light:hover {
    background: var(--bg);
    border-color: var(--primary);
    color: var(--primary);
}

.hero-buttons .btn {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    box-shadow: 0 4px 20px rgba(99,102,241,0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.5);
}

.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.hero-stats {
    border-top: 1px solid var(--border);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 8px auto 0;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

/* ===== Section Tag ===== */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* ===== Section Tag ===== */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Features Section ===== */
.features {
    background: var(--bg-light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.2), transparent);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99,102,241,0.3);
    box-shadow: var(--shadow-lg);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-blue {
    background: rgba(99,102,241,0.15);
    color: #818cf8;
}

.icon-purple {
    background: rgba(139,92,246,0.15);
    color: #a78bfa;
}

.icon-green {
    background: rgba(34,197,94,0.15);
    color: #4ade80;
}

.icon-orange {
    background: rgba(249,115,22,0.15);
    color: #fb923c;
}

.icon-pink {
    background: rgba(236,72,153,0.15);
    color: #f472b6;
}

.icon-cyan {
    background: rgba(6,182,212,0.15);
    color: #22d3ee;
}

/* ===== About Section ===== */
.about {
    background: var(--bg);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.2), transparent);
}

.code-window {
    background: #1e293b;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.1);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.code-title {
    margin-left: 12px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.code-body {
    padding: 24px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    overflow-x: auto;
}

.code-body pre {
    margin: 0;
    color: #e2e8f0;
}

.kw { color: #f472b6; }
.str { color: #7dd3fc; }
.cm { color: #64748b; }

.about-feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.about-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(34,197,94,0.15);
    color: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 2px;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--bg-light);
}

.contact-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    background: var(--gradient-1);
    padding: 3rem;
    color: white;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-label {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 2px;
}

.contact-form-section {
    padding: 3rem;
}

.form-control,
.form-select {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: var(--bg);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
    color: var(--text);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-weight: 500;
    color: var(--text-heading);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* ===== CTA Section ===== */
.cta {
    background: var(--bg);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.2), transparent);
}

.btn-light {
    background: white;
    color: var(--text-heading);
    border: 1px solid var(--border);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-heading);
}

/* ===== Page Header ===== */
.page-header {
    background: var(--gradient-1);
    padding: 140px 0 80px;
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
}

.page-header .lead {
    color: rgba(255,255,255,0.75);
}

/* ===== Dropdown Menu ===== */
.dropdown-menu {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--text);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(99,102,241,0.08);
    color: var(--primary);
}

/* ===== Capability Cards ===== */
.capability-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.capability-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99,102,241,0.3);
    box-shadow: var(--shadow-lg);
}

.capability-icon {
    font-size: 3rem;
}

.capability-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.capability-link:hover {
    text-decoration: underline;
}

/* ===== Solution Cards ===== */
.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99,102,241,0.3);
    box-shadow: var(--shadow-lg);
}

.solution-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99,102,241,0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.solution-features li {
    padding: 0.3rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.solution-features li::before {
    content: "✓ ";
    color: #22c55e;
    font-weight: bold;
}

/* ===== Case Cards ===== */
.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

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

.case-image {
    background: var(--gradient-1);
    padding: 3rem;
    text-align: center;
}

.case-image-placeholder {
    font-size: 4rem;
}

.case-content {
    padding: 2rem;
}

.case-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

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

.case-metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.case-metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== Case Preview ===== */
.case-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

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

.case-preview-icon {
    font-size: 3rem;
    min-width: 80px;
    text-align: center;
}

/* ===== Value Cards ===== */
.value-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.value-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-stat-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

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

.value-icon {
    font-size: 2.5rem;
}
.value-icon img {
    width: stretch;
}

/* ===== Testimonial Cards ===== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    font-size: 2rem;
}

.testimonial-name {
    color: var(--text-heading);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Company Page ===== */
.company-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
}

.company-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.company-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-image-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 4rem 2rem;
    text-align: center;
}

.about-image-icon {
    font-size: 5rem;
}

/* ===== Culture Cards ===== */
.culture-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

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

.culture-icon {
    font-size: 3rem;
}

/* ===== Timeline ===== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* ===== Team Cards ===== */
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

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

.team-avatar {
    font-size: 4rem;
}

.team-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.team-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-stat-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ===== Equipment Cards ===== */
.equipment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

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

.equipment-icon {
    font-size: 2.5rem;
}

.equipment-icon img{
    width :stretch;
}

.equipment-specs {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.equipment-specs li {
    padding: 0.3rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.equipment-specs li::before {
    content: "• ";
    color: var(--primary);
}

/* ===== Client Logos ===== */
.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.client-logo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.client-logo:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== Contact Info Cards ===== */
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

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

.contact-info-icon {
    font-size: 3rem;
}

.map-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder-icon {
    font-size: 4rem;
}

.contact-quick-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

/* ===== Message Form ===== */
.message-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.info-note-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.info-note-icon {
    font-size: 2rem;
}

/* ===== Job Cards ===== */
.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

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

.job-tag {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(99,102,241,0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.job-tag-blue {
    background: rgba(6,182,212,0.1);
    color: #06b6d4;
}

.job-salary {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* ===== Benefit Cards ===== */
.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

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

.benefit-icon {
    font-size: 2.5rem;
}

/* ===== Milestone Cards ===== */
.milestone-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

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

.milestone-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ===== Advantage Cards ===== */
.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

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

.advantage-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-light);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-title {
    color: var(--text-heading);
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-heading {
    color: var(--text-heading);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer a {
    color: var(--text-muted);
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-form-section {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-stats .col-4 {
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .display-5 {
        font-size: 2rem;
    }

    .display-6 {
        font-size: 1.75rem;
    }
}

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

.hero-title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ===== Case Detail Styles ===== */
.case-detail-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 3rem;
    margin-bottom: 2rem;
}

.case-detail-header {
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.case-detail-section {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.case-section-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.case-section-content {
    flex: 1;
}

.case-section-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.case-section-content li {
    margin-bottom: 0.5rem;
}

.case-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.case-metric-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.case-metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.case-metric-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.case-detail-summary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin-top: 2rem;
    font-size: 1.05rem;
}

/* Industry Card */
.industry-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-card ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.25rem;
}

.industry-card li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Value Stats */
.value-stat-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.value-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Text colors */
.text-success {
    color: #10b981 !important;
}

/* Responsive for case detail */
@media (max-width: 767.98px) {
    .case-detail-card {
        padding: 1.5rem;
    }
    
    .case-detail-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .case-section-icon {
        font-size: 2rem;
    }
    
    .case-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Expert Card ===== */
.expert-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
}

.expert-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.expert-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ===== Client Logo Grid ===== */
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
}

.client-logo-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.client-logo-placeholder {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.client-logo-img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.client-logo-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== Equipment Card Simple ===== */
.equipment-card-simple {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.equipment-card-simple:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.equipment-card-simple .equipment-icon {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.equipment-card-simple .equipment-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.equipment-card-simple h5 {
    font-size: 1rem;
    margin: 0;
}

/* ===== Culture Photo Card ===== */
.culture-photo-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.culture-photo-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* ===== Job Card Simple ===== */
.job-card-simple {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.job-card-simple:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.job-category h3 {
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

/* ===== Gallery Image Placeholder ===== */
.gallery-image-placeholder {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
}

.gallery-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ===== Company Stat ===== */
.company-stat {
    padding: 1rem;
    text-align: center;
}

.company-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.company-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 767.98px) {
    .client-logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .expert-card {
        padding: 1.5rem;
    }
    
    .expert-avatar {
        font-size: 3rem;
    }
}
