/* Font Imports */
/* Note: All fonts (Inter, JetBrains Mono, and Raleway) are loaded in HTML head */

/* Font loading optimization to prevent FOUT (Flash of Unstyled Text) */
.fonts-loaded {
    /* Add any font-specific optimizations once fonts are confirmed loaded */
    opacity: 1;
    transition: opacity 0.2s ease-in;
}

/* Using Raleway Extra Light (200) as a replacement for Allilato Extra Light */
:root {
    --font-allilato: 'Raleway', sans-serif;
}

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

:root {
    /* Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #f59e0b;
    --accent-color: #06d6a0;
    --background-color: #0f0f23;
    --surface-color: #1a1a3a;
    --card-color: #252550;
    --text-primary: #ffffff;
    --text-secondary: #a0a0c7;
    --text-accent: #c7d2fe;
    --border-color: #3c3c5a;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #06d6a0 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
    --font-allilato: var(--font-allilato), 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgb(99 102 241 / 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-medium: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Dark theme variables (default) */
body {
    --bg-primary: var(--background-color);
    --bg-secondary: var(--surface-color);
    --bg-tertiary: var(--card-color);
    --text-primary: #ffffff;
    --text-secondary: var(--text-secondary);
    --border: var(--border-color);
}

/* Light theme */
html.light-theme body,
body.light-theme {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border: #e2e8f0;
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --card-color: #ffffff;
    --shadow-glow: 0 0 20px rgb(99 102 241 / 0.1);
}

/* Loading Screen Styles */

/* Disable all animations and transitions for performance */
.no-animations *, 
.no-animations *::before, 
.no-animations *::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Use vh instead of 100% for better mobile support */
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out;
    /* Consolidated background */
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 100%);
    /* Prevent scrolling issues */
    overflow: hidden;
}

.loading-content {
    text-align: center;
    max-width: 400px;
    width: 90%;
    padding: 2rem;
    animation: pulse 2s infinite;
    /* Ensure content stays centered */
    position: relative;
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.03);
        opacity: 0.95;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

.loading-logo {
    margin-bottom: 3rem;
}

.loading-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    /* Prevent layout shifts */
    min-height: 60px;
}

.loading-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
    /* Prevent image loading issues */
    object-fit: contain;
    /* Smooth transitions for any dynamic effects */
    transition: filter 1.5s ease-in-out;
}

.loading-brand-text {
    color: #06d6a0;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-left: 5px;
    filter: drop-shadow(0 0 8px rgba(6, 214, 160, 0.5));
    white-space: nowrap;
    /* Prevent text selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.loading-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    /* Subtle border for better definition */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #06d6a0);
    border-radius: 50px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.7);
    /* Add shimmer effect */
    position: relative;
    overflow: hidden;
}

/* Optional shimmer effect for progress bar */
.progress-bar::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 infinite;
}

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

.loading-text {
    color: #a0a0c7;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(160, 160, 199, 0.5);
    transition: opacity 0.3s ease;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    /* Prevent text selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    /* Ensure text stays readable */
    line-height: 1.4;
}

