/* ── Navbar Animations ── */
.navbar a,
.navbar ul li {
    opacity: 0;
    animation: slideRight 1.5s ease-in-out forwards;
    animation-delay: calc(0.2s * var(--i));
}

@keyframes slideRight {
    0%   { opacity: 0; transform: translateX(-80px); }
    100% { opacity: 1; transform: translateX(0); }
}


/* ── Hero Image ── */
.hero-image-animation {
    opacity: 0;
    animation: zoomBounce 2s ease-in-out forwards;
    animation-delay: 1s;
}

@keyframes zoomBounce {
    0%   { opacity: 0; transform: scale(0.5) rotate(-40deg); }
    50%  {             transform: scale(1.1) rotate(0); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}


/* ── Hero Content ── */
.hero-content-animation > * {
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
    animation-delay: calc(0.5s * var(--i));
}

@keyframes fadeInUp {
    0%   { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* ── Stats Section ── */
.stats-animation {
    opacity: 0;
    animation: fadeInUp 2s ease-in-out forwards;
    animation-delay: 2s;
}


/* ── About section ── */
.about {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.about.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.about h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.about h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.about p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    font-size: 1rem;
    margin: 10px 0;
    color: var(--text-secondary);
}

.about .about-image {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.about .about-image img {
    border-radius: 50%;
    z-index: 2;
    position: relative;
}

.about .about-image .background-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 40px rgba(201,150,58,.35), 0 0 80px rgba(196,126,138,.2);
}


/* ── Highlight ── */
.highlight {
    color: var(--gold) !important;
}


/* ── Social Icons (global) ── */
.social-icons {
    margin-bottom: 20px;
}

.social-icon {
    margin-right: 15px;
    color: var(--gold);
    font-size: 1.75rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--rose);
}


/* ── Buttons (Bootstrap overrides) ── */
.btn-primary {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    border-color: transparent;
    border-radius: 50px;
    font-size: 1rem;
    padding: 12px 30px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 5px 15px rgba(201,150,58,.35);
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 5px 25px rgba(201,150,58,.5);
}


/* ── Circle image (hero) ── */
.image-container { position: relative; }

.image-circle {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--gold-light), var(--rose));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 40px rgba(201,150,58,.3);
    margin: 0 auto;
    position: relative;
}

.profile-img {
    width: 460px;
    height: 460px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
}


/* ── About Me circle image ── */
.about-image-container { position: relative; }

.about-image-circle {
    width: 300px;
    height: 300px;
    background-color: transparent;
    border: 5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.profile-img-a {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
}


/* ── About Me section ── */
.about-me {
    color: var(--text-primary);
    padding: 80px 0;
}

.about-me h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
}

.about-me h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.about-me p {
    font-size: 1.05rem;
    margin-bottom: 28px;
    color: var(--text-muted);
}


/* ── Services ── */
.my-services {
    color: var(--text-primary);
}

.my-services h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
}

.service-card {
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--gold);
}

.service-icon {
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 20px;
}


/* ── Responsive ── */
@media (max-width: 768px) {
    .image-circle {
        width: 300px;
        height: 300px;
        margin-top: 20px;
    }

    .profile-img {
        width: 280px;
        height: 280px;
    }

    .about-me { text-align: center; }
    .about-image-circle { margin-bottom: 30px; }
}

@media (max-width: 480px) {
    .image-circle  { width: 240px; height: 240px; }
    .profile-img   { width: 220px; height: 220px; }
}
