:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --light-color: #f7f9fc;
    --dark-color: #2d3748;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.project-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    background: white;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.education-card {
    border-top: 5px solid var(--primary-color);
}

.skills-card {
    border-top: 5px solid var(--secondary-color);
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 35px;
}

.education-card .feature-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.skills-card .feature-list li::before {
    content: "\f0a4";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background-color: #e05a2b;
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-secondary-custom:hover {
    background-color: #003b6b;
}

.stat-badge {
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
}

.education-stat {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

.skills-stat {
    background-color: rgba(0, 78, 137, 0.1);
    color: var(--secondary-color);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.education-title::after {
    background-color: var(--primary-color);
}

.skills-title::after {
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .project-img {
        height: 200px;
    }
}