.research{
    padding-top: 12%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-image: url(../img/neon.png);
    background-size: 40%;
    background-position: 56% -102%;
    background-color: #faffe4;
}
.research .heading{
    text-align: left;
    color: black;
    font-size: calc(8vw + 0.1rem);
}
.hamburger-container {
    right:7rem;
}
header .logo {
    text-align: left;
    width: 22%;
}
header .row {
    margin: 0px auto;
    width: 75%;
    height: 100px;
    display: flex
;
    align-items: center;
    justify-content: space-between;
}

/* .research-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
} */

.research-intro h2 {
    color: #3e8d7a;
    margin-top: 4%;
    font-size: calc(4vw + 0.1rem);
    margin-bottom: 10px;
}

.main-themes h3 {
    font-size: calc(2vw + 0.1rem);
    color: #3e8d7a;
    margin: 20px 0 10px;
}

.theme {
    font-style: italic;
    color: #3e8d7a;
    opacity: 0.8;
}


.research-area {
    margin: 30px 0;
    padding: 20px;
    background: #acacac0a;
    border-radius: 5px;
    backdrop-filter: blur(6px);
    border-left: 4px solid #3e8d7a;
}
.research-area h4 {
    font-size: calc(1.5vw + 0.1rem);
    color: #3e8d7a;
    margin-bottom: 15px;
}

.research-area ul {
    list-style-type: square;
    padding-left: 20px;
}

.research-area li {
    margin: 8px 0;
    color: #333;
}

.research-container {
    overflow: hidden;
    position: relative;
}

.scroll-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    will-change: transform;
}

.research-section {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.research-section:hover {
    background: rgba(255, 255, 255, 0.2); /* Slightly more opaque on hover */
    transform: translateY(-5px); /* Lift the section slightly */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.animated-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 10px; /* Width of the line */
    height: 100%; /* Full height of the card */
    z-index: 1;
}

@media (max-width: 576px) {
    header .logo {
        text-align: left;
        width: 62%;
      }
      .research {
        padding-top: 36%;
      }
      .hamburger-container {
        right: 1rem;
    }
    header .row {
        margin: 0px auto;
        width: 88%;
    }
    .research .heading {
        font-size: 1.5rem;
    }
    .main-themes h3 {
        font-size: calc(4vw + 0.1rem);
        color: #3e8d7a;
        margin: 20px 0 10px;
    }
    .research-area h4 {
        font-size: calc(4vw + 0.1rem);
        color: #3e8d7a;
        margin-bottom: 15px;
    }
}