.hero {
    padding: 100px 20px 80px 20px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(0, 123, 255, 0.1), transparent 50%);
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #FFFFFF;
    text-shadow: 
        -1px -1px 0 #007BFF,  
         1px -1px 0 #007BFF,
        -1px  1px 0 #007BFF,
         1px  1px 0 #007BFF;
    line-height: 1.2;
    animation: fadeInDown 1s ease-out;
}

.hero h2 {
    font-size: 1.3em;
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    color: #a0a0a0;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.hero-subtext {
    font-size: 1.3em;
    font-weight: 400;
    max-width: 750px;
    margin: 20px auto 40px auto;
    line-height: 1.7;
    color: #a0a0a0;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.cta-buttons {
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.cta-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #007BFF;
    color: #007BFF;
}
.cta-button.secondary:hover {
    background: #007BFF;
    color: #fff;
}

.home-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.home-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.home-section:last-child {
    border-bottom: none;
}

.home-section h2 {
    font-size: 2.8em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.home-section p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #a0a0a0;
    max-width: 750px;
    margin: 0 auto 30px auto;
    cursor: default;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    text-align: left;
    margin-top: 40px;
}

.skill-card {
    background: #1a222b;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: #007BFF;
}

.skill-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #007BFF;
    font-size: 1.3em;
    font-weight: 600;
}

.skill-card p {
    margin-bottom: 0;
    font-size: 1em;
    line-height: 1.6;
    color: #a0a0a0;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5em; }
    .hero h2 { font-size: 1.1em; }
    .home-section h2 { font-size: 2.2em; }
}

.scroll-down-indicator {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    color: #a0a0a0;
    font-size: 1.8em;
    cursor: pointer;
    transition: color 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-down-indicator:hover {
    color: #007BFF;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}