/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    padding-top: 90px; /* Add padding to account for fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-color: #169b93;
    --secondary-color: #36384d;
    --accent-color: #4fb5ad;
    --success-color: #169b93;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --text-primary: #1a1a1a;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --bg-primary: #ffffff;
    --bg-secondary: #F9FAFB;
    --bg-accent: #F3F4F6;
    --border-color: #E5E7EB;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 25px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #169b93 0%, #36384d 100%);
    --gradient-secondary: linear-gradient(135deg, #4fb5ad 0%, #169b93 100%);
    --gradient-accent: linear-gradient(135deg, #36384d 0%, #2c2e3f 100%);
}

/* Dark theme variables */
[data-theme="dark"] {
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-light: #94A3B8;
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-accent: #334155;
    --border-color: #475569;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.5);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.5);
    --shadow-heavy: 0 20px 25px rgba(0, 0, 0, 0.5);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color);
}

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

.black-text {
    color: #000000 !important;
}

.white-text {
    color: #ffffff !important;
}

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

.glow-text {
    text-shadow: 0 0 20px rgba(22, 155, 147, 0.5);
}

.text-primary.glow-text {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(22, 155, 147, 0.6);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

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

.btn-glow {
    box-shadow: 0 0 20px rgba(22, 155, 147, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(22, 155, 147, 0.5);
}

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

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 155, 147, 0.2);
}

.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: buttonSpinner 1s linear infinite;
}

@keyframes buttonSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-accent);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-medium);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo-image {
    width: 135px;
    height: 36px;
    object-fit: contain;
    border-radius: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    flex-wrap: nowrap !important;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list > li:not(:last-child) {
    margin-right: 1rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions > *:not(:last-child) {
    margin-right: 1rem;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-primary);
}

.language-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.language-toggle .current-lang {
    font-weight: 600;
    font-size: var(--font-size-xs);
}

.language-toggle .fa-chevron-down {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.language-selector.active .language-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-primary);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-dropdown);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    min-width: 140px;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

.language-option:hover {
    background: var(--bg-secondary);
}

.language-option.active {
    background: var(--primary-color) !important;
    color: white !important;
    font-weight: 600;
}

.language-option.active img {
    filter: brightness(1.2);
}

.language-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    margin-right: 1rem;
}

.language-switcher > *:not(:last-child) {
    margin-right: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(22, 155, 147, 0.3);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-toggle:hover::before {
    opacity: 1;
}

.theme-toggle.active {
    background: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section Enhanced */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    margin-top: -80px; /* Compensate for body padding */
    padding-top: 80px; /* Add padding to maintain full height */
}

/* Advanced Gradient Mesh Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(22, 155, 147, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(54, 56, 77, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(79, 181, 173, 0.2) 0%, transparent 50%),
        conic-gradient(from 180deg at 50% 50%, rgba(22, 155, 147, 0.1) 0deg, rgba(54, 56, 77, 0.1) 180deg, rgba(22, 155, 147, 0.1) 360deg);
    filter: blur(40px);
    opacity: 0.8;
    animation: meshFloat 20s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Floating Orbs */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(22, 155, 147, 0.4) 0%, transparent 2%),
        radial-gradient(circle at 85% 15%, rgba(79, 181, 173, 0.3) 0%, transparent 2%),
        radial-gradient(circle at 70% 85%, rgba(54, 56, 77, 0.3) 0%, transparent 2%),
        radial-gradient(circle at 25% 75%, rgba(22, 155, 147, 0.2) 0%, transparent 2%);
    animation: orbFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-15px) scale(1.1); }
    50% { transform: translateY(5px) scale(0.9); }
    75% { transform: translateY(-10px) scale(1.05); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Enhanced Circuit Board */
.circuit-board {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    animation: circuitPulse 4s ease-in-out infinite;
}

.circuit-1 {
    width: 200px;
    height: 2px;
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.circuit-2 {
    width: 150px;
    height: 2px;
    top: 60%;
    right: 20%;
    transform: rotate(-30deg);
    animation-delay: 1s;
}

.circuit-3 {
    width: 100px;
    height: 2px;
    bottom: 30%;
    left: 30%;
    transform: rotate(60deg);
    animation-delay: 2s;
}

@keyframes circuitPulse {
    0%, 100% { 
        opacity: 0.1;
        box-shadow: 0 0 0 rgba(22, 155, 147, 0);
    }
    50% { 
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(22, 155, 147, 0.5);
    }
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: nodePulse 3s ease-in-out infinite;
}

.node-1 {
    top: 25%;
    left: 25%;
    animation-delay: 0s;
}

.node-2 {
    top: 45%;
    right: 30%;
    animation-delay: 1s;
}

.node-3 {
    bottom: 35%;
    left: 40%;
    animation-delay: 2s;
}

@keyframes nodePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 155, 147, 0.7);
    }
    50% { 
        transform: scale(1.5);
        box-shadow: 0 0 0 10px rgba(22, 155, 147, 0);
    }
}

/* Enhanced Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary-color);
    animation: floatIcon 6s ease-in-out infinite;
}

.float-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 10s linear infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.icon-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 20%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 35%;
    left: 20%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.icon-5 {
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

/* Enhanced Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

/* Enhanced Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.badge-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.badge-particles::before,
.badge-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.badge-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.badge-particles::after {
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) scale(1.2);
        opacity: 0.4;
    }
}

/* Enhanced Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
}

.title-line {
    display: block;
    position: relative;
    overflow: hidden;
}

.title-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: titleReveal 3s ease-out forwards;
}

.line-1::before { animation-delay: 0.5s; }
.line-2::before { animation-delay: 1s; }
.line-3::before { animation-delay: 1.5s; }

@keyframes titleReveal {
    0% { left: -100%; }
    100% { left: 100%; }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.glow-text {
    text-shadow: 
        0 0 10px rgba(22, 155, 147, 0.5),
        0 0 20px rgba(22, 155, 147, 0.3),
        0 0 30px rgba(22, 155, 147, 0.1);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { 
        text-shadow: 
            0 0 10px rgba(22, 155, 147, 0.5),
            0 0 20px rgba(22, 155, 147, 0.3),
            0 0 30px rgba(22, 155, 147, 0.1);
    }
    50% { 
        text-shadow: 
            0 0 20px rgba(22, 155, 147, 0.8),
            0 0 30px rgba(22, 155, 147, 0.6),
            0 0 40px rgba(22, 155, 147, 0.4);
    }
}

/* Enhanced Hero Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
}

.hero-description::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    animation: underlineGrow 2s ease-out 2s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes underlineGrow {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-trail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.btn:hover .btn-trail {
    opacity: 1;
    transform: translateX(100%);
}

.btn-hover-fill {
    position: relative;
    overflow: hidden;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-hover-fill:hover .btn-bg {
    transform: scaleX(1);
}

.btn-hover-fill:hover {
    color: white;
}

/* Enhanced Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    position: relative;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 155, 147, 0.1), rgba(54, 56, 77, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(22, 155, 147, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    font-size: 20px;
    color: white;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 8s linear infinite;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}



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

/* Enhanced Services Section */
.services {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(22, 155, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(54, 56, 77, 0.1) 0%, transparent 50%);
    animation: patternFloat 25s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(22, 155, 147, 0.05) 50%, transparent 100%);
    animation: gradientShift 15s ease-in-out infinite;
}

