/* === Hero Section === */
.hero-section {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
    text-align: center;
}

/* === Profile Image === */
.profile-pic img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #0c4b8f;
    box-shadow: 0 8px 16px rgba(0, 75, 143, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .profile-pic img:hover {
        transform: scale(1.08) rotate(2deg);
        box-shadow: 0 12px 24px rgba(0, 75, 143, 0.4);
    }

/* === Hero Heading === */
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #012041;
    margin-top: 20px;
}

.text-primary {
    color: #0c4b8f;
}

/* === Project Card === */
.project-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .project-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

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

/* === Card Body === */
.card-body {
    padding: 24px;
    background-color: #fdfdfd;
}

/* === Technology Tags === */
.tech-tags {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .tech-tags span {
        background-color: #e3f2fd;
        color: #0c4b8f;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
    }

/* === Form Styles === */
.form-label {
    font-weight: 600;
    color: #0c4b8f;
}

.form-control:focus {
    border-color: #0c4b8f;
    box-shadow: 0 0 0 0.25rem rgba(12, 75, 143, 0.25);
}

/* === Validation Messages === */
.validation-summary-valid {
    display: none;
}

.validation-summary-errors ul {
    list-style: none;
    padding-left: 0;
    color: #d32f2f;
    font-weight: 500;
}

/* === Success Alert === */
.alert-success {
    border-left: 5px solid #4caf50;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .profile-pic img {
        width: 180px;
        height: 180px;
    }

    .card-body {
        padding: 16px;
    }

    .tech-tags span {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}


.skill-bar {
    animation: fadeInUp 0.6s ease-in-out;
}

    .skill-bar .progress {
        height: 10px;
        background-color: #e0e0e0;
        border-radius: 50px;
        overflow: hidden;
    }

    .skill-bar .progress-bar {
        background: linear-gradient(90deg, #00ff99, #00c2ff);
        transition: width 1s ease-in-out;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.project-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

    .project-card img {
        width: 100%;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        object-fit: cover;
    }

.tech-tags span {
    background-color: #f0f0f0;
    padding: 4px 10px;
    margin: 2px;
    border-radius: 20px;
    font-size: 0.85rem;
}



.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 24px;
    margin-top: 20px;
}

    .social-icons a {
        color: #00c2ff;
        transition: transform 0.3s ease, color 0.3s ease;
    }

        .social-icons a:hover {
            color: #00ff99;
            transform: scale(1.3);
        }



.info-card {
    background-color: #1c1c1c;
    color: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

    .info-card:hover {
        transform: scale(1.05);
    }

    .info-card i {
        color: #00ff99;
        margin-bottom: 10px;
    }



.routes-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .routes-list li a {
        text-decoration: none;
        color: #00c2ff;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .routes-list li a:hover {
            color: #00ff99;
        }




.contact-form {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

    .contact-form input,
    .contact-form textarea {
        border-radius: 8px;
        border: 1px solid #ccc;
        padding: 10px;
        font-size: 1rem;
    }

    .contact-form button {
        background: linear-gradient(90deg, #00ff99, #00c2ff);
        border: none;
        color: white;
        font-size: 1.1rem;
        padding: 12px;
        border-radius: 8px;
        transition: background 0.3s ease;
    }

        .contact-form button:hover {
            background: linear-gradient(90deg, #00c2ff, #00ff99);
        }


.info-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.info-list i {
    color: #00ff99;
    margin-right: 8px;
}



.hero-section {
    background-image: url('/images/bg-dark.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    min-height: 100vh;
}

    .hero-section h1 {
        font-size: 3rem;
        font-weight: bold;
    }

.text-highlight {
    color: #00ff99;
}

.hero-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #00ff99;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

    .hero-image:hover {
        transform: scale(1.05);
    }




.hero-section {
    background-image: url('/images/bg-dark.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 100vh;
    padding: 100px 0;
}

.text-highlight {
    color: #00ff99;
}

.profile-pic img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #00ff99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

    .profile-pic img:hover {
        transform: scale(1.05);
    }

.action-buttons .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

    .action-buttons .btn:hover {
        transform: translateY(-2px);
    }
