:root {
    --primary-color: #0d6efd;
    --primary-dark: #0A2A9F;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --transition: all 0.3s ease;
    --border-radius: 0.375rem;
    --transition-speed: 0.3s;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

.hero {
    background-color: #000000;
    background-image: linear-gradient(135deg, #000212 0%, #171c21 100%);
    color: white;
    min-height: 100vh;
    padding: 180px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: #000000;
    background-image: linear-gradient(135deg, #000212 0%, #171c21 100%);
    z-index: 0;
    will-change: transform;
    pointer-events: none;
}

.hero-bg-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern.svg') repeat;
    opacity: 0.05;
    z-index: 1;
}

.hero-bg-parallax::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern.svg') repeat;
    opacity: 0.05;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
    color: white;
}

.hero-name {
    font-family: 'Bangers', cursive !important;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: white;
}

.hero-name .text-primary {
    color: var(--primary-dark) !important;
    text-shadow: 0 2px 4px rgba(10, 42, 159, 0.3);
}

.hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.00rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.typed-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    transform: translateY(-5px) rotate(5deg);
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

.social-icon.github:hover {
    background-color: #333;
    box-shadow: 0 5px 15px rgba(51, 51, 51, 0.4);
}

.social-icon.twitter:hover {
    background-color: #1da1f2;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
}

.section-divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    margin-bottom: 40px;
    border-radius: 2px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.back-to-top:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

.back-to-top.show {
    animation: pulseIn 0.6s ease-out;
}

@keyframes pulseIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    50% {
        transform: scale(1.1) translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 991.98px) {
    .hero {
        padding: 150px 0 50px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 120px 0 40px;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero .btn {
        font-size: 0.9rem;
        padding: 0.45rem 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 10px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-divider {
        margin-bottom: 30px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 100px 0 30px;
    }

    .hero h1 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.8rem;
    }

    .hero .btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.85rem;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        margin-right: 8px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-divider {
        width: 50px;
        height: 3px;
        margin-bottom: 25px;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

@media (max-width: 375px) {
    .hero {
        padding: 90px 0 20px;
    }

    .hero h1 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 0.75rem;
    }

    .hero .btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.8rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-right: 8px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-divider {
        width: 40px;
    }

    .back-to-top {
        bottom: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-parallax {
        transform: none !important;
    }

    .hero,
    .hero-bg-parallax,
    .social-icon,
    .back-to-top {
        transition: none !important;
        animation: none !important;
    }
}

/* Hero Availability Status */
.hero-availability {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    margin-top: -5px;
}

.hero-availability span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-availability span:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Optional: Add a subtle glow effect on hover */
.hero-availability span:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(13, 110, 253, 0.1);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-availability {
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-availability span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 575.98px) {
    .hero-availability {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-availability span {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 375px) {
    .hero-availability span {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}