/* Mobile Responsive for Loading Screen */
@media (max-width: 768px) {
    .loading-brand {
        flex-direction: column;
        /* Adjust height for stacked layout */
        min-height: 80px;
    }
    
    .loading-brand-text {
        font-size: 2rem;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .loading-content {
        width: 95%; /* Slightly wider on tablets */
    }
}

@media (max-width: 480px) {
    .loading-content {
        padding: 1.5rem 1rem; /* Adjusted padding */
        width: 95%;
    }
    
    .loading-logo-img {
        height: 40px;
    }
    
    .loading-brand-text {
        font-size: 1.75rem;
        letter-spacing: 0.5px; /* Reduced letter spacing for smaller screens */
    }
    
    .loading-text {
        font-size: 0.9rem;
        padding: 0 0.5rem; /* Reduced padding */
        line-height: 1.5;
    }
    
    .loading-progress {
        height: 5px; /* Slightly thinner on mobile */
        margin-bottom: 1.25rem;
    }
    
    .loading-logo {
        margin-bottom: 2.5rem; /* Reduced spacing */
    }
}

/* Extra small screens */
@media (max-width: 320px) {
    .loading-brand-text {
        font-size: 1.5rem;
    }
    
    .loading-text {
        font-size: 0.85rem;
    }
    
    .loading-content {
        padding: 1rem 0.75rem;
    }
}

/* Light theme compatibility for loading screen */
body.light-theme .loading-screen {
    background: rgba(42, 48, 60, 0.95);
    backdrop-filter: blur(10px);
}

body.light-theme .loading-text {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

body.light-theme .loading-brand-text {
    color: #06d6a0;
    filter: drop-shadow(0 0 8px rgba(6, 214, 160, 0.4));
}

body.light-theme .progress-bar {
    background: linear-gradient(90deg, #4f46e5, #059669);
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
}

body.light-theme .loading-progress {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.2);
}

body.light-theme .loading-logo-img {
    filter: drop-shadow(0 0 10px rgba(79, 70, 229, 0.4));
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .loading-text {
        text-shadow: none;
        font-weight: 400;
    }
    
    .loading-brand-text {
        filter: none;
        font-weight: 300;
    }
    
    .loading-logo-img {
        filter: none;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .loading-content {
        animation: none;
    }
    
    .progress-bar::before {
        animation: none;
    }
    
    .loading-logo-img {
        transition: none;
    }
    
    .loading-screen {
        transition: none;
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: all var(--transition-medium);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.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;
}

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

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

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

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

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 100%);
}

.loading-content {
    text-align: center;
    max-width: 400px;
    width: 90%;
    padding: var(--spacing-xl);
    animation: pulse 2s infinite;
}

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

.loading-logo {
    margin-bottom: var(--spacing-2xl);
}

.loading-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.loading-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
}

.loading-brand-text {
    color: var(--accent-color);
    font-family: var(--font-allilato);
    font-weight: 200;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-left: 5px;
    filter: drop-shadow(0 0 8px rgba(6, 214, 160, 0.5));
    white-space: nowrap;
}

.loading-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.7);
}