/* Enhanced Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* FAQ Section specific styles */
.faq .section-header {
    z-index: 3;
}

.faq .section-title {
    color: white;
}

.faq .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* About Section specific styles */
.about .section-header {
    z-index: 3;
}

.about .section-title {
    color: white;
}

.about .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Blog Section specific styles */
.blog .section-header {
    z-index: 3;
}

.blog .section-title {
    color: white;
}

.blog .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Section specific styles */
.contact .section-header {
    z-index: 3;
}

.contact .section-title {
    color: white;
}

.contact .section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Glassmorphism Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Enhanced Service Cards with Glassmorphism */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 155, 147, 0.1), rgba(54, 56, 77, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card:hover::after {
    opacity: 0.7;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(22, 155, 147, 0.3),
        0 0 100px rgba(22, 155, 147, 0.1);
    border-color: rgba(22, 155, 147, 0.3);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(22, 155, 147, 0.1), rgba(54, 56, 77, 0.1));
    border: 2px solid rgba(22, 155, 147, 0.3);
}

.service-card.featured::before {
    background: linear-gradient(135deg, rgba(22, 155, 147, 0.2), rgba(54, 56, 77, 0.2));
}

/* Enhanced Service Card Hover Effects */
.card-hover-3d:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    perspective: 1000px;
}

/* Service Card Header */
.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 10s linear infinite;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: 50%;
    z-index: 1;
}

.icon-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    overflow: hidden;
}

