.hero{min-height:100vh;padding-top:70px;background:linear-gradient(to bottom right,var(--pale-green) 0,var(--white) 100%)}.hero,.hero-container{display:flex;align-items:center}.hero-container{justify-content:space-between;gap:2rem}.hero-content{flex:1;max-width:600px}.hero-title{font-size:3rem;font-weight:700;margin-bottom:1rem;color:var(--heading-color)}.hero-subtitle{font-size:1.75rem;font-weight:600;margin-bottom:1.5rem;color:var(--medium-green)}.highlight{color:var(--light-green)}.hero-description{font-size:1.125rem;color:var(--foreground);margin-bottom:2rem;line-height:1.6}.hero-buttons{display:flex;gap:1rem}.hero-image-container{flex:1;display:flex;justify-content:center;align-items:center}.profile-image-wrapper{position:relative;width:300px;height:300px;border-radius:50%;overflow:hidden;box-shadow:0 0 20px rgba(0,0,0,.1);border:5px solid var(--pale-green)}.profile-image{object-fit:cover;width:100%;height:100%}@media (max-width:992px){.hero-title{font-size:2.5rem}.hero-subtitle{font-size:1.5rem}}@media (max-width:768px){.hero-container{flex-direction:column-reverse;text-align:center;padding:2rem 1rem}.hero-content{max-width:100%}.hero-buttons{justify-content:center}.profile-image-wrapper{width:250px;height:250px;margin-bottom:2rem}.profile-image{object-position:center}}@media (max-width:480px){.hero-title{font-size:2rem}.hero-subtitle{font-size:1.25rem}.hero-description{font-size:1rem}.profile-image-wrapper{width:200px;height:200px}}.about{background-color:var(--white)}.section-title{margin-bottom:3rem;color:var(--dark-green);position:relative}.section-title:after{content:"";position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);width:60px;height:3px;background-color:var(--light-green)}.about-content{display:flex;gap:2rem}.about-text{flex:1}.about-text p{margin-bottom:1.5rem;line-height:1.7;color:var(--text-dark);font-size:1.1rem}.about-details{margin-top:2rem;display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:1rem}.detail-item{margin-bottom:.75rem}.detail-label{color:var(--dark-green);margin-right:.5rem}.detail-value{color:var(--text-dark)}.link{color:var(--light-green);transition:color .3s ease}.link:hover{color:var(--medium-green);text-decoration:underline}@media (max-width:768px){.about-content{flex-direction:column}.section-title{font-size:2rem;margin-bottom:2rem}.about-details{grid-template-columns:1fr}}@media (max-width:480px){.section-title{font-size:1.75rem}.about-text p{font-size:1rem}}.skills{background-color:var(--pale-green);padding:5rem 0}.skills-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}.skills-category{background-color:var(--card-bg);padding:1.5rem;border-radius:.5rem;box-shadow:0 5px 15px var(--shadow);transition:transform .3s ease}.skills-category:hover{transform:translateY(-5px)}.category-title{font-size:1.5rem;font-weight:600;color:var(--heading-color);margin-bottom:1.5rem;position:relative;padding-bottom:.5rem}.category-title:after{content:"";position:absolute;bottom:0;left:0;width:40px;height:2px;background-color:var(--light-green)}.skills-list{display:flex;flex-direction:column;gap:1.25rem}.skill-item{width:100%}.skill-info{display:flex;justify-content:space-between;align-items:center;margin-bottom:.5rem}.skill-name{font-size:1.1rem;font-weight:500;color:var(--foreground);margin:0}.skill-percentage{font-size:.9rem;font-weight:600;color:var(--medium-green)}.skill-bar{width:100%;height:10px;background-color:#e9ecef;border-radius:1rem;overflow:hidden}.skill-progress{height:100%;border-radius:1rem;background:linear-gradient(to right,var(--dark-green),var(--light-green));transition:width 1.5s ease-in-out}@media (max-width:992px){.skills-container{grid-template-columns:repeat(2,1fr)}}@media (max-width:768px){.skills-container{grid-template-columns:1fr}.category-title{font-size:1.3rem}.skill-name{font-size:1rem}}.projects{background-color:var(--white);padding:5rem 0}.section-title{color:var(--heading-color);text-align:center;font-size:2.5rem;font-weight:700;margin-bottom:1.5rem;transition:color .3s ease}.projects-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(350px,1fr));gap:2rem}.project-card{background-color:var(--card-bg);border-radius:8px;overflow:hidden;box-shadow:0 5px 15px var(--shadow);transition:transform .3s ease,box-shadow .3s ease,background-color .3s ease;height:100%;display:flex;flex-direction:column}.project-card:hover{transform:translateY(-10px);box-shadow:0 10px 25px rgba(0,0,0,.15)}.project-image{width:100%;height:200px;position:relative;overflow:hidden}.project-img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .5s ease}.project-card:hover .project-img{transform:scale(1.05)}.project-image-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--white);font-weight:700;overflow:hidden}.project-image-text{font-size:1.5rem;text-align:center;padding:1rem}.project-content{padding:1.5rem;flex-grow:1;display:flex;flex-direction:column}.project-title{font-size:1.5rem;font-weight:700;color:var(--heading-color);margin-bottom:1rem}.project-description{color:var(--foreground);margin-bottom:1.5rem;flex-grow:1}.project-tech{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.5rem}.tech-tag{background-color:var(--pale-green);color:var(--heading-color);padding:.25rem .75rem;border-radius:1rem;font-size:.85rem;font-weight:500}.project-links{display:flex;flex-wrap:wrap;gap:.75rem}.project-link{padding:.5rem 1rem;border-radius:.25rem;font-size:.9rem;font-weight:500;transition:all .3s ease;text-align:center}.project-link.github{background-color:var(--dark-green);color:var(--white)}.project-link.github:hover{background-color:#000}.project-link.live{background-color:var(--light-green);color:var(--white)}.project-link.live:hover{background-color:var(--medium-green)}.project-link.details{background-color:transparent;border:1px solid var(--medium-green);color:var(--medium-green)}.project-link.details:hover{background-color:var(--medium-green);color:var(--white)}@media (max-width:768px){.projects-grid{grid-template-columns:1fr}.project-title{font-size:1.3rem}.section-description{font-size:1rem}}.achievements{background-color:var(--pale-green);padding:5rem 0}.section-description{text-align:center;max-width:700px;margin:0 auto 3rem;color:var(--foreground);font-size:1.1rem}.achievements-container{display:flex;flex-direction:column;gap:3rem}.achievement-card{background-color:var(--card-bg);border-radius:.5rem;overflow:hidden;box-shadow:0 5px 15px var(--shadow);display:flex;flex-direction:column;transition:transform .3s ease,box-shadow .3s ease}.achievement-card:hover{transform:translateY(-5px);box-shadow:0 10px 25px rgba(0,0,0,.15)}.achievement-image-container{width:100%;height:300px;position:relative;overflow:hidden}.achievement-image{width:100%;height:100%;object-fit:contain;object-position:center;background-color:#f8f8f8;padding:1rem;transition:transform .5s ease}.achievement-card:hover .achievement-image{transform:scale(1.03)}.achievement-content{padding:1.5rem;flex-grow:1;display:flex;flex-direction:column}.achievement-title{font-size:1.5rem;font-weight:700;color:var(--heading-color);margin-bottom:.5rem}.achievement-organizer{color:var(--light-green);font-size:1rem;font-weight:500;margin-bottom:1rem}.achievement-details{display:flex;flex-wrap:wrap;gap:1.5rem;margin-bottom:1rem}.achievement-detail{display:flex;gap:.5rem}.detail-label{font-weight:600;color:var(--heading-color)}.detail-value{color:var(--foreground)}.project-link{color:var(--light-green);text-decoration:underline;transition:color .3s ease}.project-link:hover{color:var(--medium-green)}.achievement-description{margin-bottom:1.5rem;line-height:1.6;color:var(--foreground);flex-grow:1}.view-project-btn{display:inline-flex;align-self:flex-start;padding:.5rem 1rem;border-radius:.25rem;font-weight:500;color:var(--white);background-color:var(--medium-green);transition:background-color .3s ease;text-decoration:none}.view-project-btn:hover{background-color:var(--dark-green)}@media (min-width:768px){.achievement-card{flex-direction:row;align-items:stretch}.achievement-image-container{width:40%;height:auto}.achievement-content{width:60%}}@media (max-width:767px){.achievement-image-container{height:250px}.achievement-title{font-size:1.3rem}.section-description{font-size:1rem}}.contact{background-color:var(--pale-green);padding:5rem 0}.contact-container{display:grid;grid-template-columns:1fr 2fr;gap:3rem}.contact-info{color:var(--foreground)}.contact-info h3{font-size:1.75rem;font-weight:600;color:var(--heading-color);margin-bottom:1.5rem}.contact-info p{font-size:1.1rem;margin-bottom:2rem;line-height:1.6}.info-item{margin-bottom:1rem}.info-label{font-weight:600;color:var(--heading-color);margin-right:.5rem;display:block;margin-bottom:.25rem}.info-value{color:var(--foreground);transition:color .3s ease}a.info-value:hover{color:var(--light-green)}.contact-form-container{background-color:var(--card-bg);padding:2rem;border-radius:.5rem;box-shadow:0 5px 15px var(--shadow)}.contact-form{gap:1.5rem}.contact-form,.form-group{display:flex;flex-direction:column}.form-group{gap:.5rem}.form-group label{font-weight:500;color:var(--heading-color)}.form-group input,.form-group textarea{padding:.75rem;border:1px solid #e2e8f0;border-radius:.25rem;font-size:1rem;transition:border-color .3s ease}.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--medium-green);box-shadow:0 0 0 2px rgba(37,95,56,.2)}.submit-btn{margin-top:1rem;width:100%}.form-status{margin-top:1rem;padding:.75rem;border-radius:.25rem;text-align:center;font-weight:500}.form-status.success{background-color:rgba(0,200,81,.1);color:#00a550}.form-status.error{background-color:rgba(255,0,0,.1);color:#e53e3e}@media (max-width:992px){.contact-container{grid-template-columns:1fr}}@media (max-width:768px){.contact-info h3{font-size:1.5rem}.contact-info p{font-size:1rem}.contact-form-container{padding:1.5rem}}