/* Navigation Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(34, 226, 226, 0.3);
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.5;
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: var(--cyan);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.white-icon {
    color: #fff;
}

.nav-menu a:hover {
    color: white;
    transform: translateY(-2px);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--black);
}

.dropdown-menu a:hover {
    background: var(--light-grey);
    color: var(--dark-purple);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: radial-gradient(ellipse at center, rgba(63, 29, 103, 0.4) 15%, rgba(63, 29, 103, 0.8) 70%, rgba(63, 29, 103, 0.95) 100%), 
                url('../images/hero/creative.jpg') center/cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-bottom: 180px;
}

/* Index page hero exception */
.hero-index {
    padding-bottom: 100px;
}

/* Hero Flower of Life SVG */
.hero-flower {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    pointer-events: none;
}

@keyframes drawCircle {
    0% {
        stroke-dashoffset: 314;
        opacity: 0;
    }
    30% {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
    70% {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: -314;
        opacity: 0;
    }
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    margin-top: auto;
}

.hero-title {
    font-size: 4.125rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--dark-purple), var(--cyan), var(--dark-purple), var(--cyan));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 15s ease infinite;
}

.gradient-text-purple {
    background: linear-gradient(90deg, var(--cyan), var(--dark-purple), var(--cyan));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 15s ease infinite;
    display: inline-block;
    position: relative;
}

.hero-title-main {
    font-family: 'Droid Serif', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    color: var(--cyan);
    position: relative;
    display: inline-block;
}

.hero-title-main.with-line::before,
.hero-title-main.with-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 2px;
    transform: translateY(-50%);
}

.hero-title-main.with-line::before {
    right: calc(100% + 40px);
    background: linear-gradient(to left, var(--cyan), var(--dark-purple));
}

.hero-title-main.with-line::after {
    left: calc(100% + 40px);
    background: linear-gradient(to right, var(--cyan), var(--dark-purple));
}

.hero-name {
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: white;
    font-weight: 200;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: 'Droid Serif', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-transform: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-quote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: color 0.3s;
}

.scroll-arrow:hover {
    color: var(--cyan);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Who I Am Section - Centered Layout */
#who-i-am .container {
    max-width: none;
    padding: 0 5%;
}

.who-i-am-content-centered {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-image-wrapper-centered {
    margin-bottom: 40px;
}

.profile-image-centered {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    border: 5px solid var(--cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.content-text-centered {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.content-text-centered h2 {
    margin-bottom: 35px;
    font-size: 44px;
    background: linear-gradient(90deg, var(--dark-purple), var(--cyan), var(--dark-purple), var(--cyan));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 15s ease infinite;
    position: relative;
    display: inline-block;
}

.content-text-centered h2.with-line::before,
.content-text-centered h2.with-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 150px;
    height: 2px;
    transform: translateY(-50%);
}

.content-text-centered h2.with-line::before {
    right: calc(100% + 30px);
    background: linear-gradient(to left, var(--cyan), var(--dark-purple));
}

.content-text-centered h2.with-line::after {
    left: calc(100% + 30px);
    background: linear-gradient(to right, var(--cyan), var(--dark-purple));
}

/* Research Cards Container - Full Width */
.research-cards-container {
    padding: 0 3%;
    margin: 40px 0;
}

.research-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.research-card {
    padding: 35px 25px;
    background: linear-gradient(135deg, var(--dark-purple), var(--cyan));
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.research-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(63, 29, 103, 0.9), rgba(34, 226, 226, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.research-card:hover::before {
    opacity: 1;
}

.research-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: var(--cyan);
}

.research-card:hover h4 {
    color: var(--dark-purple);
}

.research-card:hover p {
    color: var(--black);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(63, 29, 103, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2.2rem;
    color: var(--cyan);
}

.research-card:hover .card-icon {
    background: rgba(63, 29, 103, 1);
    transform: scale(1.1);
}

.card-image {
    width: calc(100% + 50px);
    height: 0;
    padding-bottom: calc(100% + 50px); /* Makes it square */
    margin: -25px -25px 0 -25px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.research-card:hover .card-image img {
    transform: scale(1.1);
}

.research-card h4 {
    color: var(--white);
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    font-weight: 800;
}

.research-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 18px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    flex-grow: 1;
}

.research-card .card-btn {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 14px 40px;
    font-size: 16px;
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: 10px;
    align-self: center;
}

.research-card .card-btn:hover {
    transform: translateY(-2px);
}

/* Legacy Who I Am Section - keep for compatibility */
.who-i-am-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.profile-image-wrapper {
    position: relative;
}

.profile-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--red-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.work-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.work-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.work-list li:last-child {
    border-bottom: none;
}

/* Why Section - Centered */

.video-container {
    max-width: 900px;
    margin: 0 auto 60px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.why-content-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.why-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.why-content-centered h2.with-line::before,
.why-content-centered h2.with-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 150px;
    height: 2px;
    transform: translateY(-50%);
}

.why-content-centered h2.with-line::before {
    right: calc(100% + 30px);
    background: linear-gradient(to left, var(--cyan), var(--dark-purple));
}

.why-content-centered h2.with-line::after {
    left: calc(100% + 30px);
    background: linear-gradient(to right, var(--cyan), var(--dark-purple));
}

.why-content-centered .btn {
    margin-top: 30px;
    padding: 14px 40px;
    background-color: var(--dark-purple);
    color: var(--white);
    font-size: 16px;
}

.why-content-centered .cta-buttons {
    justify-content: center;
}

.lead {
    font-size: 1.25rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

#speaker .lead {
    color: var(--black);
}

.highlight-text {
    font-size: 2rem;
    font-weight: 600;
    margin: 30px 0;
    color: var(--cyan);
    font-style: italic;
}

.section-dark h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    background: linear-gradient(90deg, white, var(--cyan), white, var(--cyan));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 15s ease infinite;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Books Section */

.books-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3%;
}

.books-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.books-text h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    margin-top: 0;
    position: relative;
    display: inline-block;
}

.books-text h2.with-line::before,
.books-text h2.with-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 120px;
    height: 2px;
    transform: translateY(-50%);
}

.books-text h2.with-line::before {
    right: calc(100% + 25px);
    background: linear-gradient(to left, var(--cyan), var(--dark-purple));
}

.books-text h2.with-line::after {
    left: calc(100% + 25px);
    background: linear-gradient(to right, var(--cyan), var(--dark-purple));
}

.books-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 10px;
}

.books-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.books-list li:last-child {
    border-bottom: none;
}

.books-text .btn {
    margin-top: 20px;
}

/* Speaker Section */

.speaker-title-container {
    text-align: center;
    padding-top: 40px;
    margin-bottom: 35px;
}

.speaker-title-container h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--dark-purple), var(--cyan), var(--dark-purple));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 15s ease infinite;
}