.icon-particles::before,
.icon-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.icon-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.icon-particles::after {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.service-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.service-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

/* Service Card Content */
.service-content {
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover .service-title::after {
    transform: scaleX(1);
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.service-link:hover::before {
    width: 100%;
}

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

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Card Glow Effect */
.card-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-glow-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

.service-card:hover .card-glow-effect {
    opacity: 1;
}

/* Floating Elements for Service Cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(22, 155, 147, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(22, 155, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(54, 56, 77, 0.1) 0%, transparent 50%);
    animation: patternFloat 25s ease-in-out infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-highlights {
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: white;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.about-visual {
    position: relative;
}

.about-image {
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tech-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

/* Enhanced Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(22, 155, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(54, 56, 77, 0.1) 0%, transparent 50%);
    animation: patternFloat 25s ease-in-out infinite;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 450px;
    cursor: pointer;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(22, 155, 147, 0.3),
        0 0 100px rgba(22, 155, 147, 0.1);
    border-color: rgba(22, 155, 147, 0.4);
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover::after {
    opacity: 0.7;
}

.portfolio-image {
    height: 320px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 155, 147, 0.85), rgba(54, 56, 77, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(135deg, rgba(22, 155, 147, 0.98), rgba(54, 56, 77, 0.98));
    transform: scale(1.02);
}

.portfolio-info {
    text-align: center;
    color: white;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.portfolio-category {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(22, 155, 147, 0.3);
}

.portfolio-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.portfolio-tech {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tech-tag:hover {
    background: rgba(22, 155, 147, 0.3);
    border-color: rgba(22, 155, 147, 0.5);
    transform: translateY(-2px);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 12px 24px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 155, 147, 0.3);
}

.portfolio-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 155, 147, 0.5);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.portfolio-link i {
    transition: transform 0.3s ease;
}

.portfolio-link:hover i {
    transform: translateX(3px);
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(22, 155, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(54, 56, 77, 0.1) 0%, transparent 50%);
    animation: patternFloat 25s ease-in-out infinite;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 155, 147, 0.1) 0%, rgba(54, 56, 77, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

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

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-meta i {
    font-size: 0.75rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

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

.blog-link i {
    transition: transform 0.3s ease;
}

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

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Blog Post Styles */
.blog-post {
    padding: 2rem 0 6rem;
    background: var(--bg-primary);
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb i {
    font-size: 0.75rem;
}

.post-header {
    margin-bottom: 3rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.post-excerpt {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-tag {
    background: var(--bg-accent);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.post-featured-image {
    margin-bottom: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-body h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 3rem 0 1.5rem;
}

.post-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body ul, .post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body blockquote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 0.5rem 0.5rem 0;
}

.post-author {
    display: flex;
    gap: 1.5rem;
    margin: 4rem 0;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.related-posts h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

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

.related-post {
    background: var(--bg-secondary);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 1.5rem;
}

.related-content h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.related-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.related-link:hover {
    color: var(--accent-color);
}

/* Blog Page Styles */
.blog-header {
    background: linear-gradient(135deg, #232e3e 0%, #2c3a4d 100%);
    padding: 4rem 0 2.5rem 0;
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 8px 40px 0 rgba(22, 155, 147, 0.13), 0 2px 12px 0 rgba(0,0,0,0.18);
    margin-bottom: 0;
}
.blog-header-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}
.blog-header-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #179b93 0%, #1e90ff 100%);
}
.blog-header-description {
    color: #cbd5e1;
    font-size: 1.25rem;
    text-align: center;
    margin: 0 auto 1.5rem auto;
    max-width: 700px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    padding: 2rem 0 2rem 0;
    background: rgba(30, 41, 59, 0.85);
    border-radius: 1.2rem;
    box-shadow: 0 6px 32px 0 rgba(22, 155, 147, 0.10), 0 1.5px 8px 0 rgba(0,0,0,0.10);
    max-width: 1200px;
}

.blog-card {
    background: rgba(15, 23, 42, 0.92);
    border-radius: 1.1rem;
    box-shadow: 0 4px 20px 0 rgba(22, 155, 147, 0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid rgba(22, 155, 147, 0.10);
}
.blog-card:hover {
    box-shadow: 0 8px 40px 0 rgba(22, 155, 147, 0.18), 0 2px 12px 0 rgba(0,0,0,0.16);
    transform: translateY(-4px) scale(1.03);
}
.blog-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.blog-excerpt {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}
.blog-meta span, .blog-meta i {
    color: #b6c2d1;
}

.blog-category {
    background: linear-gradient(90deg, #179b93 0%, #1e90ff 100%);
    color: #fff;
    border-radius: 1rem;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 41, 59, 0.85);
    border-radius: 1.2rem;
    box-shadow: 0 4px 20px 0 rgba(22, 155, 147, 0.10);
    padding: 1.5rem 2rem;
    margin: 0 auto 2rem auto;
    max-width: 1200px;
}
.filter-group label {
    color: #cbd5e1;
    font-weight: 600;
    margin-right: 0.7rem;
}
.filter-select {
    background: rgba(15, 23, 42, 0.85);
    color: #f1f5f9;
    border: 1.5px solid rgba(22, 155, 147, 0.18);
    border-radius: 0.7rem;
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
    margin-right: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.filter-select:focus {
    border-color: #179b93;
    box-shadow: 0 0 0 3px rgba(22, 155, 147, 0.13);
    outline: none;
}

@media (max-width: 900px) {
  .blog-header {
    padding: 2.5rem 0 1.2rem 0;
    border-radius: 0 0 1rem 1rem;
  }
  .blog-header-title {
    font-size: 2.1rem;
  }
  .blog-grid {
    gap: 1.2rem;
    padding: 1.2rem 0;
  }
  .blog-filters {
    padding: 1rem 0.5rem;
    border-radius: 0.7rem;
  }
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.newsletter {
    background: linear-gradient(135deg, #232e3e 0%, #2c3a4d 100%);
    border-radius: 2rem;
    box-shadow: 0 12px 48px 0 rgba(22, 155, 147, 0.15), 0 4px 24px 0 rgba(0,0,0,0.22);
    padding: 3rem 1.5rem 2.5rem 1.5rem;
    margin: 2rem auto 0 auto;
    max-width: 900px;
    text-align: center;
}

.newsletter-title {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.newsletter-title .gradient-text {
    background: linear-gradient(90deg, #179b93 0%, #1e90ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.newsletter-description {
    color: #cbd5e1;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
}

.newsletter-input-group input {
    background: rgba(15, 23, 42, 0.85);
    color: #f1f5f9;
    border: 1.5px solid rgba(22, 155, 147, 0.18);
    border-radius: 0.7rem;
    font-size: 1rem;
    padding: 0.85rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1.5px 8px 0 rgba(0,0,0,0.08);
}

.newsletter-input-group input:focus {
    border-color: #179b93;
    box-shadow: 0 0 0 3px rgba(22, 155, 147, 0.13);
    outline: none;
}

.newsletter-form .btn {
    background: linear-gradient(90deg, #179b93 0%, #1e90ff 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 0.8rem;
    box-shadow: 0 2px 12px 0 rgba(22, 155, 147, 0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    padding: 0.85rem 2rem;
}

.newsletter-form .btn:hover {
    background: linear-gradient(90deg, #1e90ff 0%, #179b93 100%);
    box-shadow: 0 4px 24px 0 rgba(22, 155, 147, 0.18);
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 700px) {
  .newsletter {
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    border-radius: 1.2rem;
  }
  .newsletter-title {
    font-size: 1.3rem;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 0.7rem;
  }
  .newsletter-form .btn {
    width: 100%;
    padding: 0.85rem 0;
  }
  .pagination-numbers {
    padding: 0.5rem 0.5rem;
    border-radius: 0.7rem;
  }
}

/* Project Visual Icons */
.project-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-mockup,
.iot-visual,
.medical-visual,
.cloud-visual {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mobile-mockup::before,
.iot-visual::before,
.medical-visual::before,
.cloud-visual::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.3));
    border-radius: 50%;
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.mobile-mockup i,
.iot-visual i,
.medical-visual i,
.cloud-visual i {
    font-size: 3rem;
    color: white;
    z-index: 2;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(22, 155, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(54, 56, 77, 0.1) 0%, transparent 50%);
    animation: patternFloat 25s ease-in-out infinite;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: white;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    display: none !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-locations {
    margin: 2rem 0;
}

.location-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.location-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.location-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-item:hover .location-icon::before {
    opacity: 1;
}

.location-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: white;
}

.location-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover .contact-icon::before {
    opacity: 1;
}

.contact-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-form-container {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-form-container:hover::before {
    opacity: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.6);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

.form-group select option {
    background: #1e293b;
    color: rgba(255, 255, 255, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo {
    color: white;
}

.footer-logo .logo-icon {
    background: var(--gradient-primary);
}

.footer-description {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9CA3AF;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-heavy);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        height: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .location-item,
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .location-icon,
    .contact-icon {
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-item {
        min-height: 380px;
    }
    
    .portfolio-image {
        height: 280px;
    }
    
    .portfolio-info {
        padding: 2rem;
    }
    
    .portfolio-info h3 {
        font-size: 1.5rem;
    }
    
    .portfolio-info p {
        font-size: 1rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Loading states */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Error states */
.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Success states */
.success-message {
    color: var(--success-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
    min-width: 300px;
    border-left: 4px solid var(--primary-color);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: var(--success-color);
}

.notification-error {
    border-left-color: var(--error-color);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.notification-success .notification-content i {
    color: var(--success-color);
}

.notification-error .notification-content i {
    color: var(--error-color);
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1.25rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-heavy);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --border-color: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 

/* Advanced Scroll-Triggered Animations */
@keyframes slideInUp {
    from {
        transform: translateY(60px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

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

@keyframes morphBlob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        border-radius: 30% 70% 60% 40% / 70% 40% 60% 30%;
        transform: translateY(0px) rotate(180deg);
    }
    75% {
        border-radius: 70% 30% 40% 60% / 30% 60% 40% 70%;
        transform: translateY(-10px) rotate(270deg);
    }
}

@keyframes liquidWave {
    0%, 100% {
        clip-path: polygon(0 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0 100%);
    }
    25% {
        clip-path: polygon(0 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0 100%);
    }
    50% {
        clip-path: polygon(0 50%, 15% 52%, 34% 54%, 51% 56%, 67% 58%, 84% 60%, 100% 62%, 100% 100%, 0 100%);
    }
    75% {
        clip-path: polygon(0 40%, 15% 38%, 34% 42%, 51% 44%, 67% 48%, 84% 50%, 100% 45%, 100% 100%, 0 100%);
    }
}

@keyframes floatingElements {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(0px) translateX(20px) rotate(180deg);
    }
    75% {
        transform: translateY(-10px) translateX(5px) rotate(270deg);
    }
}

/* Enhanced Loading Screen with Advanced Animations */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-animation {
    text-align: center;
    position: relative;
}

.neural-network {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    animation: nodePulse 2s ease-in-out infinite;
}

.node-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node-2 {
    bottom: 20px;
    left: 20px;
    animation-delay: 0.5s;
}

.node-3 {
    bottom: 20px;
    right: 20px;
    animation-delay: 1s;
}

.node-4 {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    animation: connectionPulse 3s ease-in-out infinite;
}

.con-1 {
    top: 35px;
    left: 50%;
    width: 80px;
    transform: translateX(-50%) rotate(35deg);
    animation-delay: 0.2s;
}

.con-2 {
    bottom: 35px;
    left: 35px;
    width: 120px;
    transform: rotate(-35deg);
    animation-delay: 0.7s;
}

.con-3 {
    top: 50%;
    right: 35px;
    width: 90px;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 1.2s;
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.loading-text {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.loading-letter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    animation: letterFloat 2s ease-in-out infinite;
    margin: 0 2px;
}

.loading-letter:nth-child(1) { animation-delay: 0s; }
.loading-letter:nth-child(2) { animation-delay: 0.1s; }
.loading-letter:nth-child(3) { animation-delay: 0.2s; }
.loading-letter:nth-child(4) { animation-delay: 0.3s; }
.loading-letter:nth-child(5) { animation-delay: 0.4s; }
.loading-letter:nth-child(6) { animation-delay: 0.5s; }

@keyframes letterFloat {
    0%, 100% {
        transform: translateY(0px);
        color: var(--primary-color);
    }
    50% {
        transform: translateY(-15px);
        color: var(--accent-color);
    }
}

.loading-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: taglinePulse 3s ease-in-out infinite;
}

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

/* Enhanced Holographic Visual for Hero */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hologram-container {
    position: relative;
    width: 400px;
    height: 400px;
    perspective: 1000px;
}

.hologram-base {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.hologram-projection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(22, 155, 147, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: hologramSpin 20s linear infinite;
}

@keyframes hologramSpin {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
        box-shadow: 0 0 50px rgba(22, 155, 147, 0.3);
    }
    25% {
        transform: rotateY(90deg) rotateX(10deg);
        box-shadow: 0 0 80px rgba(79, 181, 173, 0.4);
    }
    50% {
        transform: rotateY(180deg) rotateX(0deg);
        box-shadow: 0 0 50px rgba(54, 56, 77, 0.3);
    }
    75% {
        transform: rotateY(270deg) rotateX(-10deg);
        box-shadow: 0 0 80px rgba(79, 181, 173, 0.4);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg);
        box-shadow: 0 0 50px rgba(22, 155, 147, 0.3);
    }
}

.ai-brain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    animation: coreFloat 4s ease-in-out infinite;
}

@keyframes coreFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px rgba(22, 155, 147, 0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 40px rgba(22, 155, 147, 0.8);
    }
}

.neural-paths {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.path {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    animation: pathPulse 3s ease-in-out infinite;
}

.path-1 {
    width: 60px;
    height: 2px;
    top: 30%;
    left: 10%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.path-2 {
    width: 80px;
    height: 2px;
    bottom: 30%;
    right: 10%;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.path-3 {
    width: 50px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: rotate(90deg);
    animation-delay: 1s;
}

.path-4 {
    width: 70px;
    height: 2px;
    top: 50%;
    right: 0;
    transform: rotate(-90deg);
    animation-delay: 1.5s;
}

@keyframes pathPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.data-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: dataFloat 2s ease-in-out infinite;
}

.point-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.point-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.point-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.point-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes dataFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) scale(1.3);
        opacity: 1;
    }
}

.hologram-rings {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(22, 155, 147, 0.3);
    border-radius: 50%;
    animation: ringExpand 4s ease-in-out infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.ring-2 {
    width: 250px;
    height: 250px;
    animation-delay: 1s;
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation-delay: 2s;
}

@keyframes ringExpand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* Enhanced Floating Cards */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: floatingElements 8s ease-in-out infinite;
    min-width: 120px;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 30%;
    right: -10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 30%;
    left: -10%;
    animation-delay: 4s;
}

.card-4 {
    bottom: 10%;
    right: -10%;
    animation-delay: 6s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.floating-card span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: center;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(22, 155, 147, 0.2) 0%, transparent 70%);
    border-radius: 16px;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-wheel {
    width: 6px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelMove 2s ease-in-out infinite;
}

@keyframes wheelMove {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0.5;
    }
}

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

.scroll-indicator span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
} 

/* Interactive 3D Elements and Micro-interactions */

/* 3D Tilt Effect for Cards */
.card-3d-tilt {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.card-3d-tilt:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) translateZ(20px);
}

/* Interactive Magnetic Buttons */
.btn-magnetic {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.btn-magnetic:hover::before {
    opacity: 1;
    transform: scale(1);
}

.btn-magnetic:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(22, 155, 147, 0.4);
}

/* Ripple Effect for Buttons */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

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

.btn-ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Interactive Parallax Cards */
.parallax-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.parallax-card:hover {
    transform: translateZ(30px);
}

.parallax-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(22, 155, 147, 0.1), transparent);
    animation: parallaxRotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes parallaxRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}











/* Enhanced Form Interactions */
.form-group-interactive {
    position: relative;
    margin-bottom: 30px;
}

.form-group-interactive input,
.form-group-interactive textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group-interactive input:focus,
.form-group-interactive textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(22, 155, 147, 0.2);
    transform: translateY(-2px);
}

.form-group-interactive label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group-interactive input:focus + label,
.form-group-interactive textarea:focus + label,
.form-group-interactive input:not(:placeholder-shown) + label,
.form-group-interactive textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    color: var(--primary-color);
    background: rgba(15, 23, 42, 0.9);
    padding: 0 8px;
    border-radius: 4px;
}

.form-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.form-group-interactive:hover .form-glow,
.form-group-interactive input:focus ~ .form-glow,
.form-group-interactive textarea:focus ~ .form-glow {
    opacity: 0.2;
    transform: scale(1.02);
}

/* Interactive Icon Animations */
.icon-interactive {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.icon-interactive:hover {
    transform: scale(1.2) rotate(10deg);
}

.icon-interactive::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(22, 155, 147, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.icon-interactive:hover::before {
    width: 200%;
    height: 200%;
}

/* Interactive Navigation Dots */
.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-dot:hover::before,
.nav-dot.active::before {
    width: 100%;
    height: 100%;
}

.nav-dot:hover {
    transform: scale(1.5);
}

/* Interactive Progress Bars */
.progress-interactive {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    transition: width 0.8s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Interactive Social Links */
.social-interactive {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-interactive::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-interactive:hover::before {
    width: 200%;
    height: 200%;
}

.social-interactive:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(22, 155, 147, 0.3);
}

.social-interactive i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-interactive:hover i {
    transform: scale(1.2);
}

/* Interactive Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease;
}

/* Interactive Tooltip */
.tooltip-interactive {
    position: relative;
    cursor: pointer;
}

.tooltip-interactive::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-interactive::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-interactive:hover::after,
.tooltip-interactive:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Interactive Back to Top Button */
.back-to-top-interactive {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(100px);
    opacity: 0;
    z-index: 1000;
}

.back-to-top-interactive.show {
    transform: translateY(0);
    opacity: 1;
}

.back-to-top-interactive:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 40px rgba(22, 155, 147, 0.4);
}

.back-to-top-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.back-to-top-interactive:hover::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

/* Enhanced Typography System */

/* Variable Font Support */
@supports (font-variation-settings: normal) {
    .text-variable {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-variation-settings: 'wght' 400, 'slnt' 0;
        transition: font-variation-settings 0.3s ease;
    }
    
    .text-variable.bold {
        font-variation-settings: 'wght' 700, 'slnt' 0;
    }
    
    .text-variable.italic {
        font-variation-settings: 'wght' 400, 'slnt' -15;
    }
    
    .text-variable.bold-italic {
        font-variation-settings: 'wght' 700, 'slnt' -15;
    }
}

/* Enhanced Typography Hierarchy */
.heading-primary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientText 6s ease-in-out infinite;
    position: relative;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.heading-secondary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: white;
    position: relative;
    margin-bottom: 2rem;
}

.heading-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textFill 2s ease-in-out forwards;
    animation-delay: 0.5s;
}

@keyframes textFill {
    0% { width: 0; }
    100% { width: 100%; }
}

.heading-tertiary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.005em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

/* Advanced Text Effects */
.text-glitch {
    position: relative;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: glitch 2s linear infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.text-glitch::before,
.text-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-glitch::before {
    animation: glitch-1 2s linear infinite;
    color: var(--primary-color);
    z-index: -1;
}

.text-glitch::after {
    animation: glitch-2 2s linear infinite;
    color: var(--accent-color);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(-2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

/* 3D Text Effect */
.text-3d {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 
        0 1px 0 #169b93,
        0 2px 0 #169b93,
        0 3px 0 #169b93,
        0 4px 0 #169b93,
        0 5px 0 #169b93,
        0 6px 1px rgba(0, 0, 0, 0.1),
        0 0 5px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.3),
        0 3px 5px rgba(0, 0, 0, 0.2),
        0 5px 10px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.2),
        0 20px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.text-3d:hover {
    transform: translateY(-5px);
    text-shadow: 
        0 1px 0 #169b93,
        0 2px 0 #169b93,
        0 3px 0 #169b93,
        0 4px 0 #169b93,
        0 5px 0 #169b93,
        0 6px 0 #169b93,
        0 7px 0 #169b93,
        0 8px 1px rgba(0, 0, 0, 0.1),
        0 0 5px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.3),
        0 3px 5px rgba(0, 0, 0, 0.2),
        0 5px 10px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.2),
        0 20px 20px rgba(0, 0, 0, 0.15),
        0 40px 40px rgba(0, 0, 0, 0.1);
}

/* Neon Text Effect */
.text-neon {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    text-shadow: 
        0 0 5px var(--primary-color),
        0 0 10px var(--primary-color),
        0 0 20px var(--primary-color),
        0 0 40px var(--primary-color),
        0 0 80px var(--primary-color);
    animation: neonFlicker 3s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow: 
            0 0 5px var(--primary-color),
            0 0 10px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 40px var(--primary-color),
            0 0 80px var(--primary-color);
    }
    50% {
        text-shadow: 
            0 0 2px var(--primary-color),
            0 0 5px var(--primary-color),
            0 0 10px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 40px var(--primary-color);
    }
}

/* Typewriter Effect */
.text-typewriter {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    border-right: 3px solid var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    animation: 
        typing 3s steps(30, end),
        blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-color); }
}

/* Holographic Text */
.text-holographic {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, 
        var(--primary-color) 0%, 
        var(--accent-color) 25%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 75%, 
        var(--primary-color) 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographicShift 4s ease-in-out infinite;
    position: relative;
}

@keyframes holographicShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 50% 0%; }
}

.text-holographic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(2px);
    opacity: 0.5;
    z-index: -1;
}

/* Liquid Text Effect */
.text-liquid {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.text-liquid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-color) 50%, 
        transparent 100%);
    transform: translateX(-100%);
    animation: liquidFlow 3s ease-in-out infinite;
}

@keyframes liquidFlow {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Enhanced Paragraph Typography */
.paragraph-enhanced {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.paragraph-enhanced::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transform: scaleY(0);
    transform-origin: top;
    animation: paragraphReveal 1s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes paragraphReveal {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

/* Quote Styling */
.quote-modern {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--primary-color);
    position: relative;
    padding: 2rem;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-modern::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.quote-modern::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1px;
}

/* Interactive Typography */
.text-interactive {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.text-interactive:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.text-interactive::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.text-interactive:hover::after {
    width: 100%;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .heading-primary {
        font-size: clamp(2rem, 8vw, 4rem);
    }
    
    .heading-secondary {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .heading-tertiary {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }
    
    .text-3d {
        font-size: 2rem;
    }
    
    .text-neon {
        font-size: 1.5rem;
    }
    
    .text-typewriter {
        font-size: 1.2rem;
    }
    
    .text-holographic {
        font-size: 2rem;
    }
    
    .text-liquid {
        font-size: 2rem;
    }
    
    .paragraph-enhanced {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        padding-left: 1.5rem;
    }
    
    .quote-modern {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
}

/* Text Selection Styling */
::selection {
    background: rgba(22, 155, 147, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(22, 155, 147, 0.3);
    color: white;
}

/* Font Loading Optimization */
.font-loading {
    font-display: swap;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.text-decoration-none { text-decoration: none; }
.text-decoration-underline { text-decoration: underline; }

.font-thin { font-weight: 100; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Cutting-Edge Visual Effects */

/* Advanced Gradient Meshes */
.gradient-mesh-1 {
    background: 
        radial-gradient(circle at 10% 20%, rgba(22, 155, 147, 0.3) 0%, transparent 50.2%),
        radial-gradient(circle at 80% 80%, rgba(54, 56, 77, 0.3) 0%, transparent 50.2%),
        radial-gradient(circle at 0% 50%, rgba(79, 181, 173, 0.3) 0%, transparent 50.2%),
        radial-gradient(circle at 100% 50%, rgba(44, 46, 63, 0.3) 0%, transparent 50.2%),
        radial-gradient(circle at 50% 100%, rgba(22, 155, 147, 0.3) 0%, transparent 50.2%),
        radial-gradient(circle at 50% 0%, rgba(54, 56, 77, 0.3) 0%, transparent 50.2%);
    animation: gradientMeshFlow 20s ease-in-out infinite;
}

@keyframes gradientMeshFlow {
    0%, 100% { filter: hue-rotate(0deg) brightness(1); }
    25% { filter: hue-rotate(90deg) brightness(1.1); }
    50% { filter: hue-rotate(180deg) brightness(0.9); }
    75% { filter: hue-rotate(270deg) brightness(1.1); }
}

.gradient-mesh-2 {
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(22, 155, 147, 0.1) 0deg, 
            rgba(54, 56, 77, 0.1) 72deg, 
            rgba(79, 181, 173, 0.1) 144deg, 
            rgba(44, 46, 63, 0.1) 216deg, 
            rgba(22, 155, 147, 0.1) 288deg, 
            rgba(22, 155, 147, 0.1) 360deg);
    animation: conicRotate 30s linear infinite;
}

@keyframes conicRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Advanced Shadows and Glow Effects */
.shadow-neon {
    box-shadow: 
        0 0 5px rgba(22, 155, 147, 0.5),
        0 0 20px rgba(22, 155, 147, 0.3),
        0 0 40px rgba(22, 155, 147, 0.1);
}

.shadow-layered {
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24),
        0 4px 8px rgba(22, 155, 147, 0.1),
        0 8px 16px rgba(22, 155, 147, 0.05);
}

.shadow-morphing {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.shadow-morphing:hover {
    box-shadow: 
        0 20px 40px rgba(22, 155, 147, 0.3),
        0 0 80px rgba(22, 155, 147, 0.1);
}

/* Advanced Border Effects */
.border-animated {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.border-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    border-radius: inherit;
    animation: borderRotate 4s linear infinite;
    z-index: -1;
}

.border-animated::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Morphing Shapes */
.shape-morph {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphShape 8s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
        transform: rotate(90deg);
    }
    50% {
        border-radius: 30% 70% 60% 40% / 70% 40% 60% 30%;
        transform: rotate(180deg);
    }
    75% {
        border-radius: 70% 30% 40% 60% / 30% 60% 40% 70%;
        transform: rotate(270deg);
    }
}

/* Advanced Clip Paths */
.clip-path-dynamic {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path 0.5s ease;
}

.clip-path-dynamic:hover {
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}

.clip-path-wave {
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
    animation: waveClip 4s ease-in-out infinite;
}

@keyframes waveClip {
    0%, 100% { clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%); }
    50% { clip-path: polygon(0 0, 100% 20%, 100% 80%, 0 100%); }
}

/* Advanced Backdrop Effects */
.backdrop-advanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%) contrast(120%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.backdrop-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(22, 155, 147, 0.1), rgba(54, 56, 77, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.backdrop-advanced:hover::before {
    opacity: 1;
}

/* Particle Systems */
.particle-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Advanced Filter Effects */
.filter-advanced {
    filter: blur(0px) brightness(100%) contrast(100%) saturate(100%);
    transition: filter 0.3s ease;
}

.filter-advanced:hover {
    filter: blur(0px) brightness(110%) contrast(120%) saturate(120%);
}

.filter-glitch {
    filter: hue-rotate(0deg);
    animation: filterGlitch 2s ease-in-out infinite;
}

@keyframes filterGlitch {
    0%, 100% { filter: hue-rotate(0deg); }
    25% { filter: hue-rotate(90deg); }
    50% { filter: hue-rotate(180deg); }
    75% { filter: hue-rotate(270deg); }
}

/* Advanced Mask Effects */
.mask-gradient {
    mask: linear-gradient(45deg, transparent 0%, black 25%, black 75%, transparent 100%);
    -webkit-mask: linear-gradient(45deg, transparent 0%, black 25%, black 75%, transparent 100%);
}

.mask-dynamic {
    mask: radial-gradient(circle at 50% 50%, black 0%, transparent 50%);
    -webkit-mask: radial-gradient(circle at 50% 50%, black 0%, transparent 50%);
    animation: maskPulse 3s ease-in-out infinite;
}

@keyframes maskPulse {
    0%, 100% { 
        mask: radial-gradient(circle at 50% 50%, black 0%, transparent 50%);
        -webkit-mask: radial-gradient(circle at 50% 50%, black 0%, transparent 50%);
    }
    50% { 
        mask: radial-gradient(circle at 50% 50%, black 0%, transparent 80%);
        -webkit-mask: radial-gradient(circle at 50% 50%, black 0%, transparent 80%);
    }
}

/* Advanced Background Patterns */
.pattern-advanced {
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(22, 155, 147, 0.1),
            rgba(22, 155, 147, 0.1) 2px,
            transparent 2px,
            transparent 10px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(54, 56, 77, 0.1),
            rgba(54, 56, 77, 0.1) 2px,
            transparent 2px,
            transparent 10px
        );
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 20px 20px, -20px -20px; }
}

/* Advanced Overflow Effects */
.overflow-glow {
    position: relative;
    overflow: hidden;
}

.overflow-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(22, 155, 147, 0.3) 0%, transparent 70%);
    animation: overflowPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes overflowPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* Advanced Transform Effects */
.transform-3d {
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.3s ease;
}

.transform-3d:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(15deg) translateZ(20px);
}

/* Advanced Pseudo-element Effects */
.pseudo-advanced {
    position: relative;
}

.pseudo-advanced::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: conic-gradient(from 0deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    border-radius: inherit;
    z-index: -1;
    animation: pseudoRotate 3s linear infinite;
    filter: blur(5px);
    opacity: 0.7;
}

@keyframes pseudoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Career Page Styles */
.career-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    margin-top: -80px; /* Compensate for body padding */
    padding-top: 6rem;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.career-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.career-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.career-hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.career-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

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

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

.stat-item p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* Why Work With Us Section */
.why-work-with-us {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Company Culture Section */
.company-culture {
    padding: 6rem 0;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.culture-text h2 {
    margin-bottom: 1.5rem;
}

.culture-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.culture-values {
    display: grid;
    gap: 1.5rem;
}

.culture-value h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.culture-value p {
    color: var(--text-secondary);
    margin: 0;
}

.culture-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
}

/* Open Positions Section */
.open-positions {
    background: transparent;
    padding: 3rem 0 2rem 0;
}

.positions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    background: rgba(30, 41, 59, 0.85);
    border-radius: 1.2rem;
    box-shadow: 0 6px 32px 0 rgba(22, 155, 147, 0.10), 0 1.5px 8px 0 rgba(0,0,0,0.10);
    border: 1.5px solid rgba(22, 155, 147, 0.10);
    padding: 2.5rem 1.5rem;
    min-width: 320px;
    max-width: 540px;
    margin: 0 auto;
}

.no-positions {
    width: 100%;
    background: rgba(30, 41, 59, 0.92);
    border-radius: 1.1rem;
    box-shadow: 0 4px 20px 0 rgba(22, 155, 147, 0.10);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.no-positions-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #179b93 0%, #1e90ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    opacity: 0.18;
    filter: drop-shadow(0 0 8px #179b9340);
}

.open-positions .section-title, .open-positions h2, .open-positions h1 {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.open-positions .section-title::after, .open-positions h2::after, .open-positions h1::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #179b93 0%, #1e90ff 100%);
}

@media (max-width: 600px) {
  .positions-grid {
    padding: 1.2rem 0.5rem;
    min-width: unset;
    max-width: 100%;
  }
  .no-positions {
    padding: 1.2rem 0.5rem;
    min-height: 120px;
  }
}

/* Application Process Section - THEME UPDATE */
.application-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.85); /* yarı saydam koyu */
    border-radius: 1.2rem;
    box-shadow: 0 6px 32px 0 rgba(22, 155, 147, 0.10), 0 1.5px 8px 0 rgba(0,0,0,0.10);
    border: 1.5px solid rgba(22, 155, 147, 0.10);
    position: relative;
    min-width: 220px;
    max-width: 260px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.process-step:hover {
    box-shadow: 0 8px 40px 0 rgba(22, 155, 147, 0.18), 0 2px 12px 0 rgba(0,0,0,0.16);
    transform: translateY(-4px) scale(1.03);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #179b93 0%, #1e90ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0 auto 1.2rem;
    box-shadow: 0 0 0 4px rgba(22,155,147,0.10), 0 2px 8px 0 rgba(30,41,59,0.10);
    filter: drop-shadow(0 0 8px #179b9340);
}

/* Başlık altı çizgi */
.application-process .section-title, .application-process h2, .application-process h1 {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.application-process .section-title::after, .application-process h2::after, .application-process h1::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #179b93 0%, #1e90ff 100%);
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
  }
  .process-step {
    padding: 1.2rem;
    min-width: 160px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .process-step {
    min-width: 0;
    width: 100%;
    max-width: 340px;
  }
}

/* Application Form Section */
.application-form {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.career-form {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(22, 155, 147, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.125rem;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Career Contact Section */
.career-contact {
    padding: 6rem 0;
}

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

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    text-align: left;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    margin: 0;
    color: var(--text-secondary);
}

/* Responsive Design for Career Page */
@media (max-width: 768px) {
    .career-hero-title {
        font-size: 2.5rem;
    }
    
    .career-hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .culture-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .career-form {
        padding: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* --- BEGIN: Force light text for main dark sections --- */
.about, .about *,
.blog, .blog *,
.contact, .contact *,
.career-hero, .career-hero *,
.why-work-with-us, .why-work-with-us *,
.company-culture, .company-culture *,
.open-positions, .open-positions *,
.application-process, .application-process * {
  color: #fff !important;
  --text-primary: #fff;
  --text-secondary: rgba(255,255,255,0.85);
}

.about p, .blog p, .contact p, .career-hero p, .why-work-with-us p, .company-culture p, .open-positions p, .application-process p,
.about li, .blog li, .contact li, .career-hero li, .why-work-with-us li, .company-culture li, .open-positions li, .application-process li {
  color: rgba(255,255,255,0.85) !important;
}

.about h1, .about h2, .about h3, .about h4, .about h5, .about h6,
.blog h1, .blog h2, .blog h3, .blog h4, .blog h5, .blog h6,
.contact h1, .contact h2, .contact h3, .contact h4, .contact h5, .contact h6,
.career-hero h1, .career-hero h2, .career-hero h3, .career-hero h4, .career-hero h5, .career-hero h6,
.why-work-with-us h1, .why-work-with-us h2, .why-work-with-us h3, .why-work-with-us h4, .why-work-with-us h5, .why-work-with-us h6,
.company-culture h1, .company-culture h2, .company-culture h3, .company-culture h4, .company-culture h5, .company-culture h6,
.open-positions h1, .open-positions h2, .open-positions h3, .open-positions h4, .open-positions h5, .open-positions h6,
.application-process h1, .application-process h2, .application-process h3, .application-process h4, .application-process h5, .application-process h6 {
  color: #fff !important;
}

/* Form labels in dark sections */
.about label, .blog label, .contact label, .career-hero label, .why-work-with-us label, .company-culture label, .open-positions label, .application-process label {
  color: #fff !important;
}
/* --- END: Force light text for main dark sections --- */

/* --- BEGIN: Blog post pages styling --- */
.blog-post,
.blog-post *,
.blog-post-content,
.blog-post-content * {
  color: #fff !important;
  --text-primary: #fff;
  --text-secondary: rgba(255,255,255,0.85);
}

.blog-post h1, .blog-post h2, .blog-post h3, .blog-post h4, .blog-post h5, .blog-post h6,
.blog-post-content h1, .blog-post-content h2, .blog-post-content h3, .blog-post-content h4, .blog-post-content h5, .blog-post-content h6 {
  color: #fff !important;
}

.blog-post p, .blog-post-content p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.blog-post ul, .blog-post ol, .blog-post-content ul, .blog-post-content ol {
  color: rgba(255, 255, 255, 0.9) !important;
}

.blog-post li, .blog-post-content li {
  color: rgba(255, 255, 255, 0.9) !important;
}

.blog-post strong, .blog-post b, .blog-post-content strong, .blog-post-content b {
  color: #fff !important;
}

.blog-post code, .blog-post-content code {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.blog-post pre, .blog-post-content pre {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.blog-post blockquote, .blog-post-content blockquote {
  background: rgba(255, 255, 255, 0.05) !important;
  border-left: 4px solid var(--primary-color) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.blog-post-header, .blog-post-content .blog-post-header {
  color: #fff !important;
}

.blog-post-title, .blog-post-content .blog-post-title {
  color: #fff !important;
}

.blog-post-excerpt, .blog-post-content .blog-post-excerpt {
  color: rgba(255, 255, 255, 0.9) !important;
}

.blog-post-meta, .blog-post-content .blog-post-meta {
  color: rgba(255, 255, 255, 0.8) !important;
}

.blog-post-category, .blog-post-content .blog-post-category {
  background: var(--primary-color) !important;
  color: white !important;
}

.blog-post-date, .blog-post-content .blog-post-date,
.blog-post-read-time, .blog-post-content .blog-post-read-time {
  color: rgba(255, 255, 255, 0.8) !important;
}

.blog-post-author, .blog-post-content .blog-post-author {
  color: rgba(255, 255, 255, 0.9) !important;
}

.author-name, .blog-post-content .author-name {
  color: #fff !important;
}

.author-title, .blog-post-content .author-title {
  color: rgba(255, 255, 255, 0.8) !important;
}

.blog-post-body, .blog-post-content .blog-post-body {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Breadcrumb styling */
.breadcrumb, .blog-post .breadcrumb, .blog-post-content .breadcrumb {
  color: rgba(255, 255, 255, 0.8) !important;
}

.breadcrumb a, .blog-post .breadcrumb a, .blog-post-content .breadcrumb a {
  color: var(--primary-color) !important;
}

.breadcrumb i, .blog-post .breadcrumb i, .blog-post-content .breadcrumb i {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Post tags */
.post-tag, .blog-post .post-tag, .blog-post-content .post-tag {
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Related posts section */
.related-posts, .blog-post .related-posts, .blog-post-content .related-posts {
  color: #fff !important;
}

.related-posts h3, .blog-post .related-posts h3, .blog-post-content .related-posts h3 {
  color: #fff !important;
}

.related-post, .blog-post .related-post, .blog-post-content .related-post {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.related-content h4, .blog-post .related-content h4, .blog-post-content .related-content h4 {
  color: #fff !important;
}

.related-link, .blog-post .related-link, .blog-post-content .related-link {
  color: var(--primary-color) !important;
}

/* Post author section */
.post-author, .blog-post .post-author, .blog-post-content .post-author {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.post-author h3, .blog-post .post-author h3, .blog-post-content .post-author h3 {
  color: #fff !important;
}

.post-author p, .blog-post .post-author p, .blog-post-content .post-author p {
  color: rgba(255, 255, 255, 0.8) !important;
}
/* --- END: Blog post pages styling --- */

/* --- BEGIN: Contact section dark theme & glassmorphism fix --- */
.contact-details, .contact-item {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 1.5rem;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icon {
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 2px 8px 0 rgba(16, 30, 54, 0.18);
}
.contact-content h4, .contact-content p {
  color: #fff !important;
}
.contact-form-container {
  background: rgba(255,255,255,0.08) !important;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px 0 rgba(16, 30, 54, 0.12);
  border: 1px solid rgba(255,255,255,0.13);
  color: #fff !important;
}
.form-group label {
  color: #fff !important;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(30,41,59,0.7) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.18) !important;
  box-shadow: none !important;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.7) !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color) !important;
  background: rgba(30,41,59,0.95) !important;
  color: #fff !important;
}
/* --- END: Contact section dark theme & glassmorphism fix --- */

/* --- BEGIN: About page dark text fix --- */
.about-hero, .about-hero *,
.our-story, .our-story *,
.mission-vision, .mission-vision *,
.core-values, .core-values *,
.value-card, .value-card *,
.story-content, .story-content *,
.story-text, .story-text *,
.mission-card, .vision-card, .mission-card *, .vision-card *,
.card-title, .card-title *,
.card-description, .card-description *,
.value-title, .value-title *,
.value-description, .value-description * {
  color: #fff !important;
}

/* Override .black-text in about sections */
.about-hero .black-text,
.our-story .black-text,
.mission-vision .black-text,
.core-values .black-text {
  color: #fff !important;
}

/* Paragraphs and list items in about sections */
.about-hero p, .our-story p, .mission-vision p, .core-values p,
.about-hero li, .our-story li, .mission-vision li, .core-values li {
  color: rgba(255,255,255,0.88) !important;
}
/* --- END: About page dark text fix --- */

/* --- BEGIN: Homepage About section theme color fix --- */
.about .section-title {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 800;
}
.about .section-description,
.about .about-description,
.about .highlight-content p {
  color: rgba(255,255,255,0.88) !important;
}
.about .highlight-content h4 {
  color: var(--primary-color) !important;
}
/* --- END: Homepage About section theme color fix --- */

/* --- BEGIN: Blog.html theme and readability fix --- */
.blog,
.blog-posts {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
  position: relative;
  overflow: hidden;
}
.blog-header-title {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 800;
}
.blog-header-title .black-text {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-fill-color: #fff !important;
  background: none !important;
}
.blog-header-description {
  color: rgba(255,255,255,0.88) !important;
}
.blog-card {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  box-shadow: 0 4px 32px 0 rgba(16, 30, 54, 0.12);
}
.blog-title, .blog-card .blog-title {
  color: #fff !important;
}
.blog-excerpt, .blog-card .blog-excerpt {
  color: rgba(255,255,255,0.88) !important;
}
.blog-meta, .blog-card .blog-meta {
  color: rgba(255,255,255,0.7) !important;
}
.blog-tag, .blog-card .blog-tag {
  color: rgba(255,255,255,0.85) !important;
  background: rgba(22,155,147,0.18) !important;
}
.blog-link, .blog-card .blog-link {
  color: var(--primary-color) !important;
}
.filter-group label, .filter-select {
  color: #fff !important;
}
.filter-select {
  background: rgba(30,41,59,0.7) !important;
  border: 1.5px solid rgba(255,255,255,0.18) !important;
}
.filter-select:focus {
  border-color: var(--primary-color) !important;
  background: rgba(30,41,59,0.95) !important;
}
/* --- END: Blog.html theme and readability fix --- */

.contact-item {
  background: rgba(255,255,255,0.07) !important;
  border-radius: 1.5rem !important;
  box-shadow: 0 4px 32px 0 rgba(16, 30, 54, 0.12) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  padding: 1.5rem 2rem 1.5rem 1.5rem !important;
  margin-bottom: 1.5rem;
  color: #fff !important;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.contact-icon {
  margin-right: 0.5rem;
}
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: #fff;
}
.contact-content p {
  font-size: 1rem;
  color: #fff;
  margin: 0;
  line-height: 1.6;
  white-space: pre-line;
}
@media (max-width: 600px) {
  .contact-item {
    grid-template-columns: 1fr;
    padding: 1rem !important;
    gap: 1rem;
  }
  .contact-content {
    align-items: flex-start;
  }
}

/* Career Application Form - THEME UPDATE */
.career-form {
    background: rgba(30, 41, 59, 0.92);
    padding: 2.5rem 2rem;
    border-radius: 1.3rem;
    box-shadow: 0 8px 40px 0 rgba(22, 155, 147, 0.13), 0 2px 12px 0 rgba(0,0,0,0.18);
    border: 1.5px solid rgba(22, 155, 147, 0.13);
    max-width: 540px;
    margin: 3rem auto 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-height: 700px) and (min-width: 900px) {
  .career-form {
    min-height: 60vh;
  }
}

@media (max-width: 600px) {
  .career-form {
    padding: 1.2rem 0.5rem;
    border-radius: 0.8rem;
    margin: 1.2rem auto 1.2rem auto;
    min-height: unset;
  }
}

.form-group label {
    color: #e5e7eb;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(15, 23, 42, 0.85);
    color: #f1f5f9;
    border: 1.5px solid rgba(22, 155, 147, 0.18);
    border-radius: 0.7rem;
    font-size: 1rem;
    padding: 0.85rem 1rem;
    margin-bottom: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1.5px 8px 0 rgba(0,0,0,0.08);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #179b93;
    box-shadow: 0 0 0 3px rgba(22, 155, 147, 0.13);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b6c2d1;
    opacity: 1;
}

.career-form input[type="file"] {
    background: transparent;
    color: #e5e7eb;
    border: none;
    padding: 0;
    margin-bottom: 0.5rem;
}

.career-form small {
    color: #b6c2d1;
}

.career-form .btn-large {
    background: linear-gradient(90deg, #179b93 0%, #1e90ff 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 0.8rem;
    box-shadow: 0 2px 12px 0 rgba(22, 155, 147, 0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    margin-top: 1.2rem;
}
.career-form .btn-large:hover {
    background: linear-gradient(90deg, #1e90ff 0%, #179b93 100%);
    box-shadow: 0 4px 24px 0 rgba(22, 155, 147, 0.18);
    transform: translateY(-2px) scale(1.03);
}

.career-form .checkbox-label {
    color: #b6c2d1;
}

.career-form .checkbox-label a {
    color: #1e90ff;
}

@media (max-width: 600px) {
  .career-form {
    padding: 1.2rem 0.5rem;
    border-radius: 0.8rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.97rem;
    padding: 0.7rem 0.7rem;
    border-radius: 0.5rem;
  }
  .career-form .btn-large {
    border-radius: 0.6rem;
    font-size: 0.97rem;
  }
}

/* Blog Pagination & Newsletter - THEME UPDATE */
.pagination-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 41, 59, 0.85);
    border-radius: 1.2rem;
    box-shadow: 0 4px 20px 0 rgba(22, 155, 147, 0.10);
    padding: 0.7rem 1.5rem;
    margin: 2rem auto 1.5rem auto;
    max-width: 520px;
}
.pagination-btn, .pagination-number {
    background: rgba(15, 23, 42, 0.92);
    color: #f1f5f9;
    border: none;
    border-radius: 0.7rem;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    margin: 0 0.1rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1.5px 8px 0 rgba(0,0,0,0.08);
    cursor: pointer;
}
.pagination-btn[disabled], .pagination-number[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
.pagination-number.active, .pagination-btn.active {
    background: linear-gradient(90deg, #179b93 0%, #1e90ff 100%);
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(22, 155, 147, 0.13);
}

.newsletter {
    background: linear-gradient(135deg, #232e3e 0%, #2c3a4d 100%);
    border-radius: 2rem;
    box-shadow: 0 12px 48px 0 rgba(22, 155, 147, 0.15), 0 4px 24px 0 rgba(0,0,0,0.22);
    padding: 3rem 1.5rem 2.5rem 1.5rem;
    margin: 2rem auto 0 auto;
    max-width: 900px;
    text-align: center;
}
.newsletter-title {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.newsletter-title .gradient-text {
    background: linear-gradient(90deg, #179b93 0%, #1e90ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.newsletter-description {
    color: #cbd5e1;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}
.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
}
.newsletter-input-group input {
    background: rgba(15, 23, 42, 0.85);
    color: #f1f5f9;
    border: 1.5px solid rgba(22, 155, 147, 0.18);
    border-radius: 0.7rem;
    font-size: 1rem;
    padding: 0.85rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1.5px 8px 0 rgba(0,0,0,0.08);
}
.newsletter-input-group input:focus {
    border-color: #179b93;
    box-shadow: 0 0 0 3px rgba(22, 155, 147, 0.13);
    outline: none;
}
.newsletter-form .btn {
    background: linear-gradient(90deg, #179b93 0%, #1e90ff 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 0.8rem;
    box-shadow: 0 2px 12px 0 rgba(22, 155, 147, 0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    padding: 0.85rem 2rem;
}
.newsletter-form .btn:hover {
    background: linear-gradient(90deg, #1e90ff 0%, #179b93 100%);
    box-shadow: 0 4px 24px 0 rgba(22, 155, 147, 0.18);
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 700px) {
  .newsletter {
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    border-radius: 1.2rem;
  }
  .newsletter-title {
    font-size: 1.3rem;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 0.7rem;
  }
  .newsletter-form .btn {
    width: 100%;
    padding: 0.85rem 0;
  }
  .pagination-numbers {
    padding: 0.5rem 0.5rem;
    border-radius: 0.7rem;
  }
}