/* * Main stylesheet for argobox.com * Modern tech portfolio design with animation effects */ :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); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); } .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; } .logo-text { color: var(--accent); } .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-gap: 3rem; align-items: center; } /* 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); } } /* Background 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: var(--accent); border-radius: 50%; pointer-events: none; } @keyframes float-particle { 0% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-100px) translateX(50px); } 100% { transform: translateY(0) translateX(0); } } /* 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.2rem; color: var(--text-secondary); margin-top: 1.5rem; /* Add explicit top margin */ margin-bottom: 2rem; max-width: 550px; position: relative; /* Make it position relative */ z-index: 1; /* Ensure it's above the role titles */ } /* 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; } 50% { 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: translateY(0); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0); } } .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: flex; flex-direction: column; gap: 2.5rem; margin-top: 3rem; } .services-category { background-color: var(--card-bg); border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; transition: all var(--transition-normal); } .services-category:hover { transform: translateY(-5px); box-shadow: var(--card-shadow); border-color: var(--accent); } .category-title { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem; background-color: rgba(15, 23, 42, 0.5); border-bottom: 1px solid var(--border); font-size: 1.35rem; } .category-icon { color: var(--accent); } .service-items { display: flex; flex-direction: column; } .service-item { display: flex; align-items: center; padding: 1.25rem; border-bottom: 1px solid var(--border); transition: all var(--transition-normal); text-decoration: none; color: var(--text-primary); } .service-item:last-child { border-bottom: none; } .service-item:hover { background-color: rgba(15, 23, 42, 0.3); } .service-icon { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; margin-right: 1rem; background-color: rgba(59, 130, 246, 0.1); border-radius: 0.5rem; font-size: 1.25rem; color: var(--accent); transition: all var(--transition-normal); } .service-item:hover .service-icon { background-color: rgba(59, 130, 246, 0.2); transform: scale(1.1); } .service-info { flex: 1; } .service-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; } .service-description { font-size: 0.9rem; color: var(--text-secondary); } .service-status { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; padding: 0.25rem 0.75rem; border-radius: 9999px; margin-left: 1rem; } .service-status.live { background-color: rgba(16, 185, 129, 0.1); color: var(--success); } .service-status.maintenance { background-color: rgba(245, 158, 11, 0.1); color: var(--warning); } .service-status.restricted { background-color: rgba(107, 114, 128, 0.1); color: var(--text-secondary); } .status-dot { width: 8px; height: 8px; border-radius: 50%; } .service-status.live .status-dot { background-color: var(--success); } .service-status.maintenance .status-dot { background-color: var(--warning); } /* Services Section Styles */ .services-info-banner { display: flex; align-items: center; gap: 1rem; background-color: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 0.75rem; padding: 1rem 1.5rem; margin-bottom: 2rem; } /* Responsive adjustments */ @media (max-width: 768px) { .service-item { flex-direction: column; align-items: flex-start; padding: 1rem; } .service-icon { margin-bottom: 0.75rem; margin-right: 0; } .service-status { margin-left: 0; margin-top: 0.75rem; align-self: flex-start; } } /* 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%; display: flex; flex-direction: column; } .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 */ .footer { background-color: var(--secondary-bg); padding: 4rem 0 1rem; margin-top: 6rem; } .footer-content { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; margin-bottom: 3rem; } .footer-info { max-width: 350px; } .footer-logo { font-weight: 700; font-size: 1.5rem; margin-bottom: 1rem; } .logo-highlight { color: var(--accent); } .footer-description { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.5; } .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; } .footer-heading { font-size: 1rem; font-weight: 600; margin-bottom: 1.25rem; color: var(--text-primary); } .footer-link { display: block; color: var(--text-secondary); margin-bottom: 0.75rem; font-size: 0.95rem; transition: color var(--transition-normal); } .footer-link:hover { color: var(--accent); text-decoration: underline; } .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); color: var(--text-secondary); font-size: 0.9rem; } .footer-extra-link { color: var(--text-secondary); transition: color var(--transition-normal); } .footer-extra-link:hover { color: var(--accent); } /* 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-gap: 2rem; } .footer-content { grid-template-columns: 1fr; gap: 2rem; } .footer-info { max-width: 100%; } } @media (max-width: 768px) { .footer-links { grid-template-columns: 1fr 1fr; } .architecture-diagram { gap: 1.5rem; } .router-tier, .infra-tier { flex-wrap: wrap; justify-content: center; } .service-item { flex-direction: column; align-items: flex-start; padding: 1rem; } .service-icon { margin-bottom: 0.75rem; margin-right: 0; } .service-status { margin-left: 0; margin-top: 0.75rem; align-self: flex-start; } } @media (max-width: 480px) { .footer-links { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; } .hero-stats { justify-content: center; } } /* 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; } } /* Additional styles for this specific page */ /* Hero Terminal */ .hero-content { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 3rem; align-items: center; } .hero-stats { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 2rem 0; } .stat-item { display: flex; align-items: center; gap: 0.75rem; } .stat-icon { width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; background: var(--accent-gradient); border-radius: 0.5rem; color: white; font-size: 1.25rem; } .stat-detail { display: flex; flex-direction: column; } .stat-value { font-weight: 700; font-size: 1.25rem; } .stat-name { font-size: 0.875rem; color: var(--text-secondary); } .hero-terminal { width: 100%; border-radius: 0.75rem; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1); background-color: #0d1117; border: 1px solid var(--border); transform: perspective(1000px) rotateY(5deg) rotateX(2deg); transition: all 0.3s ease; } .hero-terminal:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); } .terminal-header { display: flex; align-items: center; background-color: #161b22; padding: 0.5rem 1rem; border-bottom: 1px solid var(--border); } .terminal-buttons { display: flex; gap: 0.5rem; margin-right: 1rem; } .terminal-btn { width: 12px; height: 12px; border-radius: 50%; } .terminal-btn.close { background-color: #ff5f56; } .terminal-btn.minimize { background-color: #ffbd2e; } .terminal-btn.maximize { background-color: #27c93f; } .terminal-title { color: var(--text-secondary); font-size: 0.875rem; font-family: 'JetBrains Mono', monospace; } .terminal-body { padding: 1rem; font-family: 'JetBrains Mono', monospace; font-size: 0.875rem; color: var(--text-primary); line-height: 1.4; max-height: 400px; overflow-y: auto; } .terminal-line { margin-bottom: 0.25rem; white-space: pre-wrap; } .terminal-line.output { color: var(--text-secondary); } .terminal-line.success { color: var(--success); } .terminal-line.error { color: var(--error); } .terminal-line.typing { color: var(--accent); } .terminal-line .cursor { display: inline-block; width: 8px; height: 15px; background-color: var(--accent); animation: blink 1s step-end infinite; } @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } } /* Architecture Diagram */ .architecture-diagram { margin-top: 3rem; display: flex; flex-direction: column; gap: 3rem; } .diagram-wrapper { display: flex; flex-direction: column; align-items: center; gap: 2rem; position: relative; } .diagram-wrapper::before { content: ''; position: absolute; top: 5rem; bottom: 0; width: 2px; background: var(--accent-gradient); z-index: 0; } .diagram-tier { display: flex; gap: 2rem; position: relative; z-index: 1; } .router-tier::before { content: ''; position: absolute; top: 50%; left: -2rem; right: -2rem; height: 2px; background: var(--accent-gradient); z-index: 0; transform: translateY(-50%); } .infra-tier::before { content: ''; position: absolute; top: 50%; left: -2rem; right: -2rem; height: 2px; background: var(--accent-gradient); z-index: 0; transform: translateY(-50%); } .diagram-node { background-color: var(--card-bg); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; min-width: 150px; text-align: center; transition: all var(--transition-normal); position: relative; z-index: 1; } .diagram-node:hover { transform: translateY(-5px); box-shadow: var(--card-shadow); border-color: var(--accent); } .node-icon { font-size: 2rem; color: var(--accent); margin-bottom: 0.5rem; } .node-label { font-weight: 600; font-size: 1.1rem; } .node-detail { font-size: 0.875rem; color: var(--text-secondary); } .architecture-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .detail-card { background-color: var(--card-bg); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.5rem; transition: all var(--transition-normal); } .detail-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow); border-color: var(--accent); } .detail-icon { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; } .detail-title { font-size: 1.25rem; margin-bottom: 0.75rem; } /* Technology Cards */ .tech-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; } .tech-card { background-color: var(--card-bg); border: 1px solid var(--border); border-radius: 0.75rem; padding: 2rem; transition: all var(--transition-normal); display: flex; flex-direction: column; } .tech-card:hover { transform: translateY(-10px); box-shadow: var(--card-shadow); border-color: var(--accent); } .tech-card.featured { background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05)); border-color: var(--accent); position: relative; overflow: hidden; } .tech-card.featured::before { content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px; background: var(--accent-gradient); transform: rotate(45deg) translate(20px, -60px); opacity: 0.3; } .tech-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 1.5rem; transition: all var(--transition-normal); } .tech-card:hover .tech-icon { transform: scale(1.1); text-shadow: var(--accent-glow); } .tech-title { font-size: 1.5rem; margin-bottom: 1rem; } .tech-description { color: var(--text-secondary); margin-bottom: 1.5rem; flex-grow: 1; } .tech-features { display: flex; flex-wrap: wrap; gap: 0.5rem; } .tech-feature { 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); } .tech-card:hover .tech-feature { background-color: rgba(59, 130, 246, 0.2); border-color: var(--accent); } /* Services Section Styles */ .services-info-banner { display: flex; align-items: center; gap: 1rem; background-color: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 0.75rem; padding: 1rem 1.5rem; margin-bottom: 2rem; } .info-icon { font-size: 1.5rem; color: var(--accent); } .services-grid { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 2rem; } .services-category { background-color: var(--card-bg); border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; transition: all var(--transition-normal); } .services-category:hover { transform: translateY(-5px); box-shadow: var(--card-shadow); border-color: var(--accent); } .category-title { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem; background-color: rgba(15, 23, 42, 0.5); border-bottom: 1px solid var(--border); font-size: 1.35rem; } .category-icon { color: var(--accent); } .service-items { display: flex; flex-direction: column; } .service-item { display: flex; align-items: center; padding: 1.25rem; border-bottom: 1px solid var(--border); transition: all var(--transition-normal); color: var(--text-primary); text-decoration: none; } .service-item:last-child { border-bottom: none; } .service-item.available { cursor: pointer; } .service-item.available:hover { background-color: rgba(15, 23, 42, 0.3); } .service-item:not(.available) { cursor: default; opacity: 0.85; } .service-icon { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; margin-right: 1rem; background-color: rgba(59, 130, 246, 0.1); border-radius: 0.5rem; font-size: 1.25rem; color: var(--accent); transition: all var(--transition-normal); } .service-item.available:hover .service-icon { background-color: rgba(59, 130, 246, 0.2); transform: scale(1.1); } .service-info { flex: 1; } .service-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; } .service-description { font-size: 0.9rem; color: var(--text-secondary); } .service-status { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; padding: 0.25rem 0.75rem; border-radius: 9999px; margin-left: 1rem; } .service-status.live { background-color: rgba(16, 185, 129, 0.1); color: var(--success); } .service-status.restricted { background-color: rgba(107, 114, 128, 0.1); color: var(--text-secondary); } .status-dot { width: 8px; height: 8px; border-radius: 50%; } .service-status.live .status-dot { background-color: var(--success); } .service-status.restricted .status-dot { background-color: var(--text-secondary); } /* Projects */ .projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; } .project-card { background-color: var(--card-bg); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.5rem; transition: all var(--transition-normal); display: flex; flex-direction: column; } .project-card:hover { transform: translateY(-10px); box-shadow: var(--card-shadow); border-color: var(--accent); } .project-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; } .project-icon { font-size: 1.75rem; color: var(--accent); transition: all var(--transition-normal); } .project-card:hover .project-icon { transform: scale(1.1); text-shadow: var(--accent-glow); } .project-title { font-size: 1.25rem; margin: 0; } .project-description { color: var(--text-secondary); margin-bottom: 1.5rem; flex-grow: 1; } .project-tech { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.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); } .project-card:hover .tech-badge { background-color: rgba(59, 130, 246, 0.2); border-color: var(--accent); } .project-cta { margin-top: auto; } .btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; } /* Dashboards */ .dashboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; } .dashboard-card { background: rgba(255, 255, 255, 0.05); border-radius: 8px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; } .dashboard-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); } .dashboard-preview { height: 200px; background-size: cover; background-position: center; position: relative; } .dashboard-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; } .dashboard-card:hover .dashboard-overlay { opacity: 1; } .overlay-content { text-align: center; color: #ffffff; } .overlay-icon { font-size: 2rem; margin-bottom: 0.5rem; } .overlay-text { font-size: 1rem; opacity: 0.8; } .dashboard-info { padding: 1.5rem; } .dashboard-title { font-size: 1.25rem; margin-bottom: 0.5rem; color: #ffffff; } .dashboard-description { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 1rem; } .dashboard-cta .btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; } /* Preview Backgrounds */ .dashboard-preview.infrastructure { background-image: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); } .dashboard-preview.kubernetes { background-image: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%); } .dashboard-preview.network { background-image: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%); } .dashboard-preview.services { background-image: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%); } /* Logo Glow Effects */ .logo-text-glow { color: #ffffff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); transition: text-shadow 0.3s ease; } .logo-dot-glow { color: #ffffff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); transition: text-shadow 0.3s ease; } .logo:hover .logo-text-glow, .logo:hover .logo-dot-glow { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); } /* Login Button */ .login-button { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 4px; color: #ffffff; text-decoration: none; transition: all 0.3s ease; } .login-button:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.3); } @media (max-width: 1200px) { .dashboard-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .dashboard-grid { grid-template-columns: 1fr; } .signin-container { top: 4.5rem; right: 1rem; } } /* Sign In Button */ .signin-container { position: fixed; top: 1rem; right: 1rem; z-index: 1001; } .signin-button { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 4px; color: #ffffff; text-decoration: none; transition: all 0.3s ease; font-size: 0.9rem; } .signin-button:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); } /* Top Links */ .top-links { position: fixed; top: 1rem; right: 1rem; z-index: 1001; display: flex; align-items: center; gap: 1rem; } .laforceit-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 4px; color: #ffffff; text-decoration: none; transition: all 0.3s ease; font-size: 0.9rem; } .laforceit-link:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); } .signin-button { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 4px; color: #ffffff; text-decoration: none; transition: all 0.3s ease; font-size: 0.9rem; } .signin-button:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); } /* Responsive adjustments */ @media (max-width: 768px) { .top-links { top: 4.5rem; right: 1rem; } } /* Under Construction Warning */ .construction-warning { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1000; background: rgba(15, 23, 42, 0.95); border: 1px solid rgba(59, 130, 246, 0.3); border-radius: 8px; padding: 2rem; text-align: center; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } .warning-content { display: flex; flex-direction: column; align-items: center; gap: 1rem; } .warning-content i { font-size: 3rem; color: #f59e0b; } .warning-content h2 { color: #f59e0b; font-size: 1.5rem; margin: 0; } .warning-content p { color: #94a3b8; margin: 0; max-width: 300px; }