/* HERO SECTION */
.hero-section {
    min-height: 70vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


/* soft decorative shapes */
.hero-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 420px;
    height: 420px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.95;
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 520px;
}
.hero-buttons .btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
}

.hero-buttons .btn-outline-primary {
    color: #1b1b1b;
    border-color: #0f31d8;
}

.hero-buttons .btn-outline-primary:hover {
    background-color: #ffffff;
    color: #f4e003;
    font-weight: bold;
}
.hero-image {
    max-width: 380px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

#experience .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#experience .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* PROJECTS SECTION */
.project-card img {
    height: 200px;
    object-fit: cover;
}

.project-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 14px;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(0,0,0,0.15);
}


.project-card .badge {
    font-weight: 500;
}

/* SKILLS SECTION */
#skills .skill-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

#skills .skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

#skills .skill-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

#skills h5 {
    margin-bottom: 10px;
}



/* Highlighted keywords */
.highlight {
    color: #0d6efd;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.contact-card {
    border-radius: 16px;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
}

.contact-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-link {
    color: #0d6efd;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}
/* NAVBAR */
.custom-navbar {
    background: rgba(13, 110, 253, 0.95);
    backdrop-filter: blur(6px);
}

.navbar-brand {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: 500;
    margin-left: 10px;
}

.nav-link:hover {
    color: #ffd43b !important;
}

/* SMOOTH SCROLLING */
section {
    scroll-margin-top: 90px;
}
html {
    scroll-behavior: smooth;
}

/* PROFILE SECTION */
.profile-card {
    background: #ffffff;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.profile-lead {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #212529;
}

.profile-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #495057;
}

/* GALLERY SECTION */
.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: 180px;   /* SMALLER SIZE */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.14);
}

.btn-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Custom Viber color */
.btn-purple {
    background-color: #7360f2;
    color: #fff;
}

.btn-purple:hover {
    background-color: #5b48d6;
    color: #fff;
}
