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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6, #a855f7);
    background-size: 200% 200%;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-logo a::before {
    content: '';
    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;
}

.nav-logo a:hover::before {
    left: 100%;
}

.nav-logo a:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #7c3aed;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #7c3aed;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    min-height: 80vh;
}

.hero-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.profile-image-large {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 700px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.profile-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
    margin-bottom: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
    margin-top: 1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    color: #ffffff;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #7c3aed;
    color: white;
}

.btn-primary:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

/* Skills Section */
.skills {
    padding: 100px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.skill-category {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
}

.skill-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-category h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border-radius: 2px;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.skill-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateX(5px);
}

.skill-item i {
    color: #10b981;
    font-size: 1.1rem;
    min-width: 20px;
}

.skill-name {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.skill-level {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-level:contains("Advanced") {
    background: #dcfce7;
    color: #166534;
}

.skill-level:contains("Intermediate") {
    background: #fef3c7;
    color: #92400e;
}

.skill-level:contains("Beginner") {
    background: #dbeafe;
    color: #1e40af;
}

/* Specific skill level styling */
.skill-item:nth-child(1) .skill-level,
.skill-item:nth-child(3) .skill-level,
.skill-item:nth-child(5) .skill-level,
.skill-item:nth-child(7) .skill-level,
.skill-item:nth-child(9) .skill-level,
.skill-item:nth-child(11) .skill-level,
.skill-item:nth-child(13) .skill-level,
.skill-item:nth-child(15) .skill-level,
.skill-item:nth-child(17) .skill-level,
.skill-item:nth-child(19) .skill-level,
.skill-item:nth-child(21) .skill-level,
.skill-item:nth-child(23) .skill-level {
    background: #dcfce7;
    color: #166534;
}

.skill-item:nth-child(2) .skill-level,
.skill-item:nth-child(4) .skill-level,
.skill-item:nth-child(6) .skill-level,
.skill-item:nth-child(8) .skill-level,
.skill-item:nth-child(10) .skill-level,
.skill-item:nth-child(12) .skill-level,
.skill-item:nth-child(14) .skill-level,
.skill-item:nth-child(16) .skill-level,
.skill-item:nth-child(18) .skill-level,
.skill-item:nth-child(20) .skill-level,
.skill-item:nth-child(22) .skill-level,
.skill-item:nth-child(24) .skill-level {
    background: #fef3c7;
    color: #92400e;
}

/* Research Section */
.research {
    padding: 100px 0;
    background: white;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: end;
}

.research-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.research-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.research-icon i {
    color: white;
    font-size: 1.5rem;
}

.research-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    min-height: 3.2rem;
    display: flex;
    align-items: flex-start;
}

.research-abstract {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    min-height: 4.8rem;
}

.research-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    min-height: 2rem;
    align-items: flex-start;
}

.research-year, .research-journal {
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #475569;
}

.research-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    min-height: 1.5rem;
    margin-top: auto;
}

.research-link:hover {
    color: #6d28d9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
}

.contact-method i {
    color: #7c3aed;
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #8b5cf6;
}