.loading-text {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(160, 160, 199, 0.5);
    transition: opacity 0.3s ease;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    height: 60px; /* Fixed height for navbar */
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-brand .brand-link {
    display: inline-flex;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.brand-accent {
    color: var(--accent-color);
    font-family: var(--font-allilato);
    font-weight: 200;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.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(--gradient-primary);
    transition: width var(--transition-medium);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.search-btn,
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.search-btn:hover,
.theme-toggle:hover {
    color: var(--primary-color);
    background: var(--surface-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-medium);
}

/* Make hamburger menu more visible in all scenarios */
body.light-theme .hamburger span {
    background: #000000; /* Black color for maximum contrast */
    height: 3.5px; /* Slightly thicker for better visibility */
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8); /* White outline for visibility against dark backgrounds */
}

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

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

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

/* Ensure active hamburger is visible in light mode on dark devices */
body.light-theme .hamburger.active span {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8); /* Maintain white outline */
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 600px;
    width: 100%;
    padding: var(--spacing-xl);
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--surface-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    border: 2px solid var(--border-color);
    transition: border-color var(--transition-fast);
    width: 100%;
    flex-wrap: wrap;
    position: relative;
}

.search-box:focus-within {
    border-color: var(--primary-color);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0; /* Allow the wrapper to shrink if needed */
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    padding: var(--spacing-sm);
    outline: none;
    min-width: 0; /* Allow the input to shrink */
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.search-submit {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.search-submit:hover {
    transform: scale(1.05);
}

.search-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    margin-left: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.search-close:hover {
    color: var(--text-primary);
    background: var(--surface-color);
}

/* Mobile-specific styling to ensure close button stays in search box */
@media (max-width: 767px) {
    .search-box {
        padding: var(--spacing-sm);
    }
    
    .search-input-wrapper {
        width: calc(100% - 50px); /* Leave room for close button */
    }
    
    .search-close {
        margin-left: var(--spacing-xs, 4px);
    }
    
    .search-container {
        padding: var(--spacing-md);
    }
}

.search-results {
    margin-top: var(--spacing-lg);
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--background-color);
    z-index: 1;
    padding-top: 60px; /* Match navbar height for proper spacing */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 214, 160, 0.2) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    top: 10%;
    left: 50%;
    animation-delay: 3s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

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

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    animation: slideInLeft 0.8s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.hero-actions {
    display: flex;
    gap: var(--spacing-lg);
    animation: slideInLeft 0.8s ease-out 1s forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    animation: slideInRight 0.8s ease-out 0.4s forwards;
    z-index: 10;
    opacity: 0;
    transform: translateX(50px);
    margin-top: 20px; /* Added spacing to ensure visibility */
}

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

.visual-card {
    background: var(--surface-color);
    border-radius: var(--radius-xl);
    position: relative;
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    margin-top: 10px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    min-width: 300px;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-top: 5px;
}

.card-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.card-dots span:nth-child(1) { background: #ef4444; }
.card-dots span:nth-child(2) { background: #f59e0b; }
.card-dots span:nth-child(3) { background: #10b981; }

.card-content {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-line {
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 5;
}

.code-keyword { color: #8b5cf6; }
.code-variable { color: #06d6a0; }
.code-operator { color: #f59e0b; }
.code-string { color: #ef4444; }
.code-function { color: #3b82f6; }
.code-bracket { color: var(--text-secondary); }

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7); /* Brighter for better visibility */
    animation: bounce 2s infinite;
}

body.light-theme .scroll-indicator {
    color: rgba(30, 41, 59, 0.6);
}

/* Add text shadow to make it stand out in dark mode */
.scroll-indicator span {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

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

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6); /* Brighter for better visibility */
    border-radius: 12px;
    position: relative;
    display: block; /* Ensure it's always displayed */
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6); /* Brighter for better visibility */
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

/* Ensure visibility in light mode */
body.light-theme .scroll-mouse {
    border-color: rgba(30, 41, 59, 0.5);
}

body.light-theme .scroll-wheel {
    background-color: rgba(30, 41, 59, 0.5);
}

/* Enhance visibility in dark mode with subtle glow */
.scroll-mouse {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.scroll-wheel {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.15);
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* Section Styles */
section {
    padding: var(--spacing-3xl) 0;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

body.light-theme .section-subtitle {
    color: #4b5563;
}

/* Features Section */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
}

.feature-card {
    background: var(--bg-tertiary);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2rem;
    color: white;
    transition: transform var(--transition-medium);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.feature-stats {
    display: flex;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-container {
    display: flex;
    align-items: baseline;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-mono);
}

.stat-unit {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-mono);
}

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

/* Portfolio Section */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

/* Service Categories */
.service-categories {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out forwards;
}

.category-btn {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-secondary);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s;
}

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

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-secondary);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
}

.portfolio-item {
    background: var(--bg-tertiary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition-medium);
    opacity: 1;
    transform: scale(1);
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: 600;
}

.portfolio-placeholder.web-app {
    background: var(--gradient-primary);
}

.portfolio-placeholder.mobile-app {
    background: var(--gradient-secondary);
}

.portfolio-placeholder.design-work {
    background: var(--gradient-accent);
}

.portfolio-placeholder span {
    font-size: 1rem;
    margin-top: var(--spacing-sm);
}

.portfolio-content {
    padding: var(--spacing-xl);
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.portfolio-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.portfolio-tags {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.tag {
    background: var(--surface-color);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}

/* Services Section */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.service-card {
    background: var(--bg-tertiary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
    margin-bottom: 0;
    justify-content: flex-start;
}

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-description {
    margin-bottom: var(--spacing-md);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.service-badge {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

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

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.service-features i {
    color: var(--accent-color);
    width: 16px;
}

.service-price {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin-top: var(--spacing-xs);
}

.service-action {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
    text-align: center;
}

.service-action .view-all-btn {
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    transition: all 0.3s ease;
}

.service-action .view-all-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.service-action::before {
    content: '';
    position: absolute;
    top: -var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

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

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    font-size: 1.1rem;
}

.stats-section {
    padding: var(--spacing-3xl) 0;
    margin: var(--spacing-2xl) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin: 0 auto;
    max-width: 1000px;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Media queries for responsive stats grid */
@media (max-width: 992px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

.stat-box {
    text-align: center;
    background: var(--bg-tertiary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-medium);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-box .stat-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box .stat-unit {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box .stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    transition: transform var(--transition-medium);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 15, 35, 0.9), transparent);
    padding: var(--spacing-xl);
    color: white;
}

.image-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.image-overlay p {
    color: rgba(255, 255, 255, 0.8);
}

/* Team Showcase Section */
.team-showcase {
    margin-top: var(--spacing-4xl);
    position: relative;
}

.team-showcase h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--primary-color);
    text-align: center;
    position: relative;
    display: inline-block;
}

.team-showcase h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 4px;
    width: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.team-subtitle {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.team-member {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
}

.team-member-inner {
    position: relative;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.team-member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    border: 4px solid var(--border-light);
    background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
    position: relative;
    z-index: 2;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.team-member:hover .team-member-photo img {
    transform: scale(1.05);
}

.team-member-info {
    position: relative;
    z-index: 2;
}

.team-member-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-2xs);
    color: var(--text-primary);
}

.team-member-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.team-member-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.team-social {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
}

.team-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.team-member::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bg-card);
    opacity: 0.7;
    z-index: 1;
}

.team-member::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.team-member:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

/* Media queries for responsive team grid */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-member-photo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
    
    .team-member-photo {
        width: 80px;
        height: 80px;
    }
    
    .team-member-name {
        font-size: 1rem;
    }
    
    .team-member-role {
        font-size: 0.8rem;
    }
    
    .team-member-bio {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 2.8em;
        line-height: 1.4;
        font-size: 0.8rem;
        margin-bottom: var(--spacing-xs);
    }
}

/* Team Section Styles */
.team-section {
    margin-top: var(--spacing-4xl);
    position: relative;
    padding-top: var(--spacing-2xl);
}

.team-showcase-wrapper {
    margin-top: var(--spacing-xl);
}

/* We're no longer using section-subheader but keeping for backward compatibility */
.section-subheader {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    display: none;
}

.section-subheader h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-subheader h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.section-subheader p {
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--spacing-xl);
    margin: 0 auto;
    max-width: 1200px;
}

.team-member {
    position: relative;
    transition: all var(--transition-medium);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    padding-bottom: var(--spacing-sm); /* Add some bottom padding */
    min-height: 200px; /* Base height for desktop view */
}

.member-avatar-container {
    position: relative;
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: center;
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color-light);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color));
    transition: all var(--transition-medium);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.team-member:hover .member-avatar {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.4);
}

.team-member:hover .member-avatar img {
    transform: scale(1.1);
}

.member-info {
    padding: var(--spacing-lg);
    text-align: center;
}

.member-info h4 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-2xs);
    color: var(--text-primary);
}

.member-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    display: block;
    font-weight: 500;
}

