/* ============================
   BASE STYLES (FROM YOUR ORIGINAL CSS)
============================ */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background: #F9FAFB;
    color: #1F2937;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus,
.form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.hero {
    min-height: 90vh;
    background: url('https://images.unsplash.com/photo-1590080877074-c34f23c1f382?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 12px;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #C7A17A;
        border-radius: 2px;
    }

.timeline-item {
    position: relative;
    padding: 1rem 3rem 1rem 1rem;
    margin-bottom: 1.5rem;
}

    .timeline-item .dot {
        position: absolute;
        left: 4px;
        top: 1.25rem;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #C7A17A;
        box-shadow: 0 4px 12px rgba(199,161,122,0.35);
        margin-right: 1rem;
    }

.service-icon {
    font-size: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0D3B66;
    color: white;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(2,6,23,0.15);
}

.progress {
    height: 10px;
    border-radius: 6px;
    overflow: hidden;
    background: #e5e7eb;
}

.progress-bar {
    height: 100%;
    background: #0D3B66;
}

.skill-bar {
    transition: width 1s ease-in-out;
}

/* ============================
   NEW PROFESSIONAL ANIMATIONS
============================ */

/* HERO IMAGE */
.hero img {
    transition: transform 0.8s ease, filter 0.8s ease;
}

    .hero img:hover {
        transform: scale(1.07) rotate(-0.5deg);
        filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
    }

/* SKILLS PROGRESS BAR */
.skill-bar-container {
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    height: 12px;
}

.skill-bar {
    height: 100%;
    width: 0%;
    background: #C7A17A;
    border-radius: 6px;
    transition: width 1.2s ease-in-out;
}

/* SERVICE CARDS */
.service-card {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.7s ease-out;
}

    .service-card.visible {
        transform: translateY(0);
        opacity: 1;
    }

    .service-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 20px 45px rgba(0,0,0,0.2);
    }

/* EXPERIENCE TIMELINE */
.timeline-item {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.7s ease-out;
}

    .timeline-item.visible {
        opacity: 1;
        transform: translateX(0);
    }

/* CERTIFICATES / GALLERY */
.group img {
    transition: transform 0.6s ease;
}

.group:hover img {
    transform: scale(1.1);
}

#galleryImage {
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

    #galleryImage.show {
        transform: scale(1);
    }

/* TESTIMONIALS */
#testimonials .testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease-out;
}

    #testimonials .testimonial-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

