@charset "UTF-8";.app{min-height:100vh;display:flex;flex-direction:column;background-color:var(--background-darker);color:var(--text-light);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif}.app main{flex:1;width:100%;display:flex;flex-direction:column}body{line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden}.header{position:fixed;top:0;left:0;width:100%;padding:1rem 0;background-color:var(--nav-bg);z-index:100;transition:all .3s ease}.header.scrolled{box-shadow:0 4px 10px #0000001a;padding:.7rem 0}.header-inner{max-width:1200px;margin:0 auto;padding:0 2rem;display:flex;align-items:center}.logo{font-size:1.8rem;font-weight:700;flex-shrink:0;display:flex;align-items:center;gap:.5rem;cursor:pointer;padding:.5rem;border-radius:.5rem;transition:all .3s ease}.logo:hover{background-color:var(--card-bg);transform:translateY(-2px)}.logo .logo-text{color:var(--primary-color);text-decoration:none;transition:all .3s ease}.logo .logo-theme-icon{opacity:.7;transition:all .3s ease}.logo:hover .logo-theme-icon{opacity:1;transform:rotate(15deg)}.navigation{margin-left:2rem}.navigation .nav-list{display:flex;list-style:none;gap:1.5rem}.navigation .nav-link{color:var(--text-color);text-decoration:none;position:relative;padding:.5rem 0;font-weight:500;transition:all .3s ease}.navigation .nav-link:hover{color:var(--primary-color)}.navigation .nav-link:after{content:"";position:absolute;width:0;height:2px;bottom:0;left:0;background-color:var(--primary-color);transition:all .3s ease}.navigation .nav-link:hover:after{width:100%}.theme-toggle-btn{margin-left:auto;background-color:var(--primary-color);border:1px solid var(--border-color);border-radius:20px;padding:.3rem .7rem;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 2px 5px #0000001a;transition:all .3s ease;position:relative;z-index:101}.theme-toggle-btn:hover{transform:translateY(-2px);box-shadow:0 4px 8px #00000026;background-color:var(--secondary-color)}.theme-toggle-btn svg{width:20px;height:20px;color:var(--button-text)}.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:.5rem;margin-left:1rem}.menu-toggle .hamburger{display:block;width:24px;height:2px;background-color:var(--primary-color);position:relative;transition:all .3s ease}.menu-toggle .hamburger:before,.menu-toggle .hamburger:after{content:"";position:absolute;width:24px;height:2px;background-color:var(--primary-color);transition:all .3s ease}.menu-toggle .hamburger.active{background-color:transparent}.menu-toggle .hamburger.active:before{top:0;transform:rotate(45deg)}.menu-toggle .hamburger.active:after{bottom:0;transform:rotate(-45deg)}@media (max-width: 768px){.header-inner{justify-content:space-between}.menu-toggle{display:block;order:3}.navigation{position:fixed;top:60px;left:0;width:100%;height:0;background-color:var(--nav-bg);overflow:hidden;transition:all .3s ease;z-index:100;margin-left:0}.navigation.open{height:auto;min-height:250px;padding:1rem 0;box-shadow:0 4px 10px #0000001a;border-bottom:2px solid var(--primary-color)}.navigation .nav-list{flex-direction:column;align-items:center;gap:1rem;padding:1rem 0;opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease}.navigation.open .nav-list{opacity:1;visibility:visible}.theme-toggle-btn{margin-right:1rem}}.greeting-section{padding:8rem 0 5rem;min-height:100vh;display:flex;align-items:center;background-color:var(--background-darker)}.greeting-container{width:100%;max-width:1440px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:1fr;gap:3rem}@media (min-width: 768px){.greeting-container{grid-template-columns:1fr 1fr;align-items:center}}.greeting-text-box .greeting-title{font-size:2.25rem;font-weight:700;color:var(--text-light);margin-bottom:1rem}@media (min-width: 768px){.greeting-text-box .greeting-title{font-size:3rem}}@media (min-width: 992px){.greeting-text-box .greeting-title{font-size:3.5rem}}.greeting-text-box .greeting-subtitle{font-size:1.125rem;color:var(--text-muted);margin-bottom:2rem;line-height:1.75;max-width:500px}.greeting-text-box .greeting-buttons{display:flex;gap:1rem;flex-wrap:wrap}.greeting-text-box .greeting-buttons .primary-button,.greeting-text-box .greeting-buttons .secondary-button{padding:.75rem 1.5rem;border-radius:4px;font-size:.875rem;font-weight:500;transition:all .2s ease;display:inline-block}.greeting-text-box .greeting-buttons .primary-button{background-color:var(--primary-color);color:#fff}.greeting-text-box .greeting-buttons .primary-button:hover{background-color:var(--primary-color-dark);transform:translateY(-3px)}.greeting-text-box .greeting-buttons .secondary-button{background-color:transparent;color:var(--text-light);border:1px solid var(--border-color)}.greeting-text-box .greeting-buttons .secondary-button:hover{border-color:var(--primary-color);color:var(--primary-color);transform:translateY(-3px)}.greeting-animation{width:100%;height:100%;min-height:300px;display:flex;justify-content:center;align-items:center;order:-1}@media (min-width: 768px){.greeting-animation{order:1}}.footer{background-color:var(--card-bg);padding:3rem 0 1rem;border-top:1px solid var(--border-color)}.footer .footer-content{display:flex;max-width:1200px;margin:0 auto;padding:0 2rem;justify-content:space-between;gap:2rem}@media (max-width: 768px){.footer .footer-content{flex-direction:column;text-align:center}}.footer .footer-info{flex:1;max-width:300px}.footer .footer-info h3{font-size:1.5rem;margin-bottom:1rem;color:var(--text-color)}.footer .footer-info p{color:var(--text-secondary);font-size:.9rem;line-height:1.6}@media (max-width: 768px){.footer .footer-info{max-width:100%}}.footer .footer-links{flex:1;max-width:200px}.footer .footer-links h4{font-size:1.2rem;margin-bottom:1rem;color:var(--text-color)}.footer .footer-links ul{list-style:none;padding:0}.footer .footer-links ul li{margin-bottom:.5rem}.footer .footer-links ul li a{color:var(--text-secondary);text-decoration:none;transition:color .3s ease;font-size:.9rem}.footer .footer-links ul li a:hover{color:var(--primary-color)}@media (max-width: 768px){.footer .footer-links{max-width:100%}}.footer .footer-social{flex:1;max-width:200px}.footer .footer-social h4{font-size:1.2rem;margin-bottom:1rem;color:var(--text-color)}.footer .footer-social .social-icons{display:flex;gap:1rem}@media (max-width: 768px){.footer .footer-social .social-icons{justify-content:center}}.footer .footer-social .social-icons a{font-size:1.3rem;color:var(--text-secondary);transition:all .3s ease}.footer .footer-social .social-icons a:hover{color:var(--primary-color);transform:translateY(-3px)}@media (max-width: 768px){.footer .footer-social{max-width:100%}}.footer .footer-bottom{max-width:1200px;margin:2rem auto 0;padding:1rem 2rem 0;border-top:1px solid var(--border-color);text-align:center}.footer .footer-bottom p{color:var(--text-secondary);font-size:.8rem}.top-button{position:fixed;bottom:2rem;right:2rem;width:3rem;height:3rem;background-color:var(--primary-color);color:#fff;border-radius:50%;display:flex;justify-content:center;align-items:center;cursor:pointer;transition:all .2s ease;z-index:10;opacity:0;visibility:hidden;transform:translateY(1rem)}.top-button.visible{opacity:1;visibility:visible;transform:translateY(0)}.top-button:hover{background-color:var(--primary-color-dark);transform:translateY(-3px)}.top-button svg{font-size:1.25rem}.splash-container{position:fixed;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;background-color:var(--background);z-index:9999}.splash-container .splash-animation-container{width:280px;height:280px;display:flex;align-items:center;justify-content:center}.splash-container .splash-animation-container .lottie-animation{width:100%;height:100%}.splash-container .splash-animation-container .animation-status{color:var(--text-color);font-size:1.2rem;text-align:center}.splash-container .splash-title-container{margin-top:2rem}.splash-container .splash-title-container .splash-title{color:var(--text-color);font-size:2rem;font-weight:600;text-align:center}.splash-screen{position:fixed;top:0;left:0;width:100%;height:100vh;display:flex;justify-content:center;align-items:center;background-color:var(--background-darker);z-index:1000}.logo-container{position:relative;display:flex;justify-content:center;align-items:center}.animation{position:absolute;width:200px;height:200px}.logo{font-size:3rem;font-weight:700;color:var(--primary-color);z-index:1}.skills-section{padding:5rem 0;background-color:var(--background-dark)}.skills-section .skills-container{width:100%;max-width:1440px;margin:0 auto;padding:0 2rem}.skills-section .section-title{text-align:center;font-size:1.875rem;color:var(--text-light);margin-bottom:1rem}.skills-section .section-subtitle{text-align:center;color:var(--text-muted);max-width:600px;margin:0 auto 3rem}.skills-section .skills-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:2rem}@media (min-width: 768px){.skills-section .skills-grid{grid-template-columns:repeat(3,1fr)}}@media (min-width: 992px){.skills-section .skills-grid{grid-template-columns:repeat(4,1fr)}}.skills-section .skill-card{background-color:var(--background-light);border-radius:8px;padding:2rem;transition:all .2s ease;border:1px solid var(--border-color);height:100%}.skills-section .skill-card:hover{transform:translateY(-5px);box-shadow:0 10px 20px #0000001a;border-color:var(--primary-color)}.skills-section .skill-card .skill-icon{font-size:2rem;color:var(--primary-color);margin-bottom:1rem}.skills-section .skill-card h3{font-size:1.125rem;color:var(--text-light);margin-bottom:1rem}.skills-section .skill-card p{color:var(--text-muted);font-size:.875rem}.projects-section{padding:5rem 0;background-color:var(--background-darker)}.projects-section .projects-container{width:100%;max-width:1440px;margin:0 auto;padding:0 2rem}.projects-section .section-title{text-align:center;font-size:1.875rem;color:var(--text-light);margin-bottom:1rem}.projects-section .section-subtitle{text-align:center;color:var(--text-muted);max-width:600px;margin:0 auto 2rem}.projects-section .project-filters{display:flex;justify-content:center;flex-wrap:wrap;gap:1rem;margin-bottom:3rem}.projects-section .project-filters button{background:none;border:1px solid var(--border-color);color:var(--text-muted);padding:.5rem 1rem;border-radius:30px;cursor:pointer;transition:all .2s ease;font-size:.875rem}.projects-section .project-filters button:hover,.projects-section .project-filters button.active{background-color:var(--primary-color);color:#fff;border-color:var(--primary-color)}.projects-section .projects-grid{display:grid;grid-template-columns:1fr;gap:2rem}@media (min-width: 768px){.projects-section .projects-grid{grid-template-columns:repeat(2,1fr)}}@media (min-width: 992px){.projects-section .projects-grid{grid-template-columns:repeat(3,1fr)}}.projects-section .project-card{background-color:var(--background-light);border-radius:8px;overflow:hidden;transition:all .2s ease;border:1px solid var(--border-color);height:100%;display:flex;flex-direction:column}.projects-section .project-card:hover{transform:translateY(-5px);box-shadow:0 10px 20px #0000001a}.projects-section .project-card:hover .project-overlay{opacity:1}.projects-section .project-card .project-image{position:relative;height:200px;overflow:hidden}.projects-section .project-card .project-image img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.projects-section .project-card .project-image .project-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#000000b3;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s ease}.projects-section .project-card .project-image .project-overlay .project-links{display:flex;gap:1rem}.projects-section .project-card .project-image .project-overlay .project-links a{padding:.5rem 1rem;background-color:var(--primary-color);color:#fff;border-radius:4px;font-size:.875rem;transition:background-color .3s ease}.projects-section .project-card .project-image .project-overlay .project-links a:hover{background-color:#3071d9}.projects-section .project-card .project-content{padding:1.5rem;flex:1;display:flex;flex-direction:column}.projects-section .project-card .project-content h3{font-size:1.25rem;color:var(--text-light);margin-bottom:1rem}.projects-section .project-card .project-content p{color:var(--text-muted);font-size:.875rem;margin-bottom:1rem;flex:1}.projects-section .project-card .project-content .project-tags{display:flex;flex-wrap:wrap;gap:.5rem}.projects-section .project-card .project-content .project-tags .project-tag{font-size:.875rem;color:var(--text-muted);background-color:var(--background-dark);padding:.25rem .5rem;border-radius:4px}.achievement-section{padding:5rem 0;background-color:var(--background-dark)}.achievement-section .achievement-container{width:100%;max-width:1440px;margin:0 auto;padding:0 2rem}.achievement-section .section-title{text-align:center;font-size:1.875rem;color:var(--text-light);margin-bottom:1rem}.achievement-section .section-subtitle{text-align:center;color:var(--text-muted);max-width:600px;margin:0 auto 3rem}.achievement-section .achievements-grid{display:grid;grid-template-columns:1fr;gap:2rem}@media (min-width: 768px){.achievement-section .achievements-grid{grid-template-columns:repeat(2,1fr)}}.achievement-section .achievement-card{background-color:var(--background-light);border-radius:8px;padding:2rem;transition:all .2s ease;border:1px solid var(--border-color);display:flex;align-items:flex-start;gap:1.5rem}.achievement-section .achievement-card:hover{transform:translateY(-5px);box-shadow:0 10px 20px #0000001a;border-color:var(--primary-color)}.achievement-section .achievement-card .achievement-icon{font-size:2rem;color:var(--primary-color);flex-shrink:0;width:50px;height:50px;display:flex;align-items:center;justify-content:center;background-color:rgba(var(--primary-color),.1);border-radius:50%}.achievement-section .achievement-card .achievement-content{flex:1}.achievement-section .achievement-card .achievement-content h3{font-size:1.125rem;color:var(--text-light);margin-bottom:.5rem}.achievement-section .achievement-card .achievement-content p{color:var(--text-muted);font-size:.875rem;margin-bottom:1rem}.achievement-section .achievement-card .achievement-content .achievement-date{display:block;font-size:.875rem;color:var(--text-muted);margin-bottom:.5rem}.achievement-section .achievement-card .achievement-content .achievement-link{color:var(--primary-color);font-size:.875rem;text-decoration:none}.achievement-section .achievement-card .achievement-content .achievement-link:hover{text-decoration:underline}.blogs-section{padding:5rem 0;background-color:var(--background-darker)}.blogs-section .blogs-container{width:100%;max-width:1440px;margin:0 auto;padding:0 2rem}.blogs-section .section-title{text-align:center;font-size:1.875rem;color:var(--text-light);margin-bottom:1rem}.blogs-section .section-subtitle{text-align:center;color:var(--text-muted);max-width:600px;margin:0 auto 3rem}.blogs-section .blogs-grid{display:grid;grid-template-columns:1fr;gap:2rem;margin-bottom:3rem}@media (min-width: 768px){.blogs-section .blogs-grid{grid-template-columns:repeat(2,1fr)}}@media (min-width: 992px){.blogs-section .blogs-grid{grid-template-columns:repeat(3,1fr)}}.blogs-section .blog-card{background-color:var(--background-light);border-radius:8px;overflow:hidden;transition:all .2s ease;border:1px solid var(--border-color);height:100%;display:flex;flex-direction:column}.blogs-section .blog-card:hover{transform:translateY(-5px);box-shadow:0 10px 20px #0000001a}.blogs-section .blog-card:hover .blog-image img{transform:scale(1.05)}.blogs-section .blog-card .blog-image{position:relative;height:200px;overflow:hidden}.blogs-section .blog-card .blog-image img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.blogs-section .blog-card .blog-image .blog-date{position:absolute;bottom:10px;right:10px;background-color:var(--primary-color);color:#fff;font-size:.875rem;padding:.25rem .75rem;border-radius:20px}.blogs-section .blog-card .blog-content{padding:1.5rem;flex:1;display:flex;flex-direction:column}.blogs-section .blog-card .blog-content .blog-category{color:var(--primary-color);font-size:.875rem;margin-bottom:.5rem}.blogs-section .blog-card .blog-content h3{font-size:1.125rem;color:var(--text-light);margin-bottom:1rem;line-height:1.3}.blogs-section .blog-card .blog-content p{color:var(--text-muted);font-size:.875rem;margin-bottom:1rem;flex:1}.blogs-section .blog-card .blog-content .read-more{color:var(--primary-color);font-size:.875rem;text-decoration:none;align-self:flex-start}.blogs-section .blog-card .blog-content .read-more:hover{text-decoration:underline}.blogs-section .blogs-cta{display:flex;justify-content:center}.blogs-section .blogs-cta .view-all-btn{display:inline-block;padding:.75rem 1.5rem;background-color:var(--primary-color);color:#fff;border-radius:4px;font-size:.875rem;font-weight:500;transition:background-color .3s ease}.blogs-section .blogs-cta .view-all-btn:hover{background-color:var(--primary-color-dark)}.contact-section{padding:5rem 0;background-color:var(--background-dark)}.contact-section .contact-container{width:100%;max-width:1440px;margin:0 auto;padding:0 2rem}.contact-section .section-title{text-align:center;font-size:1.875rem;color:var(--text-light);margin-bottom:1rem}.contact-section .section-subtitle{text-align:center;color:var(--text-muted);max-width:600px;margin:0 auto 3rem}.contact-section .contact-content{display:grid;grid-template-columns:1fr;gap:3rem}@media (min-width: 768px){.contact-section .contact-content{grid-template-columns:1fr 2fr}}.contact-section .contact-info .info-item{display:flex;align-items:flex-start;margin-bottom:2rem}.contact-section .contact-info .info-item .info-icon{width:50px;height:50px;background-color:rgba(var(--primary-color),.1);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-right:1rem;color:var(--primary-color);font-size:1.25rem;flex-shrink:0}.contact-section .contact-info .info-item .info-content h3{font-size:1.125rem;color:var(--text-light);margin-bottom:.25rem}.contact-section .contact-info .info-item .info-content p{color:var(--text-muted);font-size:.875rem}.contact-section .contact-info .info-item .info-content p a{color:var(--text-muted);transition:color .3s ease}.contact-section .contact-info .info-item .info-content p a:hover{color:var(--primary-color)}.contact-section .contact-info .social-links{display:flex;gap:1rem;margin-top:2rem;margin-left:3.75rem}.contact-section .contact-info .social-links a{width:40px;height:40px;border-radius:50%;background-color:var(--background-light);color:var(--text-muted);display:flex;align-items:center;justify-content:center;transition:all .3s ease}.contact-section .contact-info .social-links a:hover{background-color:var(--primary-color);color:#fff;transform:translateY(-3px)}.contact-section .contact-form{background-color:var(--background-light);padding:2rem;border-radius:8px;border:1px solid var(--border-color)}.contact-section .contact-form .form-group{margin-bottom:1.5rem}.contact-section .contact-form .form-group input,.contact-section .contact-form .form-group textarea{width:100%;padding:.75rem 1rem;border-radius:4px;border:1px solid var(--border-color);background-color:var(--background-darker);color:var(--text-light);font-size:.875rem;transition:border-color .3s ease}.contact-section .contact-form .form-group input:focus,.contact-section .contact-form .form-group textarea:focus{outline:none;border-color:var(--primary-color)}.contact-section .contact-form .form-group input::placeholder,.contact-section .contact-form .form-group textarea::placeholder{color:var(--text-muted)}.contact-section .contact-form .form-group textarea{resize:vertical}.contact-section .contact-form .submit-btn{display:inline-block;padding:.75rem 1.5rem;background-color:var(--primary-color);color:#fff;border-radius:4px;font-size:.875rem;font-weight:500;transition:background-color .3s ease;cursor:pointer;width:100%}.contact-section .contact-form .submit-btn:hover:not(:disabled){background-color:var(--primary-color-dark)}.contact-section .contact-form .submit-btn:disabled{opacity:.7;cursor:not-allowed}.contact-section .contact-form .submit-message{margin-top:1rem;padding:.75rem;border-radius:4px;font-size:.875rem;text-align:center}.contact-section .contact-form .submit-message.success{background-color:#2ecc711a;color:#2ecc71}.contact-section .contact-form .submit-message.error{background-color:#e74c3c1a;color:#e74c3c}.contact-section .form-success-message{background-color:var(--background-light);padding:2rem;border-radius:8px;border:1px solid var(--border-color);text-align:center;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.contact-section .form-success-message .success-icon{font-size:3rem;color:#2ecc71;margin-bottom:1rem}.contact-section .form-success-message h3{font-size:1.25rem;color:var(--text-light);margin-bottom:1rem}.contact-section .form-success-message p{color:var(--text-muted);font-size:.875rem}.contact-section .contact-form-container{height:100%}.contact-section .validation-error{color:#e74c3c;font-size:.75rem;margin-top:.25rem}.experience-card{background-color:var(--background-light);border-radius:8px;padding:2rem;margin-bottom:2rem;border:1px solid var(--border-color);transition:all .2s ease}.experience-card:hover{transform:translateY(-5px);box-shadow:0 10px 20px #0000001a;border-color:var(--primary-color)}.experience-card .experience-header{display:flex;align-items:center;margin-bottom:1.5rem}.experience-card .experience-header .company-logo{width:50px;height:50px;margin-right:1rem;overflow:hidden;border-radius:8px;flex-shrink:0;background-color:#fff;padding:5px}.experience-card .experience-header .company-logo img{width:100%;height:100%;object-fit:contain}.experience-card .experience-header .experience-title{flex:1}.experience-card .experience-header .experience-title h3{font-size:1.125rem;font-weight:700;color:var(--text-light);margin-bottom:.25rem}.experience-card .experience-header .experience-title .company-info{display:flex;flex-direction:column}@media (min-width: 768px){.experience-card .experience-header .experience-title .company-info{flex-direction:row;align-items:center}}.experience-card .experience-header .experience-title .company-info h4{font-size:1rem;color:var(--primary-color);margin-bottom:.25rem;font-weight:500}.experience-card .experience-header .experience-title .company-info h4 a{color:var(--primary-color);text-decoration:none}.experience-card .experience-header .experience-title .company-info h4 a:hover{text-decoration:underline}@media (min-width: 768px){.experience-card .experience-header .experience-title .company-info h4{margin-right:1rem;margin-bottom:0}}.experience-card .experience-meta{font-size:.875rem;color:var(--text-muted);display:flex;align-items:center}.experience-card .experience-content{margin-bottom:1.5rem}.experience-card .experience-content .responsibilities{list-style-type:none;padding-left:1.5rem}.experience-card .experience-content .responsibilities li{color:var(--text-muted);font-size:.875rem;margin-bottom:.75rem;position:relative;line-height:1.75}.experience-card .experience-content .responsibilities li:before{content:"•";position:absolute;left:-1.5rem;color:var(--primary-color);font-size:1.2rem}.experience-card .experience-footer .technologies{display:flex;flex-wrap:wrap;gap:.5rem}.experience-card .experience-footer .technologies .tech-tag{background-color:var(--background-dark);color:var(--text-muted);font-size:.75rem;padding:.25rem .5rem;border-radius:4px;transition:all .2s ease}.experience-card .experience-footer .technologies .tech-tag:hover{background-color:#3b82f64d;color:var(--text-light)}.experience-section{padding:5rem 0;background-color:var(--background-dark)}.experience-section .experience-container{width:100%;max-width:1440px;margin:0 auto;padding:0 2rem}.experience-section .section-title{text-align:center;font-size:1.875rem;color:var(--text-light);margin-bottom:1rem}.experience-section .section-subtitle{text-align:center;color:var(--text-muted);max-width:600px;margin:0 auto 3rem}.experience-section .experience-timeline{position:relative;max-width:800px;margin:0 auto}.experience-section .experience-timeline:before{content:"";position:absolute;top:0;bottom:0;left:24px;width:2px;background-color:var(--border-color);display:none}@media (min-width: 768px){.experience-section .experience-timeline:before{display:block}}:root{--primary-color: #3b82f6;--primary-color-dark: #3071d9;--secondary-color: #6366f1;--background-dark: #f7f7f7;--background-darker: #ffffff;--background-light: #eaeaea;--text-light: #333333;--text-muted: #666666;--text-dark: #111111;--border-color: rgba(0, 0, 0, .1)}[data-theme=dark]{--primary-color: #3b82f6;--primary-color-dark: #3071d9;--secondary-color: #6366f1;--background-dark: #111827;--background-darker: #0a0f1c;--background-light: #1f2937;--text-light: #f3f4f6;--text-muted: #9ca3af;--text-dark: #1f2937;--border-color: rgba(255, 255, 255, .1)}*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth}body{background-color:var(--background-darker);color:var(--text-light);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden}a{color:inherit;text-decoration:none}button{background:none;border:none;cursor:pointer;font-family:inherit}[class^=fa-]{display:inline-block;width:1em;height:1em;background-color:currentColor;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center}