/* 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);
    }
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 0;
        display: block;
        width: 100%;
    }

    .nav-logo a {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

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

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 120px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .profile-image-large {
        width: 100%;
        max-width: 400px;
        height: 400px;
        min-height: 400px;
        margin: 0 auto;
    }

    .scroll-indicator {
        bottom: 20px;
        font-size: 1.5rem;
    }

    .why-matters {
        padding: 60px 0;
    }

    .why-matters-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .why-matters-text {
        order: 1;
    }

    .why-matters-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .why-matters-visual {
        order: 2;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1rem;
        width: 100%;
    }

    .visual-element {
        padding: 1.5rem;
        width: 100%;
    }

    .visual-element i {
        font-size: 2rem;
    }

    .visual-element h3 {
        font-size: 1.2rem;
    }

    .collaborate {
        padding: 60px 0;
    }

    .collaborate-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .collaborate-text h3 {
        font-size: 1.75rem;
        text-align: center;
    }

    .collaborate-text p {
        font-size: 1rem;
        text-align: left;
    }

    .collaboration-areas {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .collaborate-cta {
        text-align: center;
    }

    .collaborate-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .skills {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .skill-category {
        padding: 1.5rem;
    }

    .skill-category h3 {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }

    .research {
        padding: 60px 0;
    }

    .research-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .research-card {
        padding: 1.5rem;
    }

    .research-card h3 {
        font-size: 1.2rem;
        min-height: auto;
    }

    .research-abstract {
        font-size: 0.95rem;
        min-height: auto;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .contact-info p {
        text-align: center;
    }

    .contact-method {
        padding: 0.875rem;
    }

    .contact-method span,
    .contact-method a {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 1.5rem 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .container {
        padding: 0 20px;
    }

    /* Better touch targets */
    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Prevent text size adjustment on iOS */
    input,
    textarea,
    select {
        font-size: 16px !important;
    }

    /* Improve scrolling on mobile */
    body {
        -webkit-overflow-scrolling: touch;
    }

    /* Better spacing for mobile */
    .hero-description {
        padding: 0 0.5rem;
    }

    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Better form inputs on mobile */
    .form-group input,
    .form-group textarea {
        -webkit-appearance: none;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-logo a {
        font-size: 1rem;
        padding: 0.35rem 0.7rem;
    }

    .hero {
        padding-top: 70px;
        padding-bottom: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

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

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .profile-image-large {
        width: 100%;
        height: 300px;
        min-height: 300px;
        max-width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .stat-item {
        width: 100%;
    }

    .why-matters {
        padding: 50px 0;
    }

    .why-matters-text p {
        font-size: 0.95rem;
    }

    .why-matters-visual {
        flex-direction: column;
        gap: 1rem;
    }

    .visual-element {
        padding: 1.25rem;
    }

    .visual-element i {
        font-size: 1.75rem;
    }

    .visual-element h3 {
        font-size: 1.1rem;
    }

    .visual-element p {
        font-size: 0.9rem;
    }

    .collaborate {
        padding: 50px 0;
    }

    .collaborate-text h3 {
        font-size: 1.5rem;
    }

    .collaborate-text p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .skills {
        padding: 50px 0;
    }

    .skill-category {
        padding: 1.25rem;
    }

    .skill-category h3 {
        font-size: 1.1rem;
    }

    .skill-name {
        font-size: 0.9rem;
    }

    .research {
        padding: 50px 0;
    }

    .research-card {
        padding: 1.25rem;
    }

    .research-card h3 {
        font-size: 1.1rem;
    }

    .research-abstract {
        font-size: 0.9rem;
    }

    .research-icon {
        width: 50px;
        height: 50px;
    }

    .research-icon i {
        font-size: 1.25rem;
    }

    .contact {
        padding: 50px 0;
    }

    .contact-info h3 {
        font-size: 1.35rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .container {
        padding: 0 15px;
    }

    .scroll-indicator {
        bottom: 15px;
        font-size: 1.25rem;
        padding: 12px;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .profile-image-large {
        height: 250px;
        min-height: 250px;
    }

    .nav-logo a {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Why It Matters Section */
.why-matters {
    padding: 100px 0;
    background: white;
}

.why-matters-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-matters-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.why-matters-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-element {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.visual-element:hover {
    transform: translateY(-5px);
}

.visual-element i {
    font-size: 2.5rem;
    color: #7c3aed;
    margin-bottom: 1rem;
}

.visual-element h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.visual-element p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Let's Collaborate Section */
.collaborate {
    padding: 100px 0;
    background: #f8fafc;
}

.collaborate-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.collaborate-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.collaborate-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2rem;
}

.collaboration-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.area-item:hover {
    transform: translateX(5px);
}

.area-item i {
    color: #7c3aed;
    font-size: 1.2rem;
    width: 20px;
}

.area-item span {
    font-weight: 500;
    color: #374151;
}

.collaborate-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.collaborate-cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
} 