#overview{
    padding: 120px 0 80px;
    margin-top: 56px;
}

section {
    padding: 80px 0;
}

 

 /* Navigation styles */
.custom-navbar {
    padding: 1rem 0;
    background-color: transparent;
    border-radius: 50px;
    width: 80%;
    max-width: 1000px; 
    margin: 0 auto; 
    height: 60px; 
    display: flex;
    align-items: center; 
    justify-content: center;
}

.nav-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-pills {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}


.nav-item {
    margin: 0 0.5rem;
}

.nav-divider {
    color: #888;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #865efe;
    background-color: rgba(200, 182, 255, 0.346);
    border-radius: 50px;
}

.nav-link.active {
    color: white;
    background-color: #C8B6FF;
    font-weight: 500;
    
}

/* Override Bootstrap's text-primary color */
.text-primary {
    color:#865efe !important;
}

/* media queries */
@media (max-width: 991.98px) {
    /* Adjust navbar for mobile */
    .custom-navbar {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
        border-radius: 15px;
    }
    
    /* Make sure the collapse works properly */
    .navbar-collapse {
        width: 100%;
    }
    
    /* Adjust container on mobile */
    .nav-container {
        width: 100%;
    }
    
    /* Stack nav pills vertically on mobile */
    .nav-pills {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    /* Add spacing between nav items */
    .nav-item {
        margin: 0.25rem 0;
        width: 100%;
        text-align: center;
    }
    
    /* Style the toggle button */
    .navbar-toggler {
        margin: 0.5rem;
        padding: 0.25rem 0.5rem;
        border: none;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
}



 /* Resume Styles */
.resume-container {
    height: 80vh;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.resume-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.download-btn {
    margin-top: 20px;
}

/*Project styles*/
.project-card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    margin-bottom: 30px;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.project-desc {
    color: #6c757d;
    margin-bottom: 1rem;
}

.arrow-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #865efe;
    transition: all 0.3s;
}

.arrow-link:hover {
    background-color: #865efe;
    color: white;
}

.section-intro {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.category-title {
    margin: 40px 0 20px;
    font-size: 1.8rem;
    color: #865efe;
}


/*Button Styles*/


.btn-custom {
    background-color: #865efe;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #7146ec;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #865efe;
    border: 2px solid #865efe;
}

.btn-outline:hover {
    background-color: rgba(134, 94, 254, 0.1);
}

.btn-lg {
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
}


/* Additional CSS for color updates */

/* Overview Section Gradient Background */
#overview {
    background: linear-gradient(135deg, #C8B6FF 0%, white 100%);
}

/* Design Process Card Colors */
#design-process .card {
    background-color: #f1fec9;
}

/* Super Powers Section */
#super-powers {
    background: linear-gradient(-135deg, #C8B6FF 0%, white 100%) !important;
}

#super-powers .card {
    background-color: #c9faff;
}

/* Beyond Design Section */
#beyond-design {
    background: linear-gradient(-150deg, #C8B6FF 0%, white 100%) !important;
}

/* Overview Title Color */

#overview h2.text-secondary {

    color: #000000 !important; 

}

/* Reduce space between navbar and hero section */

#overview {

    padding-top: 60px; 

    margin-top: 20px; 

}

/*image restrictions*/
.image-container {
    position: relative;
}

.image-container img {
    pointer-events: none;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* Image protection for carousel */
.carousel-item {
    position: relative;
}

.carousel-item img {
    pointer-events: none;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}