laforceit.com/styles.css

2085 lines
40 KiB
CSS

/*
* Main stylesheet for laforceit.com
*/
:root {
/* Main Colors */
--primary-bg: #0f172a;
--secondary-bg: #1e293b;
--accent: #3b82f6;
--accent-darker: #2563eb;
--accent-gradient: linear-gradient(135deg, #2563eb, #3b82f6);
--accent-glow: 0 0 15px rgba(59, 130, 246, 0.5);
/* Text Colors */
--text-primary: #e2e8f0;
--text-secondary: #94a3b8;
--text-accent: #3b82f6;
/* Status Colors */
--success: #10b981;
--warning: #f59e0b;
--error: #ef4444;
--info: #0ea5e9;
/* UI Elements */
--border: rgba(71, 85, 105, 0.5);
--card-bg: rgba(30, 41, 59, 0.8);
--card-hover-bg: rgba(30, 41, 59, 0.95);
--card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
--glass-effect: saturate(180%) blur(10px);
/* Animation Timing */
--transition-fast: 0.2s ease;
--transition-normal: 0.3s ease;
--transition-slow: 0.5s ease;
}
/* Reset & Base Styles */
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background-color: var(--primary-bg);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
min-height: 100vh;
background-image:
radial-gradient(circle at 20% 35%, rgba(29, 78, 216, 0.15) 0%, transparent 50%),
radial-gradient(circle at 75% 60%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
line-height: 1.2;
}
a {
text-decoration: none;
color: var(--accent);
transition: color var(--transition-normal);
}
a:hover {
color: var(--accent-darker);
}
/* Layout */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
section {
padding: 6rem 0;
position: relative;
}
/* Button Styles */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.75rem 1.5rem;
font-weight: 600;
border-radius: 0.5rem;
transition: all var(--transition-normal);
cursor: pointer;
position: relative;
overflow: hidden;
border: none;
outline: none;
gap: 0.75rem;
}
.btn::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.1);
transform: translateX(-100%) rotate(45deg);
transition: transform 0.6s;
}
.btn:hover::before {
transform: translateX(100%) rotate(45deg);
}
.btn-primary {
background: var(--accent-gradient);
color: white;
box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2), 0 2px 4px -1px rgba(59, 130, 246, 0.1);
}
.btn-primary:hover {
box-shadow: var(--accent-glow), 0 10px 15px -3px rgba(59, 130, 246, 0.3);
transform: translateY(-2px);
}
.btn-outline {
background-color: transparent;
border: 2px solid var(--accent);
color: var(--accent);
}
.btn-outline:hover {
background-color: var(--accent);
color: white;
box-shadow: var(--accent-glow);
transform: translateY(-2px);
}
.btn-icon {
font-size: 0.9rem;
transition: transform 0.3s ease;
}
.btn:hover .btn-icon {
transform: translateX(4px);
}
/* Featured button with pulse effect */
.btn-featured {
position: relative;
}
.pulse-ring {
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 0.5rem;
border: 2px solid var(--accent);
opacity: 0;
animation: pulse-border 2s infinite;
}
@keyframes pulse-border {
0% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(1.1);
opacity: 0;
}
}
/* Navigation */
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
backdrop-filter: var(--glass-effect);
-webkit-backdrop-filter: var(--glass-effect);
background-color: rgba(15, 23, 42, 0.8);
border-bottom: 1px solid var(--border);
transition: all var(--transition-normal);
}
.navbar.scrolled {
background-color: rgba(15, 23, 42, 0.95);
}
.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
height: 4.5rem;
}
.logo {
display: flex;
align-items: center;
font-weight: 700;
font-size: 1.5rem;
color: transparent;
background: linear-gradient(135deg, #3b82f6, #2563eb);
-webkit-background-clip: text;
background-clip: text;
background-clip: text;
text-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}
.logo a {
text-decoration: none;
}
.logo-text {
margin-right: 4px;
color: inherit; /* inherit gradient */
}
.logo-dot {
color: var(--text-primary);
}
.nav-menu {
display: flex;
align-items: center;
gap: 2rem;
}
.nav-link {
position: relative;
color: var(--text-secondary);
font-weight: 500;
padding: 0.5rem;
transition: color var(--transition-normal);
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--accent-gradient);
transition: width var(--transition-normal);
border-radius: 1px;
}
.nav-link:hover, .nav-link.active {
color: var(--text-primary);
}
.nav-link:hover::after, .nav-link.active::after {
width: 100%;
}
.nav-buttons {
display: flex;
align-items: center;
gap: 1rem;
}
.dashboard-link {
display: flex;
align-items: center;
gap: 0.5rem;
background: rgba(59, 130, 246, 0.15);
color: var(--text-primary);
padding: 0.5rem 1rem;
border-radius: 9999px;
font-weight: 500;
transition: all var(--transition-normal);
}
.dashboard-link:hover {
background: rgba(59, 130, 246, 0.3);
color: var(--text-primary);
transform: translateY(-1px);
}
.menu-toggle {
display: none;
background: transparent;
border: none;
color: var(--text-primary);
cursor: pointer;
font-size: 1.5rem;
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding-top: 6rem;
padding-bottom: 0;
}
.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-areas:
"intro dashboard"
"cta cta";
gap: 2.5rem;
align-items: start;
}
/* Background particles and floating icons */
.particles-container, .floating-icons {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.particle {
position: absolute;
background-color: rgba(59, 130, 246, 0.2);
border-radius: 50%;
pointer-events: none;
}
.floating-icon {
position: absolute;
color: rgba(59, 130, 246, 0.05);
animation: float-icon 15s linear infinite;
opacity: 0.3;
}
@keyframes float-icon {
0% {
transform: translateY(100vh) rotate(0deg);
}
100% {
transform: translateY(-100px) rotate(360deg);
}
}
/* Name and role section styling */
.intro-section {
grid-area: intro;
animation: fadeIn 1s ease forwards;
}
.name-section {
display: flex;
align-items: baseline;
margin-bottom: 0.5rem;
flex-wrap: wrap; /* Allow wrapping on small screens */
}
.name {
font-size: 2.5rem;
font-weight: 700;
color: var(--text-primary);
margin-right: 0.5rem;
position: relative;
display: inline-block;
background: linear-gradient(to right, #fff, #e2e8f0);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.your-text {
font-size: 1.25rem;
font-weight: 400;
color: var(--text-secondary);
font-style: italic;
opacity: 0.8;
}
.hero-title {
font-size: 3.25rem;
margin-bottom: 2.5rem; /* Increase from 1.5rem to 2.5rem for more space */
line-height: 1.2; /* Slightly increased from 1.1 for better spacing */
min-height: 9rem; /* Increased from 7rem to provide more space */
}
.role-wrapper {
position: relative;
display: block;
height: 100%;
width: 100%;
}
.role {
position: absolute;
top: 0;
left: 0;
width: 100%;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease, transform 0.8s ease;
padding-bottom: 1rem; /* Add padding at the bottom of each role */
}
.role.active {
opacity: 1;
transform: translateY(0);
}
.highlight {
background: var(--accent-gradient);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
position: relative;
}
.highlight::after {
content: '';
position: absolute;
width: 100%;
height: 5px;
bottom: 5px;
left: 0;
background: var(--accent-gradient);
border-radius: 5px;
opacity: 0.3;
z-index: -1;
}
.hero-description {
font-size: 1.1rem;
color: var(--text-secondary);
margin-bottom: 2rem;
max-width: 90%;
line-height: 1.6;
position: relative;
z-index: 10;
transition: opacity 0.3s ease;
}
/* Terminal text that appears directly on the page */
.inline-terminal {
display: block;
margin-bottom: 2rem;
font-family: 'JetBrains Mono', monospace;
font-size: 1.1rem;
color: var(--accent);
background-color: rgba(15, 23, 42, 0.2);
padding: 0.75rem 1rem;
border-radius: 0.5rem;
border-left: 3px solid var(--accent);
position: relative;
width: 100%; /* Full width */
height: 3.5rem; /* Fixed height */
overflow: hidden; /* Hide overflow */
}
.terminal-text {
display: inline-block;
position: relative;
white-space: nowrap;
width: 100%; /* Make it take up full width */
overflow: hidden;
text-overflow: ellipsis;
}
.terminal-text::after {
content: '|';
position: absolute;
right: -0.5rem;
top: 0;
animation: cursor-blink 1s step-end infinite;
}
@keyframes cursor-blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
/* Dashboard section styling */
.dashboard-section {
grid-area: dashboard;
position: relative;
animation: fadeIn 1s ease 0.3s forwards;
opacity: 0;
}
.status-pill {
position: absolute;
top: -0.5rem;
right: 0.5rem;
display: flex;
align-items: center;
background: rgba(16, 185, 129, 0.15);
padding: 0.4rem 0.8rem;
border-radius: 9999px;
font-size: 0.85rem;
z-index: 10;
box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}
.live-indicator {
width: 10px;
height: 10px;
background-color: var(--success);
border-radius: 50%;
display: inline-block;
margin-right: 0.5rem;
position: relative;
}
.live-indicator::after {
content: '';
position: absolute;
top: -3px;
left: -3px;
width: 16px;
height: 16px;
border-radius: 50%;
background-color: var(--success);
animation: pulse 2s infinite;
opacity: 0.7;
z-index: -1;
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 0.7;
}
70% {
transform: scale(1.5);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 0;
}
}
.tech-dashboard {
max-width: 100%;
border-radius: 0.75rem;
overflow: hidden;
border: 1px solid var(--border);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
position: relative;
transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
transition: all 0.5s ease;
background-color: var(--card-bg);
animation: float 6s ease-in-out infinite;
}
.tech-dashboard:hover {
transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.1), 0 0 15px 5px rgba(59, 130, 246, 0.15);
}
@keyframes float {
0% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px); }
50% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-10px); }
100% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px); }
}
.data-stream {
height: 60px;
position: relative;
overflow: hidden;
background-color: var(--secondary-bg);
background-image:
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 20px 20px;
}
.data-line {
position: absolute;
height: 1px;
background: linear-gradient(90deg, var(--accent), transparent);
opacity: 0.7;
top: 50%;
left: -100%;
width: 50%;
animation: streamData 3s linear infinite;
}
.data-line:nth-child(1) {
animation-duration: 3s;
animation-delay: 0s;
width: 70%;
}
.data-line:nth-child(2) {
animation-duration: 2.5s;
animation-delay: 0.5s;
opacity: 0.5;
top: 30%;
width: 40%;
}
.data-line:nth-child(3) {
animation-duration: 2s;
animation-delay: 1s;
top: 70%;
width: 60%;
}
.data-line:nth-child(4) {
animation-duration: 4s;
animation-delay: 1.5s;
opacity: 0.6;
top: 20%;
width: 50%;
}
.data-line:nth-child(5) {
animation-duration: 3.5s;
animation-delay: 2s;
top: 80%;
width: 30%;
}
@keyframes streamData {
0% { left: -100%; }
100% { left: 100%; }
}
.monitoring-terminal {
padding: 0.75rem;
background-color: rgba(11, 17, 32, 0.98);
max-height: 200px;
overflow: hidden;
font-family: 'JetBrains Mono', monospace;
font-size: 0.8rem;
color: var(--text-secondary);
line-height: 1.6;
}
.terminal-line {
margin-bottom: 0.4rem;
white-space: nowrap;
}
.terminal-line:first-child {
color: var(--accent);
font-weight: 500;
}
.success {
color: var(--success);
}
.warning {
color: var(--warning);
}
.info {
color: var(--info);
}
/* Call to action buttons */
.cta-buttons {
grid-area: cta;
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1rem;
animation: fadeIn 1s ease 0.6s forwards;
opacity: 0;
}
/* Solutions Showcase Section */
.solutions-showcase {
background: linear-gradient(180deg, var(--primary-bg) 0%, rgba(30, 41, 59, 0.8) 100%);
padding: 3rem 0;
margin-top: -1rem;
border-top: 1px solid rgba(59, 130, 246, 0.1);
border-bottom: 1px solid rgba(59, 130, 246, 0.1);
position: relative;
}
.solutions-showcase::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100px;
background: linear-gradient(to bottom, rgba(59, 130, 246, 0.05), transparent);
opacity: 0.5;
}
.solutions-header {
text-align: center;
margin-bottom: 2rem;
}
.solutions-title {
font-size: 1.5rem;
color: var(--text-primary);
position: relative;
display: inline-block;
margin-bottom: 0.5rem;
}
.solutions-title::after {
content: '';
position: absolute;
bottom: -0.5rem;
left: 10%;
width: 80%;
height: 3px;
background: var(--accent-gradient);
border-radius: 3px;
}
.solutions-carousel {
position: relative;
height: 160px; /* Increased height to accommodate larger content */
margin: 0 auto;
max-width: 700px;
}
.solution-slide {
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: 1rem;
padding: 1.5rem 2rem;
position: absolute;
top: 0;
left: 0;
right: 0;
opacity: 0;
transform: translateX(50px);
transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
text-align: left; /* Ensure text alignment is consistent */
}
.solution-slide.active {
opacity: 1;
transform: translateX(0);
}
.solution-slide h4 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
color: var(--text-primary);
}
.solution-slide p {
color: var(--text-secondary);
font-size: 0.95rem;
}
.solution-icon {
font-size: 1.5rem;
color: var(--accent);
margin-bottom: 0.75rem;
}
.slider-controls {
display: flex;
justify-content: center;
flex-wrap: wrap; /* Allow dots to wrap on small screens */
gap: 0.75rem;
margin-top: 1.5rem;
padding: 0 0.5rem; /* Add some padding for mobile */
}
.slider-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: rgba(59, 130, 246, 0.3);
border: none;
cursor: pointer;
transition: all 0.3s ease;
padding: 0;
}
.slider-dot.active {
background-color: var(--accent);
transform: scale(1.2);
}
/* Fade-in animation */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Services Section */
.services {
background-color: var(--secondary-bg);
position: relative;
isolation: isolate;
}
.services::before {
content: '';
position: absolute;
width: 200%;
height: 200px;
top: -100px;
left: -50%;
background-color: var(--secondary-bg);
transform: rotate(-2deg);
z-index: -1;
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-title {
font-size: 2.5rem;
margin-bottom: 1rem;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -0.5rem;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--accent-gradient);
border-radius: 2px;
}
.section-description {
max-width: 700px;
margin: 0 auto;
color: var(--text-secondary);
font-size: 1.1rem;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
}
.service-card {
background-color: var(--card-bg);
border-radius: 1rem;
border: 1px solid var(--border);
padding: 2rem;
transition: all var(--transition-normal);
position: relative;
overflow: hidden;
z-index: 1;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 0;
background: var(--accent-gradient);
opacity: 0.1;
transition: height var(--transition-slow);
z-index: -1;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: var(--card-shadow);
border-color: var(--accent);
}
.service-card:hover::before {
height: 100%;
}
.service-icon {
font-size: 2.5rem;
color: var(--accent);
margin-bottom: 1.5rem;
transition: all var(--transition-normal);
}
.service-card:hover .service-icon {
transform: scale(1.1);
text-shadow: var(--accent-glow);
}
.service-title {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.service-description {
color: var(--text-secondary);
margin-bottom: 1.5rem;
transition: color var(--transition-normal);
}
.service-card:hover .service-description {
color: var(--text-primary);
}
.tech-badges {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.tech-badge {
background-color: rgba(59, 130, 246, 0.1);
border: 1px solid rgba(59, 130, 246, 0.3);
color: var(--accent);
font-size: 0.8rem;
font-weight: 500;
padding: 0.25rem 0.75rem;
border-radius: 9999px;
transition: all var(--transition-normal);
}
.service-card:hover .tech-badge {
background-color: rgba(59, 130, 246, 0.2);
border-color: var(--accent);
}
/* Lab Section */
.lab-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.lab-card {
background-color: var(--card-bg);
border-radius: 1rem;
border: 1px solid var(--border);
padding: 2rem;
height: 100%;
transition: all var(--transition-normal);
}
.lab-card:hover {
transform: translateY(-5px);
box-shadow: var(--card-shadow);
border-color: var(--accent);
}
.lab-card-title {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--text-primary);
}
.lab-card-description {
color: var(--text-secondary);
margin-bottom: 1.5rem;
}
.lab-subtitle {
font-size: 1.1rem;
font-weight: 600;
color: var(--accent);
margin-bottom: 1rem;
}
.lab-list {
margin-bottom: 1.5rem;
list-style-type: none;
}
.lab-list li {
display: flex;
align-items: center;
margin-bottom: 0.75rem;
color: var(--text-secondary);
}
.bullet {
display: inline-block;
width: 6px;
height: 6px;
border-radius: 50%;
background-color: var(--accent);
margin-right: 0.75rem;
}
.lab-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-top: 2rem;
}
.flex-center {
display: flex;
align-items: center;
gap: 0.5rem;
}
/* Metrics */
.metric {
margin-bottom: 1.5rem;
}
.metric-header {
display: flex;
justify-content: space-between;
margin-bottom: 0.5rem;
}
.metric-name {
color: var(--text-secondary);
}
.metric-value {
color: var(--accent);
font-weight: 500;
}
.metric-bar {
height: 0.5rem;
background-color: rgba(59, 130, 246, 0.1);
border-radius: 9999px;
overflow: hidden;
}
.metric-progress {
height: 100%;
background: var(--accent-gradient);
border-radius: 9999px;
position: relative;
overflow: hidden;
}
.metric-progress::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(90deg,
transparent 0%,
rgba(255, 255, 255, 0.2) 50%,
transparent 100%);
animation: shimmer 2s infinite;
}
@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.services-grid-small {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
gap: 0.75rem;
}
.service-tag {
display: flex;
align-items: center;
gap: 0.5rem;
background-color: rgba(59, 130, 246, 0.1);
padding: 0.5rem;
border-radius: 0.5rem;
font-size: 0.85rem;
}
.status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background-color: var(--success);
margin-right: 0.5rem;
}
/* Code Section */
.code-card {
background-color: var(--card-bg);
border-radius: 1rem;
border: 1px solid var(--border);
padding: 2rem;
margin-bottom: 2rem;
transition: all var(--transition-normal);
}
.code-card:hover {
box-shadow: var(--card-shadow);
border-color: var(--accent);
}
.code-card-title {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.code-card-description {
color: var(--text-secondary);
margin-bottom: 1.5rem;
}
.code-block {
background-color: rgb(15, 20, 30);
border-radius: 0.5rem;
padding: 1.5rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
line-height: 1.6;
overflow-x: auto;
}
.comment { color: #8b949e; }
.keyword { color: #ff7b72; }
.function { color: #d2a8ff; }
.string { color: #a5d6ff; }
/* Projects Section */
.projects {
background-color: var(--secondary-bg);
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
}
.project-card {
background-color: var(--card-bg);
border-radius: 1rem;
border: 1px solid var(--border);
padding: 2rem;
transition: all var(--transition-normal);
height: 100%;
}
.project-card:hover {
transform: translateY(-10px);
box-shadow: var(--card-shadow);
border-color: var(--accent);
}
.project-icon {
font-size: 2.5rem;
color: var(--accent);
margin-bottom: 1.5rem;
}
.project-title {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.project-description {
color: var(--text-secondary);
margin-bottom: 1.5rem;
flex-grow: 1;
}
/* Experience Section */
.timeline {
position: relative;
max-width: 800px;
margin: 0 auto;
}
.timeline::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 2px;
background-color: var(--border);
left: 25px;
}
.timeline-item {
position: relative;
padding-left: 4rem;
margin-bottom: 3rem;
}
.timeline-dot {
position: absolute;
left: 0;
top: 0;
width: 16px;
height: 16px;
background: var(--accent-gradient);
border-radius: 50%;
transform: translateX(-7px);
z-index: 1;
}
.timeline-content {
background-color: var(--card-bg);
border-radius: 1rem;
border: 1px solid var(--border);
padding: 1.5rem;
transition: all var(--transition-normal);
}
.timeline-content:hover {
transform: translateY(-5px);
box-shadow: var(--card-shadow);
border-color: var(--accent);
}
.timeline-title {
font-size: 1.25rem;
margin-bottom: 0.5rem;
}
.timeline-subtitle {
color: var(--accent);
font-weight: 500;
margin-bottom: 0.5rem;
}
.timeline-date {
font-size: 0.85rem;
color: var(--text-secondary);
margin-bottom: 1rem;
}
/* Contact Section */
.contact-grid {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 3rem;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 2rem;
}
.contact-item {
background-color: var(--card-bg);
border-radius: 1rem;
border: 1px solid var(--border);
padding: 1.5rem;
transition: all var(--transition-normal);
}
.contact-item:hover {
transform: translateY(-5px);
box-shadow: var(--card-shadow);
border-color: var(--accent);
}
.contact-icon {
font-size: 2rem;
color: var(--accent);
margin-bottom: 1rem;
}
.contact-title {
font-size: 1.2rem;
margin-bottom: 0.5rem;
}
.contact-form-container {
background-color: var(--card-bg);
border-radius: 1rem;
border: 1px solid var(--border);
padding: 2rem;
transition: all var(--transition-normal);
}
.contact-form-container:hover {
box-shadow: var(--card-shadow);
border-color: var(--accent);
}
.contact-form {
display: grid;
gap: 1.5rem;
}
.form-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.form-group label {
font-weight: 500;
color: var(--text-primary);
}
.form-group input,
.form-group textarea {
padding: 0.75rem;
background-color: rgba(15, 23, 42, 0.6);
border: 1px solid var(--border);
border-radius: 0.5rem;
color: var(--text-primary);
font-family: 'Inter', sans-serif;
transition: all var(--transition-normal);
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}
/* Footer styles */
.footer {
padding: 2rem 0;
background: transparent;
border-top: 1px solid var(--border);
margin-top: 4rem;
}
.footer .container {
display: flex;
flex-direction: column;
align-items: center;
}
.footer-content {
display: flex;
width: 100%;
align-items: center;
margin-bottom: 1.5rem;
position: relative;
}
.footer-logo {
position: absolute;
left: 0;
font-weight: 700;
font-size: 1.5rem;
}
.footer-links {
display: flex;
gap: 1.5rem;
margin: 0 auto;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover {
color: var(--accent);
}
.footer-bottom {
text-align: center;
color: var(--text-secondary);
font-size: 0.9rem;
width: 100%;
}
.footer-bottom .disclaimer {
margin-top: 0.25rem;
}
/* Responsive behavior */
@media (max-width: 768px) {
.footer-content {
flex-direction: column;
padding-top: 2rem;
gap: 1.5rem;
}
.footer-logo {
position: static;
margin-bottom: 1rem;
}
.footer-links {
margin: 0;
}
}
/* Reveal animations on scroll */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s ease;
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
/* Responsive Styles */
@media (max-width: 1024px) {
.hero-content {
grid-template-columns: 1fr;
grid-template-areas:
"intro"
"dashboard"
"cta";
}
.hero-title {
font-size: 2.75rem;
min-height: auto; /* Let it adjust naturally on smaller screens */
margin-bottom: 2rem;
}
.role {
position: relative;
}
.solutions-carousel {
height: 180px; /* More space on tablets */
}
}
@media (max-width: 768px) {
.hero-title {
font-size: 2.3rem;
}
.name {
font-size: 2rem;
}
.solutions-carousel {
height: 200px; /* More space on mobile */
}
.solution-slide {
padding: 1.25rem; /* Less padding on mobile */
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 1.9rem; /* Smaller on phones */
}
.hero-description {
font-size: 1rem;
}
.name {
font-size: 1.7rem;
}
.your-text {
font-size: 1rem;
}
.terminal-text {
font-size: 0.9rem; /* Smaller terminal text on phones */
}
.solutions-carousel {
height: 220px; /* Even more space on small phones */
}
}
/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}
/* Print styles for resume/CV page */
@media print {
.navbar, .footer, .cta-buttons {
display: none !important;
}
body {
background-color: white;
color: black;
}
.container {
width: 100%;
max-width: none;
}
a {
color: black;
text-decoration: none;
}
.section {
break-inside: avoid;
page-break-inside: avoid;
}
}
/* ============================
LaForceIT.com Logo Styling
============================ */
.logo-text-glow {
font-weight: 800;
font-size: 1.6rem;
background: linear-gradient(90deg, var(--accent), var(--accent-darker));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 0 6px rgba(59, 130, 246, 0.5);
transition: all 0.3s ease-in-out;
}
.logo-dot-glow {
color: white;
font-weight: 600;
font-size: 1.6rem;
margin-left: 2px;
text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
transition: all 0.3s ease-in-out;
}
.logo-text-glow:hover,
.logo-dot-glow:hover {
text-shadow: 0 0 10px rgba(59, 130, 246, 0.8), 0 0 8px rgba(255, 255, 255, 0.3);
transform: scale(1.02);
}
.form-notification {
margin-top: 1rem;
padding: 1rem 1.5rem;
border-radius: 0.5rem;
display: flex;
align-items: center;
gap: 0.75rem;
animation: slideIn 0.3s ease-out;
font-weight: 500;
}
.form-notification.success {
background-color: rgba(16, 185, 129, 0.1);
color: #10b981;
border: 1px solid #10b981;
}
.form-notification.error {
background-color: rgba(239, 68, 68, 0.1);
color: #ef4444;
border: 1px solid #ef4444;
}
.form-notification i {
font-size: 1.25rem;
}
@keyframes slideIn {
from {
transform: translateY(-10px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
/* Bubble Animation */
.bubbles {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
z-index: -1;
overflow: hidden;
}
.bubble {
position: absolute;
background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
border-radius: 50%;
animation: float-bubble 8s infinite ease-in-out;
opacity: 0;
}
.bubble:nth-child(1) {
width: 80px;
height: 80px;
left: 10%;
animation-delay: 0s;
}
.bubble:nth-child(2) {
width: 120px;
height: 120px;
left: 25%;
animation-delay: 2s;
}
.bubble:nth-child(3) {
width: 100px;
height: 100px;
left: 40%;
animation-delay: 4s;
}
.bubble:nth-child(4) {
width: 150px;
height: 150px;
left: 65%;
animation-delay: 6s;
}
.bubble:nth-child(5) {
width: 90px;
height: 90px;
left: 80%;
animation-delay: 8s;
}
@keyframes float-bubble {
0% {
transform: translateY(100vh) scale(0);
opacity: 0;
}
20% {
opacity: 0.5;
}
50% {
opacity: 0.3;
}
80% {
opacity: 0.5;
}
100% {
transform: translateY(-100vh) scale(1.2);
opacity: 0;
}
}
/* Add this to both index.html and resume.html body */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 20% 35%, rgba(29, 78, 216, 0.15) 0%, transparent 50%),
radial-gradient(circle at 75% 60%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
pointer-events: none;
z-index: -2;
}
/* Slogan Styles */
.slogan-wrapper {
text-align: center;
margin: 1.5rem 0;
animation: fadeIn 1s ease-out;
}
.slogan {
font-size: 2.5rem;
font-weight: 700;
background: linear-gradient(135deg, #3b82f6, #2563eb);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
margin-bottom: 0.5rem;
}
.slogan-sub {
font-size: 1.25rem;
color: var(--text-secondary);
font-weight: 500;
}
/* CTA Section Styles */
.cta-section {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.2));
padding: 6rem 0;
position: relative;
overflow: hidden;
}
.cta-grid {
display: flex;
justify-content: center;
align-items: center;
gap: 4rem;
}
.cta-content {
max-width: 800px;
text-align: center;
}
.cta-title {
font-size: 2.5rem;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #3b82f6, #2563eb);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.cta-description {
font-size: 1.25rem;
color: var(--text-secondary);
margin-bottom: 3rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.cta-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-bottom: 3rem;
}
.cta-stat {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--accent);
}
.stat-label {
font-size: 1rem;
color: var(--text-secondary);
text-align: center;
}
.cta-features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-bottom: 3rem;
}
.cta-feature {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
padding: 1.5rem;
background: rgba(59, 130, 246, 0.1);
border-radius: 1rem;
border: 1px solid rgba(59, 130, 246, 0.2);
transition: all var(--transition-normal);
}
.cta-feature:hover {
transform: translateY(-5px);
background: rgba(59, 130, 246, 0.15);
border-color: rgba(59, 130, 246, 0.3);
}
.cta-feature i {
font-size: 2rem;
color: var(--accent);
}
.cta-feature span {
font-weight: 500;
color: var(--text-primary);
text-align: center;
}
.cta-buttons {
display: flex;
justify-content: center;
gap: 1rem;
}
@media (max-width: 768px) {
.slogan {
font-size: 2rem;
}
.slogan-sub {
font-size: 1.1rem;
}
.cta-stats, .cta-features {
grid-template-columns: 1fr;
}
.cta-buttons {
flex-direction: column;
gap: 1rem;
}
.cta-title {
font-size: 2rem;
}
.cta-description {
font-size: 1.1rem;
}
}
/* Particles */
.particles-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
pointer-events: none;
z-index: 0;
}
.particle {
position: absolute;
background-color: rgba(59, 130, 246, 0.2);
border-radius: 50%;
pointer-events: none;
}
@keyframes float-particle {
0% {
transform: translate(0, 0);
}
25% {
transform: translate(50px, -50px);
}
50% {
transform: translate(100px, 0);
}
75% {
transform: translate(50px, 50px);
}
100% {
transform: translate(0, 0);
}
}
/* Highlight navigation links on scroll */
.nav-link.active {
color: var(--accent);
font-weight: 600;
}
.nav-link.active::after {
width: 100%;
opacity: 1;
}
/* Terminal Card Styles for Lab Section */
.terminal-card {
background-color: rgba(15, 23, 42, 0.95);
border: 1px solid var(--border);
border-radius: 8px;
overflow: hidden;
margin-bottom: 1.5rem;
box-shadow: var(--card-shadow);
transition: all var(--transition-normal);
}
.terminal-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.4);
}
.terminal-card-header {
background-color: rgba(30, 41, 59, 0.95);
padding: 0.75rem 1rem;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid var(--border);
}
.terminal-title {
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
font-weight: 500;
color: var(--text-primary);
}
.terminal-status {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
font-weight: 700;
padding: 0.25rem 0.5rem;
border-radius: 4px;
background-color: rgba(15, 23, 42, 0.7);
}
.terminal-status.online {
color: var(--success);
}
.terminal-card-content {
padding: 1rem;
}
/* Service tags with active indicators */
.status-dot.active {
background-color: var(--success);
box-shadow: 0 0 5px var(--success);
animation: pulse 2s infinite;
}
/* Service tags with error indicators */
.status-dot.error {
background-color: var(--error);
box-shadow: 0 0 5px var(--error);
}
/* Project Cards with Images */
.project-card {
display: flex;
flex-direction: column;
background-color: var(--card-bg);
border-radius: 12px;
overflow: hidden;
transition: all var(--transition-normal);
border: 1px solid var(--border);
box-shadow: var(--card-shadow);
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.4);
border-color: var(--accent);
}
.project-image {
position: relative;
height: 180px;
overflow: hidden;
background-color: rgba(15, 23, 42, 0.8);
}
.project-thumbnail {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
opacity: 0.7;
}
.project-card:hover .project-thumbnail {
transform: scale(1.05);
opacity: 0.9;
}
.project-icon {
position: absolute;
bottom: -25px;
right: 20px;
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--accent-gradient);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.5rem;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border: 3px solid var(--primary-bg);
z-index: 1;
}
.project-content {
padding: 1.5rem;
padding-top: 1rem;
flex: 1;
display: flex;
flex-direction: column;
}
.project-links {
margin-top: auto;
padding-top: 1rem;
display: flex;
gap: 1rem;
}
.project-link {
/* Apply button styles */
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.5rem 1rem; /* Adjusted padding */
font-weight: 600;
border-radius: 0.5rem;
transition: all var(--transition-normal);
cursor: pointer;
position: relative;
overflow: hidden;
border: none;
outline: none;
gap: 0.5rem; /* Keep the gap for icon */
font-size: 0.9rem; /* Match general button size */
text-decoration: none; /* Remove underline */
/* Specific button appearance */
background-color: var(--accent);
color: white;
}
.project-link i {
margin-left: 0.5rem; /* Keep icon spacing */
}
.project-link:hover {
background-color: var(--accent-darker); /* Darken on hover */
color: white; /* Keep text white */
box-shadow: var(--accent-glow);
transform: translateY(-2px);
text-decoration: none; /* Ensure no underline on hover */
}
/* Responsive adjustments */
@media (max-width: 768px) {
.project-card {
flex-direction: column;
}
.project-image {
height: 160px;
}
}
.btn-offline {
border-color: var(--error);
color: var(--error);
cursor: not-allowed;
opacity: 0.8;
}
.btn-offline:hover {
background-color: rgba(239, 68, 68, 0.1);
color: var(--error);
box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
transform: translateY(-2px);
}
.offline-indicator {
width: 10px;
height: 10px;
background-color: var(--error);
border-radius: 50%;
display: inline-block;
margin-right: 0.5rem;
}