nav{
    background-color: #052523 !important;
    top: 0;
}

.intro-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    background-color: #052523;
    padding: 70px 20px;
    /* gap: 30px;    */
    z-index: 0; 
}
.product-presentation {
    width: 100%;
    max-width: 650px;
    transition: transform 0.3s ease;
}

.product-presentation:hover {
    transform: scale(1.05);
}

.label {
    font-size: 30px !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, rgba(245, 245, 220, 0.8), rgba(255, 255, 255, 0.1));
    padding: 5px 10px;
    border-radius: 5px;
}

.details h1 {
    font-size: 40px;
    font-weight: bold;
    color: #f5f5dc;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.details h6 {
    margin-top: 40px;
    font-size: 18px;
    color: #f5f5dc;
    text-decoration: underline;
}

.details p {
    font-size: 15px;
    color: #dcdcdc;
    margin-top: 10px;
}

.tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
   
}

.tool-item {
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.tool-item:hover {
    transform: scale(1.3);
    box-shadow: 0 5px 10px rgba(255, 255, 255, 0.2);
}

.tooltip {
    position: absolute;
    bottom: -70%;
    left: 50%;
    transform: translateX(-50%);
    color: #F5F5DC;
    padding: 5px 10px;
    background-color: #138b85e7;
    border-radius: 5px;
    font-size: 10px;
    opacity: 0;
    font-weight: 400 !important;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.tool-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .intro-section {
        flex-direction: column;
        padding: 20px 10px;
        gap: 20px;
        margin-top: 70px !important;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 20px !important;
    }

    .details{
        width: 100%;
        max-width: 100%;
    }

    .details h1 {
        font-size: 28px;
    }

    .label {
        font-size: 20px !important;
        width: 400px;
        margin: 0 auto;
    }

    .product-presentation {
        max-height: 300px;
    }

    .tools{
        justify-content: center;
    }

    .tool-item:hover {
        transform: scale(1.1); /* Less aggressive hover on mobile */
    }

}

@media screen and (max-width: 480px) {
    .intro-section {
        padding: 15px 5px;
        margin-top: 70px !important;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 20px !important;
    }
    #home-item{
        background-color: transparent !important;        
    }

    .details h1 {
        font-size: 24px;
    }

    .label {
        font-size: 15px !important;
        width: 200px;
        margin: 0 auto;
    }

    .product-presentation {
        max-height: 250px;
    }

    .tools {
        gap: 15px;
        justify-content: center;
    }
}

/* MAIN SECTION */
.main{
    width: 100%;
    max-width: 600px;
    word-wrap: break-word;
    margin: 0 auto !important;
    z-index: 1;
    margin-top: 70px !important;
}
.main p{
    margin-top: 20px;
}
.problem-statement, .solution, .design-process, .impact{
    margin-top: 40px;
}

/* DESIGN PROCESS */
.design-process {
    color: #052523;
}

.design-process h3 {
    margin-bottom: 20px;
}

.process {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.process-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 300px;
    max-width: 300px;
    background-color: #0C5450;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* height: 45vh; */
}

.process-detail:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #F5F5DC;
    color: #0C5450;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 10px;
    font-size: 1.3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.process-detail .title {
    font-size: 15px;
    font-weight: bold;
    color: #F5F5DC;
}

.process-detail p {
    font-size: 13px;
    line-height: 1.5;
    color: #F5F5DC;
}

@media (max-width: 768px) {
    .process {
        flex-direction: column;
        align-items: center;
    }

    .main{
        margin-top: 40px;
        padding: 10px;
    }
}


/* IMPACT */
.impact p{
    background-color: #0C5450;
    padding: 20px;
    border-radius: 10px;
}

.design-button{
    border: 3px solid #0C5450;
    border-radius: 5px;
    text-decoration: none;
    color: #F5F5DC;
    padding: 2px 20px;
    width: 100%;
    text-align: center;
}
.design-button:hover{
    background-color: #0C5450;
}
.cta-button{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 10px;
}