.speaker-title-container h2.with-line::before,
.speaker-title-container h2.with-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 150px;
    height: 2px;
    transform: translateY(-50%);
}

.speaker-title-container h2.with-line::before {
    right: calc(100% + 30px);
    background: linear-gradient(to left, var(--cyan), var(--dark-purple));
}

.speaker-title-container h2.with-line::after {
    left: calc(100% + 30px);
    background: linear-gradient(to right, var(--cyan), var(--dark-purple));
}

.speaker-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3%;
}

.speaker-image {
    width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.speaker-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.speaker-text h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.speaker-text h2.with-line::before,
.speaker-text h2.with-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 120px;
    height: 2px;
    transform: translateY(-50%);
}

.speaker-text h2.with-line::before {
    right: calc(100% + 25px);
    background: linear-gradient(to left, var(--cyan), var(--dark-purple));
}

.speaker-text h2.with-line::after {
    left: calc(100% + 25px);
    background: linear-gradient(to right, var(--cyan), var(--dark-purple));
}

.speaker-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
}
.topics-list {
    list-style: disc;
    padding-left: 25px;
    margin: 10px 0 30px;
}

.topics-list li {
    padding: 4px 0;
    color: var(--black);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}


/* Projects Section */
.projects-title-container {
    text-align: center;
    margin-bottom: 60px;
}

.projects-title-container h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.projects-title-container h2.with-line::before,
.projects-title-container h2.with-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 150px;
    height: 2px;
    transform: translateY(-50%);
}

.projects-title-container h2.with-line::before {
    right: calc(100% + 30px);
    background: linear-gradient(to left, var(--cyan), var(--dark-purple));
}

.projects-title-container h2.with-line::after {
    left: calc(100% + 30px);
    background: linear-gradient(to right, var(--cyan), var(--dark-purple));
}

.projects-container {
    padding: 0 3%;
    margin: 40px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

.project-category {
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--dark-purple), var(--cyan));
    padding: 3px;
    position: relative;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: white;
    border-radius: 12px;
    z-index: 0;
}

.project-category > * {
    position: relative;
    z-index: 1;
}

.project-category {
    display: grid;
    grid-template-rows: auto 1fr 1fr;
    min-height: 280px;
    gap: 5px;
}

.project-category h3 {
    color: var(--dark-purple);
    margin: 20px 20px 25px 20px;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
}

.project-item {
    display: flex;
    align-items: flex-start;
}

.project-item:first-of-type {
    align-self: start;
}

.project-item.second-item {
    align-self: start;
    margin-top: 0;
}

