* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Space Grotesk;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

.gradient-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(26, 151, 47, 0.3), transparent 100%),
              radial-gradient(circle at 80% 80%, rgba(46, 213, 115, 0.3), transparent 50%),
              radial-gradient(circle at 40% 20%, rgba(16, 172, 132, 0.2), transparent 50%);
  filter: blur(100px);
  opacity: 0.4;
  z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-family: Hermit;
    font-weight:100;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1a972f 0%, #10ac84 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
    font-size: 0.95rem;
}

nav a:hover {
    color: #1a972f;
}

.hero {
    padding: 8rem 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, #1a972f 0%, #10ac84 50%, #2ed573 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family:Hermit;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #1a972f 0%, #10ac84 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(26, 151, 47, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(26, 151, 47, 0.2);
}

.hero-image {
    position: relative;
}

.floating-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2rem;
    animation: float 6s ease-in-out infinite;
}

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

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(26, 151, 47, 0.3);
    object-fit: cover;
}

.stat {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat:last-child {
    border-bottom: none;
}

.stat-label {
    color: rgba(255,255,255,0.5);
}

.stat-value {
    font-weight: 700;
    color: #fff;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
}

.projects {
    padding: 6rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(26, 151, 47, 0.5);
    box-shadow: 0 20px 60px rgba(26, 151, 47, 0.2);
}

.project-image {
    height: 250px;
    background: linear-gradient(135deg, #1a972f 0%, #10ac84 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.project-image.project-2 {
    background: linear-gradient(135deg, #10ac84 0%, #2ed573 100%);
    
}

.project-image.project-3 {
    background: linear-gradient(135deg, #2ed573 0%, #7bed9f 100%);
}

.project-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family:Hermit;
    font-weight: 800;
}

.project-desc {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.4rem 1rem;
    background: rgba(26, 151, 47, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.skills {
    padding: 6rem 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s;
}

.skill-card:hover {
    background: rgba(26, 151, 47, 0.1);
    border-color: rgba(26, 151, 47, 0.5);
    transform: scale(1.05);
}

.skill-name {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact {
    padding: 6rem 0;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
    display: block;
}

.contact-item:hover {
    background: rgba(26, 151, 47, 0.1);
    border-color: rgba(26, 151, 47, 0.5);
    transform: translateY(-5px);
}

.contact-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-weight: 600;
    font-size: 1.1rem;
}

footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 0 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    nav {
        display: none;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}


   
