/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
    overflow-x: hidden;
}

/* Color Palette - Inspired by Multani Blue Tiles */
:root {
    /* Primary Blues */
    --deep-blue: #1e3a8a;
    --royal-blue: #3b82f6;
    --turquoise: #06b6d4;
    --sky-blue: #87ceeb;
    
    /* Supporting Colors */
    --cream: #fef7ed;
    --sandstone: #d4c5b3;
    --white: #ffffff;
    --gold: #f59e0b;
    --emerald: #10b981;
    
    /* Text Colors */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    
    /* Gradients */
    --blue-gradient: linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
    --light-gradient: linear-gradient(135deg, var(--cream), var(--white));
    --turquoise-gradient: linear-gradient(135deg, var(--turquoise), var(--sky-blue));
}

/* Typography */
.arabic-text {
    font-family: 'Amiri', serif;
    font-weight: 700;
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo .arabic-text {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.nav-logo .logo-text {
    color: var(--turquoise);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--turquoise);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--turquoise);
    transition: width 0.3s ease;
}

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

/* Sub Navigation Styles */
.sub-nav {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    top:80px;
    background: #333;
    display: none;
}

.sub-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.sub-nav-link:hover {
    color: var(--turquoise);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/shrine-hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.05) 35px,
            rgba(255, 255, 255, 0.05) 70px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.05) 35px,
            rgba(255, 255, 255, 0.05) 70px
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--sky-blue);
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    position: relative;
    padding: 1rem 2.5rem;
    background: var(--turquoise-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.4);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-shine {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--white);
    margin: 0 auto 1rem;
    opacity: 0.6;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.section-header.light .section-title {
    color: var(--white);
}

.title-decoration {
    width: 100px;
    height: 4px;
    background: var(--turquoise-gradient);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.title-decoration.light {
    background: var(--white);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
    background: var(--light-gradient);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.text-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--turquoise);
    transition: transform 0.3s ease;
}

.text-block:hover {
    transform: translateY(-5px);
}

.text-block h3 {
    color: var(--deep-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.text-block p {
    line-height: 1.8;
    color: var(--text-dark);
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    text-align: center;
    font-style: italic;
}

/* Teachings Section */
.teachings-section {
    position: relative;
    background: var(--blue-gradient);
    color: var(--white);
}

.teachings-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/nasir_al_mulk_mosque_shiraz_spiritual_light_rays.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.teachings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.teaching-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.teaching-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--turquoise-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.teaching-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.teaching-card p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Miracles Section */
.miracles-section {
    background: var(--cream);
}

.miracles-timeline {
    position: relative;
    max-width: 800px;
    max-width:100%;
    margin: 0 auto;
}

.miracles-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--turquoise-gradient);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: var(--turquoise);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.timeline-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    width: calc(50% - 40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 5px solid var(--turquoise);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    border-left: none;
    border-right: 5px solid var(--turquoise);
}

.timeline-content h3 {
    color: var(--deep-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.timeline-image {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    transition: transform 0.3s ease;
    transform: scale(1.05);
}

.timeline-image:hover img {
    transform: scale(1.15);
}

/* Legacy Section */
.legacy-section {
    background: var(--light-gradient);
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.legacy-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.legacy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.legacy-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.legacy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.legacy-item:hover .legacy-image img {
    transform: scale(1.1);
}

.legacy-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(6, 182, 212, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legacy-item:hover .legacy-image .image-overlay {
    opacity: 1;
}

.legacy-image .image-overlay h3 {
    color: var(--white);
    font-size: 1.4rem;
    text-align: center;
}

.legacy-content {
    padding: 2rem;
}

.legacy-content p {
    line-height: 1.8;
    color: var(--text-dark);
}

/* Shrine Section */
.shrine-section {
    position: relative;
    background: var(--deep-blue);
    color: var(--white);
}

.shrine-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/intricate_islamic_blue_white_tiles_geometric_pattern_arabesque.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.9) 0%, rgba(6, 182, 212, 0.9) 100%);
}

.shrine-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.shrine-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.gallery-thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.gallery-thumbnails img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.shrine-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h3 {
    color: var(--turquoise);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.location-info {
    background: rgba(6, 182, 212, 0.2);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--turquoise);
}

.shrine-quote {
    font-style: italic;
    color: var(--turquoise);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Message Section */
.message-section {
    position: relative;
    background: var(--blue-gradient);
    color: var(--white);
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.message-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Islamic_Mosque_Dome_Calligraphy_Spiritual_Light_Rays.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.radial-light {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.message-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.quote-container {
    margin-bottom: 4rem;
    position: relative;
}

.quote-mark {
    font-size: 8rem;
    color: var(--turquoise);
    opacity: 0.3;
    position: absolute;
    top: -2rem;
    left: -2rem;
    font-family: serif;
}

.eternal-quote {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-style: italic;
    line-height: 1.4;
    margin: 2rem 0;
    color: var(--white);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.quote-attribution {
    font-size: 1.1rem;
    color: var(--turquoise);
    margin-top: 2rem;
}

.call-to-action h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.call-to-action p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn.primary {
    background: var(--turquoise-gradient);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.action-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.action-btn.primary:hover {
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.4);
}

.action-btn.secondary:hover {
    background: var(--white);
    color: var(--deep-blue);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    /*display: grid;*/
    display:block;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.footer-logo .arabic-text {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-logo .logo-text {
    color: var(--turquoise);
    font-size: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--turquoise);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--turquoise);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.2;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .about-content,
    .shrine-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .teachings-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
        border-left: 5px solid var(--turquoise) !important;
        border-right: none !important;
    }
    
    .miracles-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 200px;
        text-align: center;
    }
    
    .legacy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    section {
        padding: 4rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .text-block,
    .teaching-card,
    .info-card {
        padding: 1.5rem;
    }
    
    .quote-mark {
        font-size: 4rem;
        top: -1rem;
        left: -1rem;
    }
}

/* Research & Contributors Section */
.research-section {
    background: var(--light-gradient);
    position: relative;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.research-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid var(--turquoise);
}

.research-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.research-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.research-card h3 {
    color: var(--deep-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.research-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.research-link {
    color: var(--turquoise);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.research-link:hover {
    color: var(--deep-blue);
    text-decoration: underline;
}

.contributors-highlight {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contributors-highlight h3 {
    color: var(--deep-blue);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contributors-list {
    display: grid;
    gap: 1.5rem;
}

.contributor-item {
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    border-left: 4px solid var(--turquoise);
    transition: all 0.3s ease;
}

.contributor-item:hover {
    background: #f0f9ff;
    border-left-color: var(--deep-blue);
}

.contributor-info h4 {
    color: var(--deep-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contributor-info p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.contribution-type {
    display: inline-block;
    background: var(--turquoise);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}