.member-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
    /* Show full description without truncation */
    max-width: 100%;
}

.member-social {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
}

.member-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.member-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Media queries for team section */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-subheader h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        margin: 0 var(--spacing-xs); /* Add some margin to prevent touching the edges */
    }
    
    .team-member {
        min-height: 230px; /* Increased height for mobile to accommodate 3 lines */
    }
    
    .member-avatar {
        width: 80px;
        height: 80px;
    }
    
    .member-info h4 {
        font-size: 1rem;
    }
    
    .member-role {
        font-size: 0.8rem;
    }
    
    .member-info {
        padding: var(--spacing-md); /* Reduce padding on mobile */
        padding-bottom: var(--spacing-lg); /* Keep more padding at the bottom */
    }
        
    .member-desc {
        font-size: 0.75rem;
        /* Show full description on mobile too */
        margin-bottom: var(--spacing-sm); /* Add some bottom margin */
    }
    
    .member-social a {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-3xl);
    align-items: start;
    background-color: rgba(15, 16, 30, 0.95);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(120, 82, 252, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    padding: var(--spacing-3xl);
    background-color: rgba(22, 24, 45, 1);
    height: 100%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(120, 82, 252, 0.15);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    background-color: rgba(13, 14, 28, 0.7);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(120, 82, 252, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(120, 82, 252, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(120, 82, 252, 0.3);
    border: 1px solid rgba(120, 82, 252, 0.3);
}

body.light-theme .contact-icon {
    background: rgba(120, 82, 252, 0.15);
    color: #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    font-size: 0.95rem;
}

/* Form Styles */
.form-container {
    display: flex;
    flex-direction: column;
}

.form-header {
    margin-bottom: var(--spacing-xl);
}

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form {
    padding: var(--spacing-2xl) var(--spacing-3xl);
    background-color: rgba(25, 27, 48, 1);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 1px solid rgba(120, 82, 252, 0.2);
    border-radius: var(--radius-md);
    background: rgba(13, 14, 28, 0.9);
    color: white;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
    appearance: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Style for select element and dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

body.light-theme .form-group select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

/* Style for dropdown options */
.form-group select option {
    background-color: #1E213A;
    color: white;
    padding: var(--spacing-md);
}

body.light-theme .form-group select option {
    background-color: #ffffff;
    color: #1e293b;
    padding: var(--spacing-md);
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:active,
.form-group select option:checked {
    background-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 0 10px rgba(120, 82, 252, 0.5);
}

body.light-theme .form-group select option:hover,
body.light-theme .form-group select option:focus,
body.light-theme .form-group select option:active,
body.light-theme .form-group select option:checked {
    background-color: #6366f1 !important;
    color: white !important;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* Style for placeholder option */
.form-group select option[value=""] {
    color: rgba(255, 255, 255, 0.6);
}

body.light-theme .form-group select option[value=""] {
    color: rgba(30, 41, 59, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(16, 18, 35, 0.95);
    box-shadow: 0 0 0 3px rgba(120, 82, 252, 0.3), 0 2px 10px rgba(120, 82, 252, 0.2);
}

/* Additional focus styling for select */
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(120, 82, 252, 0.3), 0 2px 10px rgba(120, 82, 252, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    background: rgba(255, 255, 255, 0.05);
}

.form-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: var(--spacing-xs);
    display: block;
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, #7852fc 0%, #9259fe 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(120, 82, 252, 0.2);
}

/* Footer */
.footer {
    background: var(--background-color);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

/* Light theme specific styles for navbar and footer to match */
body.light-theme .navbar {
    background: rgba(42, 48, 60, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-theme .navbar.scrolled {
    background: rgba(42, 48, 60, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

body.light-theme .footer {
    background: rgba(42, 48, 60, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-theme .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ensure text in navbar and footer is visible in light mode */
body.light-theme .navbar .nav-link,
body.light-theme .footer-section a,
body.light-theme .footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

body.light-theme .navbar .nav-link:hover,
body.light-theme .footer-section a:hover {
    color: var(--accent-color);
}

/* Ensure text in navbar and footer is visible in light mode */
body.light-theme .navbar .nav-link,
body.light-theme .footer-section a,
body.light-theme .footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

body.light-theme .navbar .nav-link:hover,
body.light-theme .footer-section a:hover {
    color: var(--accent-color);
}

body.light-theme .footer-section h4 {
    color: white;
}

/* Light theme overrides for search overlay */
body.light-theme .search-overlay {
    background: rgba(255, 255, 255, 0.95);
}

body.light-theme .search-box {
    background: #f8fafc;
    border-color: #e2e8f0;
}

body.light-theme .search-box input {
    color: #1e293b;
}

body.light-theme .search-box input::placeholder {
    color: #64748b;
}

body.light-theme .search-close {
    color: #64748b;
}

body.light-theme .search-close:hover {
    color: #1e293b;
    background: rgba(0, 0, 0, 0.05);
}

/* Light theme styling for contact section */
body.light-theme .contact-content {
    background-color: #f0f4f8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

body.light-theme .contact-info {
    background-color: #dfe4ea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.light-theme .contact-item {
    background: rgba(120, 82, 252, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(120, 82, 252, 0.1);
}

body.light-theme .contact-details h4 {
    color: #1e293b;
}

body.light-theme .contact-details p {
    color: #4b5563;
}

body.light-theme .contact-form {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .form-group label {
    color: #1e293b;
    font-weight: 600;
}

body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8fafc;
    color: #1e293b;
}

body.light-theme .form-group input:focus,
body.light-theme .form-group select:focus,
body.light-theme .form-group textarea:focus {
    border-color: #6366f1;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    color: #1e293b;
    outline: none;
}

body.light-theme .form-submit.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

body.light-theme .form-submit.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-brand .brand-link {
    display: inline-flex;
    align-items: center;
}

.footer-brand .logo {
    height: 24px;
}

.footer-brand .solutions-text {
    color: var(--accent-color);
    font-family: var(--font-allilato);
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: 1px;
    margin-left: 4px;
    display: inline-block;
}

.footer-brand span {
    color: var(--accent-color);
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
}

.footer-section h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-medium);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
        margin-bottom: var(--spacing-3xl); /* Add bottom margin to create space for scroll indicator */
    }
    
    .hero-visual {
        order: -1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .about-image {
        margin-top: var(--spacing-xl);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 0;
        background: none;
        box-shadow: none;
    }
    
    .form-container {
        margin-top: var(--spacing-xl);
    }
    
    .contact-info {
        border-radius: var(--radius-xl);
        margin-bottom: var(--spacing-xl);
        box-shadow: var(--shadow-lg);
    }
    
    .contact-form {
        background: rgba(19, 20, 36, 0.95);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    /* Media query for tablets already uses 2 columns for services */
    
    .features-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-categories {
        gap: var(--spacing-sm);
    }
    
    .category-btn,
    .filter-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .service-card {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }
    
    .loading-brand {
        flex-direction: column;
    }
    
    .loading-brand-text {
        font-size: 2rem;
        margin-left: 0;
        margin-top: 10px;
    }

    .nav-menu {
        position: fixed;
        top: 60px; /* Match navbar height */
        left: 0;
        width: 100%;
        background: var(--background-color);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        height: auto;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, box-shadow 0.3s ease;
        border-top: 1px solid var(--border-color);
        z-index: 1000;
        box-shadow: none;
    }
    
    .nav-menu.active {
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        padding: var(--spacing-xl);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        background-color: var(--surface-color);
        animation: fadeIn 0.3s ease-in-out;
    }
    
    body.light-theme .nav-menu.active {
        background-color: #f1f5f9;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        border: 1px solid #e2e8f0;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .nav-item {
        width: 100%;
        margin: 10px 0;
        position: static;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 1.1rem;
        border-radius: var(--radius-md);
        background-color: rgba(255, 255, 255, 0.05);
        transition: all 0.2s ease;
        position: relative;
        color: rgba(255, 255, 255, 0.8);
        border: 1px solid transparent;
    }
    
    .nav-menu.active .nav-link.active {
        background-color: rgba(120, 82, 252, 0.15);
        border: 1px solid rgba(120, 82, 252, 0.3);
        font-weight: 600;
    }
    
    body.light-theme .nav-menu.active .nav-link {
        color: #1e293b;
        background-color: rgba(0, 0, 0, 0.03);
        border: 1px solid #e2e8f0;
    }
    
    body.light-theme .nav-menu.active .nav-link:hover,
    body.light-theme .nav-menu.active .nav-link.active {
        color: var(--primary-color);
        background-color: rgba(120, 82, 252, 0.05);
        border: 1px solid rgba(120, 82, 252, 0.2);
    }
    
    .hamburger {
        display: flex;
        z-index: 101;
        width: 40px;
        height: 40px;
    }
    
    .hamburger span {
        height: 3px;
    }
    
    .nav-actions {
        gap: var(--spacing-md);
        display: flex;
        align-items: center;
        margin-left: auto;
    }
    
    .search-btn,
    .theme-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-md);
        color: var(--text-primary);
        font-size: 1.1rem;
    }
    
    .hero {
        min-height: 80vh;
        padding-bottom: 80px; /* Add extra padding at bottom for scroll indicator */
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid,
    .portfolio-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        padding: 0 var(--spacing-sm);
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
        width: 100%;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-xl);
    }
    
    .portfolio-filters,
    .service-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--spacing-sm);
    }
    
    .filter-btn,
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo-container {
        justify-content: flex-start;
    }
    
    .footer-brand .logo {
        height: 20px;
    }
    
    .footer-brand .solutions-text {
        font-size: 1.3rem;
    }
    
    .about-text h3 {
        text-align: center;
        font-size: 1.75rem;
    }
    
    .about-text p {
        text-align: justify;
        font-size: 1rem;
    }
    
    .service-action .btn {
        font-size: 0.9rem;
        padding: var(--spacing-sm) var(--spacing-lg);
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .contact-details {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .loading-content {
        padding: var(--spacing-md);
        width: 95%;
    }
    
    /* Footer adjustments for small screens */
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-section ul {
        padding-left: 0;
    }
    
    .footer-section li {
        margin-bottom: var(--spacing-xs);
    }
    
    .footer-section a {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    /* For extra small screens */
    @media (max-width: 360px) {
        .footer-links {
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-sm);
        }
        
        .footer-section a {
            font-size: 0.8rem;
        }
        
        .footer-section h4 {
            font-size: 0.9rem;
        }
    }
    
    .loading-logo-img {
        height: 40px;
    }
    
    .loading-brand-text {
        font-size: 1.75rem;
    }
    
    .loading-text {
        font-size: 0.9rem;
        padding: 0 var(--spacing-sm);
    }
    
    .nav-actions {
        gap: 8px;
        margin-left: auto;
    }
    
    .nav-actions button {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .nav-menu.active {
        padding-top: var(--spacing-md);
        padding-bottom: var(--spacing-md);
    }
    
    /* Navigation improvements */
    .nav-brand {
        max-width: 70%;
    }
    
    .brand-accent {
        font-size: 0.8rem;
    }
    
    .nav-actions {
        position: relative;
        z-index: 100;
    }
    
    .theme-toggle, .search-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    /* Contact form responsiveness */
    .contact-form {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
    
    .contact-info {
        padding: var(--spacing-xl);
    }
    
    /* Footer improvements */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo-container {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: var(--spacing-lg);
    }
    
    .footer-links {
        text-align: center;
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: var(--spacing-md);
    }
    
    .hero-content {
        padding: 0 var(--spacing-md);
    }
    
    /* Stack buttons on very small screens */
    .hero-actions {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
        margin-bottom: var(--spacing-3xl);
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: var(--spacing-2xl) 0;
    }
    
    .visual-card {
        min-width: auto;
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-logo-container {
        justify-content: center;
    }
    
    .footer-brand .logo {
        height: 18px;
    }
    
    .footer-brand .solutions-text {
        font-size: 1.1rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
    
    .about-stats {
        gap: var(--spacing-md);
    }
    
    .service-action {
        margin-top: var(--spacing-2xl);
        margin-bottom: var(--spacing-xl);
    }
    
    .service-action .view-all-btn {
        padding: var(--spacing-sm) var(--spacing-xl);
        font-size: 1rem;
    }

    .category-btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.85rem;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection styling */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: bounce 2s infinite;
        z-index: 10; /* Ensure it's above other elements */
        bottom: 30px; /* Position it within the extra padding we added */
        position: absolute;
    }
    
    /* Make the scroll indicator smaller on mobile */
    .scroll-mouse {
        width: 20px;
        height: 32px;
    }
    
    /* Hide the text on very small screens to prevent overlap */
    @media (max-width: 480px) {
        .hero {
            padding-bottom: 100px; /* Even more padding on smallest screens */
        }
        
        .scroll-indicator span {
            display: none;
        }
        
        .scroll-indicator {
            bottom: 40px; /* Position it higher from the bottom */
            transform: translateX(-50%) scale(0.85); /* Make it slightly smaller */
        }
    }
    
    .floating-element {
        animation: none;
    }
}


.logo {
    image-rendering: -webkit-optimize-contrast; /* Safari/Chrome */
    image-rendering: crisp-edges; /* Firefox */
    max-width: 100%;
    height: 14px;   /* keeps logo balanced in navbar */
    width: auto;    /* maintain aspect ratio */
}

/* Search Highlight Effect */
@keyframes searchHighlight {
    0% {
        box-shadow: 0 0 0 2px var(--primary-color);
        transform: scale(1);
    }
    25% {
        box-shadow: 0 0 0 8px rgba(120, 82, 252, 0.3);
        transform: scale(1.02);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(120, 82, 252, 0.5);
        transform: scale(1);
    }
    75% {
        box-shadow: 0 0 0 8px rgba(120, 82, 252, 0.3);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 2px var(--primary-color);
        transform: scale(1);
    }
}

.search-highlight {
    animation: searchHighlight 3s ease-in-out;
    position: relative;
    z-index: 10;
}

/* Portfolio Demo Showcase Animation */
@keyframes showcaseHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(120, 82, 252, 0);
    }
    20% {
        box-shadow: 0 0 0 20px rgba(120, 82, 252, 0.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(120, 82, 252, 0);
    }
}

.showcase-highlight {
    position: relative;
}

.showcase-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(120, 82, 252, 0.05);
    z-index: -1;
}

.demo-showcase {
    animation: showcaseHighlight 2s ease-out;
    transform-origin: center;
    position: relative;
    z-index: 5;
}

/* Responsive styles for form header */
@media (max-width: 767px) {
    .form-header {
        padding: 0 var(--spacing-md);
        margin-top: var(--spacing-xl);
        text-align: center;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
}

/* ===========================
   SECONDARY PAGES STYLING 
   ========================== */

/* Common Page Header Styles */
.page-header {
    text-align: center;
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    margin-top: 80px; /* Account for fixed navbar */
    background: var(--bg-primary);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.last-updated {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

/* ===========================
   CAREERS PAGE STYLING
   ========================== */

.careers-page {
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    padding-top: calc(var(--navbar-height) + var(--spacing-xl));
}

.careers-page .page-header {
    text-align: center;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--spacing-xl);
}

.careers-page .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.careers-page .page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

.careers-banner {
    padding: var(--spacing-2xl) var(--spacing-xl);
    background: var(--bg-secondary);
    margin: var(--spacing-xl) 0 var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.careers-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.03;
    pointer-events: none;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.careers-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.careers-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.careers-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.careers-image {
    position: relative;
}

.careers-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
}

.careers-image:hover img {
    transform: scale(1.02);
}

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

.why-work-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.benefit-card {
    background: var(--bg-tertiary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

.benefit-card:hover::before {
    opacity: 0.03;
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.benefit-icon i {
    font-size: 1.3rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.application-section {
    background: var(--bg-secondary);
    padding: var(--spacing-2xl) var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin: var(--spacing-2xl) 0;
    position: relative;
}

.application-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.02;
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.application-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.application-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--transition-medium);
    position: relative;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

.step-description a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.step-description a:hover {
    text-decoration: underline;
}

.application-contact {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md) 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.application-contact p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.application-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.application-contact a:hover {
    text-decoration: underline;
}

/* ===========================
   DOCUMENTATION PAGE STYLING
   ========================== */

.documentation-page {
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    padding-top: calc(var(--navbar-height) + var(--spacing-xl));
}

.documentation-page .page-header {
    text-align: center;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--spacing-xl);
}

.documentation-grid {
    margin: var(--spacing-3xl) 0;
}

.documentation-category {
    margin-bottom: var(--spacing-3xl);
}

.documentation-category h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: var(--spacing-sm);
    display: inline-block;
}

.doc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.doc-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-medium);
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.doc-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.doc-icon i {
    font-size: 1.5rem;
    color: white;
}

.doc-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.doc-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.doc-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.doc-type,
.doc-date {
    font-size: 0.9rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.documentation-help-section {
    background: var(--bg-secondary);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
    margin: var(--spacing-3xl) 0;
}

.documentation-help-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.documentation-help-icon i {
    font-size: 2rem;
    color: white;
}

.documentation-help-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.documentation-help-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

/* ===========================
   PRIVACY POLICY PAGE STYLING
   ========================== */

.privacy-policy-page {
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    padding-top: calc(var(--navbar-height) + var(--spacing-xl));
}

.privacy-policy-page .page-header {
    text-align: center;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--spacing-xl);
}

.policy-summary {
    background: var(--bg-secondary);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
    margin: var(--spacing-3xl) 0;
}

.summary-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.summary-icon i {
    font-size: 2rem;
    color: white;
}

.policy-summary h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.policy-summary p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.policy-section {
    background: var(--bg-tertiary);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: var(--spacing-xl);
}

.policy-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: var(--spacing-sm);
    display: inline-block;
}

.policy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.policy-section ul {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.policy-section li {
    margin-bottom: var(--spacing-sm);
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* ===========================
   SUPPORT PAGE STYLING
   ========================== */

.support-page {
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    padding-top: calc(var(--navbar-height) + var(--spacing-xl));
}

.support-page .page-header {
    text-align: center;
    padding: var(--spacing-3xl) 0 var(--spacing-xs);
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--spacing-xl);
}

.support-layout {
    margin: var(--spacing-3xl) 0;
}

.support-section {
    background: var(--bg-tertiary);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: var(--spacing-xl);
}

.support-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: var(--spacing-sm);
    display: inline-block;
}

.contact-content {
    display: grid;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-medium);
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
}

/* Extra small screens */
@media (max-width: 480px) {
    .careers-page .page-header h1 {
        font-size: 1.8rem;
    }
    
    .careers-banner {
        padding: var(--spacing-md);
        margin: var(--spacing-md) 0;
    }
    
    .why-work-section {
        padding: var(--spacing-md) 0;
    }
    
    .application-section {
        padding: var(--spacing-md);
    }
    
    .benefit-card {
        padding: var(--spacing-md);
    }
    
    .process-step {
        padding: var(--spacing-md);
    }
    
    .benefits-grid {
        gap: var(--spacing-sm);
    }
    
    .application-process {
        gap: var(--spacing-sm);
    }
}

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

.contact-details a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.faq-container {
    display: grid;
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-primary);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.support-section p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.support-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.support-section a:hover {
    text-decoration: underline;
}

/* ===========================
   RESPONSIVE STYLES FOR SECONDARY PAGES
   ========================== */

@media (max-width: 768px) {
    .page-header {
        padding: var(--spacing-xl) 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .careers-page .page-header h1 {
        font-size: 2rem;
    }
    
    .careers-page .page-header p {
        font-size: 1rem;
    }
    
    .careers-banner {
        padding: var(--spacing-lg);
        margin: var(--spacing-lg) 0;
    }
    
    .careers-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .careers-text h2 {
        font-size: 1.8rem;
    }
    
    .careers-text p {
        font-size: 0.95rem;
    }
    
    .why-work-section {
        padding: var(--spacing-lg) 0;
    }
    
    .why-work-section h2 {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .application-section h2 {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .application-section {
        padding: var(--spacing-lg);
        margin: var(--spacing-lg) 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .application-process {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .process-step {
        padding: var(--spacing-md);
    }
    
    .benefit-card {
        padding: var(--spacing-md);
    }
    
    .doc-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