.project-category p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.project-item {
    margin-bottom: 3px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Project Links */
.project-link {
    color: var(--royal-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--cyan);
    text-decoration: underline;
}

.project-link strong {
    color: inherit;
}

.logos-banner {
    margin-top: 10px;
    padding: 15px 0 5px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.logos-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.logos-slider {
    display: flex;
    animation: scroll 40s linear infinite;
    width: fit-content;
    gap: 60px;
}

.logos-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logos-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.logos-grid img {
    width: auto;
    max-width: 200px;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Specific logo size adjustments */
.logos-grid a[href*="biodiversity-arc"] img,
.logos-grid a[href*="clubofathens"] img,
.logos-grid img[alt="Club of Athens"] {
    height: 100px;
    max-width: 240px;
}

/* Specific logo size adjustments */
img[alt="Club of Athens"] {
    max-width: 160px;
    height: 60px;
}

img[alt="Biodiversity Arc"] {
    max-width: 150px;
    height: 60px;
}

.logo-with-text-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
    gap: 10px;
    height: auto;
    padding: 0;
    margin: 0;
}

.logo-with-text-banner img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.dragonfire-text-banner {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #ff6b00;
}

.musiverse-text-banner {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--black);
}

.logos-grid img:hover {
    transform: scale(1.1);
}

.logos-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: center;
}

.logos-grid a:hover {
    transform: scale(1.1);
}

.project-logo {
    width: auto;
    max-width: 260px;
    height: 80px;
    object-fit: contain;
    object-position: center bottom;
    margin-bottom: 15px;
    display: block;
}

.project-item p {
    margin-bottom: 15px;
}

/* Individual logo size adjustments - all same height for alignment */
img[alt="Club of Athens"].project-logo {
    height: 80px;
    max-width: 340px;
}

img[alt="Biodiversity Arc"].project-logo {
    height: 80px;
    max-width: 340px;
}

img[alt="In2Infinity"].project-logo {
    height: 80px;
    max-width: 230px;
}

.project-logo-icon {
    width: 52px;
    height: 52px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.logo-with-text {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.dragonfire-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #ff6b00;
}

.musiverse-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
}

/* Creative Work Section */
.creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.creative-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.creative-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.creative-item h3 {
    color: var(--cyan);
    margin-bottom: 15px;
}

.creative-item p {
    color: rgba(255, 255, 255, 0.9);
}

.featured-title {
    color: white;
    margin-top: 40px;
    margin-bottom: 20px;
}

.featured-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.featured-list li {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--cyan);
}

/* Footer styles moved to global.css for consistency */

/* Creative Work Title Styling */
.creative-title-container {
    text-align: center;
    margin-bottom: 40px;
}
.creative-title-container h2 {
    position: relative;
    display: inline-block;
}
.creative-title-container h2.with-line::before,
.creative-title-container h2.with-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 150px;
    height: 2px;
    transform: translateY(-50%);
}
.creative-title-container h2.with-line::before {
    right: calc(100% + 30px);
    background: linear-gradient(to left, var(--cyan), var(--dark-purple));
}
.creative-title-container h2.with-line::after {
    left: calc(100% + 30px);
    background: linear-gradient(to right, var(--cyan), var(--dark-purple));
}
.creative-description {
    color: var(--black);
    font-size: 20px;
    line-height: 1.6;
    max-width: 900px;
    margin: 30px auto 0;
}

/* Quote Section */
.quote-section {
    background: var(--light-grey);
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Flower of Life in Quote Section - moved to global.css for consistency */

/* Featured quote base styles moved to global.css - keeping only padding override here */
.featured-quote {
    padding: 0 60px;
}

.featured-quote::before,
.featured-quote::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--cyan);
    opacity: 0.3;
    position: absolute;
}

.featured-quote::before {
    content: '\f10d';
    top: -15px;
    left: 0;
}

.featured-quote::after {
    content: '\f10e';
    bottom: -15px;
    right: 0;
}

.cyan-underline {
    position: relative;
    display: inline-block;
}

.cyan-underline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    background: var(--cyan);
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--dark-purple);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: transform 0.3s ease;
        box-shadow: none;
        padding: 120px 20px 40px;
        gap: 24px;
        align-items: center;
        transform: translateX(-100%);
        z-index: 9999;
        overflow: hidden;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        color: #fff;
        font-size: 1.2rem;
        text-shadow: none;
    }

    .nav-menu a:hover {
        color: var(--cyan);
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .main-header {
        background: var(--dark-purple);
        box-shadow: none;
        backdrop-filter: none;
    }

    .main-footer .social-icons {
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-grey);
        margin-top: 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-main {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }

    .hero-name {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .who-i-am-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-image-wrapper {
        margin: 0 auto;
        max-width: 250px;
    }

    .research-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .research-card {
        padding: 25px 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}
