body {
    padding-top: 56px;
    background-color: #f2f6fc;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

/* Navbar */

.custom-navbar {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    padding: 0.75rem 1rem;
}

.navbar-brand {
    font-size: 1.25rem;
    color: #fff;
}

.navbar-nav .nav-link {
    color: #f8f9fa;
    margin-left: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff;
}

.nav-animated-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #fff;
    transition: 0.3s ease;
}

.nav-animated-link:hover::after,
.nav-animated-link.active::after {
    width: 100%;
}


/* Navbar End */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        /* url('https://images.unsplash.com/photo-1603791440384-56cd371ee9a7?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover; */
        url('https://andrejgajdos.com/wp-content/uploads/2019/07/the_toolkit_of_a_freelance_developer.jpg') no-repeat center center/cover;
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
}

.hero-section h1,
.hero-section p {
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}


/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #4f46e5;
    display: block;
    margin: 10px auto 0;
    border-radius: 10px;
}

/* Services */
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    color: #343a40;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #0d6efd;
    margin: 10px auto 0;
    border-radius: 2px;
}

.project-glow {
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-glow:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(13, 110, 253, 0.15);
}

#services,
#projects {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}



/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #4f46e5;
    font-weight: 600;
}

/* About */
.about-box {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-box:hover {
    transform: scale(1.01);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.animated-fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.animated-fade-in.delay-1 {
    animation-delay: 0.5s;
}

.animated-fade-in.delay-2 {
    animation-delay: 1s;
}

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

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

.about-bg-icon {
    z-index: 0;
}


/* Contact */
.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.icon-wrapper.bg-gradient-primary {
    background: linear-gradient(135deg, #0062ff, #60a5fa);
}

.icon-wrapper.bg-gradient-danger {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.pulse-animation {
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}




/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #ffffff;
}

.footer-icon {
    font-size: 2rem;
    color: #ffffff;
}

.footer p {
    margin: 0;
    opacity: 0.9;
}

.footer span {
    color: #fff;
}


/* Projects */
.icon-circle {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover .icon-circle {
    transform: scale(1.1);
}

.project-card {
    transition: all 0.4s ease-in-out;
    background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
}

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

.hover-shadow:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.transition {
    transition: all 0.3s ease-in-out;
}




@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.25rem;
    }

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