/* Midnight Scholar Theme - CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    color: #e6f1ff;
    line-height: 1.6;
}

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

/* Header */
header {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #64ffda;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #e6f1ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #64ffda;
}

/* Hero Section - Split Layout */
.hero {
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: visible;
}

/* Page Hero (for non-homepage pages like Publications, Vita, Contact) */
.page .hero {
    background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #0a192f 100%);
    position: relative;
    min-height: 300px;
    padding: 100px 0;
}

.page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(30deg, rgba(100, 255, 218, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(100, 255, 218, 0.03) 87.5%, rgba(100, 255, 218, 0.03)),
        linear-gradient(150deg, rgba(100, 255, 218, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(100, 255, 218, 0.03) 87.5%, rgba(100, 255, 218, 0.03)),
        linear-gradient(30deg, rgba(100, 255, 218, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(100, 255, 218, 0.03) 87.5%, rgba(100, 255, 218, 0.03)),
        linear-gradient(150deg, rgba(100, 255, 218, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(100, 255, 218, 0.03) 87.5%, rgba(100, 255, 218, 0.03)),
        linear-gradient(60deg, rgba(100, 255, 218, 0.05) 25%, transparent 25.5%, transparent 75%, rgba(100, 255, 218, 0.05) 75%, rgba(100, 255, 218, 0.05)),
        linear-gradient(60deg, rgba(100, 255, 218, 0.05) 25%, transparent 25.5%, transparent 75%, rgba(100, 255, 218, 0.05) 75%, rgba(100, 255, 218, 0.05));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    opacity: 0.3;
    z-index: 0;
}

.page .hero .container {
    position: relative;
    z-index: 1;
}

.page .hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page .hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #64ffda;
    margin: 20px auto 0;
    border-radius: 2px;
}

.page .hero h1 a {
    color: #64ffda;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.page .hero h1 a:hover {
    color: #52e8c2;
    border-bottom-color: #52e8c2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: visible;
}

.hero-content {
    overflow: visible;
}

.hero-content h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 26px;
    color: #64ffda;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-content p,
.hero-content div {
    font-size: 17px;
    color: #8892b0;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-content a {
    color: #64ffda;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.hero-content a:hover {
    color: #52e8c2;
    border-bottom-color: #52e8c2;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-image img:hover {
    border-color: #64ffda;
    box-shadow: 0 20px 60px rgba(100, 255, 218, 0.2);
    transform: translateY(-5px);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(100, 255, 218, 0.1);
    border-radius: 8px;
    z-index: -1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #64ffda;
    border: 2px solid #64ffda !important;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.cta-button:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(100, 255, 218, 0.3);
}

.cta-button:focus {
    outline: 2px solid #64ffda;
    outline-offset: 2px;
    background: rgba(100, 255, 218, 0.05);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-secondary {
    background: #64ffda !important;
    color: #0a192f !important;
}

.cta-secondary:hover {
    background: #52e8c2 !important;
    color: #0a192f !important;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: rgba(100, 255, 218, 0.2);
}

/* About Section */
.about-content {
    background: #112240;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.about-content h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 25px;
    margin-top: 0;
    font-weight: 600;
}

.about-content h3 {
    color: #64ffda;
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content h3:first-of-type {
    margin-top: 30px;
}

.about-content p {
    color: #8892b0;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.about-content ul li {
    color: #e6f1ff;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(100, 255, 218, 0.08);
    line-height: 1.7;
    font-size: 15px;
}

.about-content ul li:last-child {
    border-bottom: none;
}

.about-content ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #64ffda;
    font-size: 20px;
    line-height: 1;
}

.about-content a {
    color: #64ffda;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-content a:hover {
    color: #52e8c2;
}

.about-content hr {
    border: none;
    border-top: 1px solid rgba(100, 255, 218, 0.2);
    margin: 30px 0;
}

.about-content em {
    color: #8892b0;
    font-style: italic;
}

.about-content strong {
    color: #c9d1d9;
    font-weight: 600;
}

/* Research Interests Grid */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.interest-card {
    background: #112240;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.interest-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.interest-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.interest-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}

.interest-card p {
    color: #8892b0;
    font-size: 14px;
    line-height: 1.6;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: #112240;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #64ffda;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.highlight-year {
    color: #64ffda;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-card h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
}

.highlight-card p {
    color: #8892b0;
    font-size: 14px;
}

/* Link Cards */
.links-section {
    background: rgba(17, 34, 64, 0.3);
}

.link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.link-card {
    background: #112240;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    text-decoration: none;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.link-card:hover {
    border-color: #64ffda;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.link-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
}

.link-card p {
    color: #8892b0;
    font-size: 15px;
}

.link-arrow {
    position: absolute;
    top: 35px;
    right: 35px;
    color: #64ffda;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.link-card:hover .link-arrow {
    transform: translateX(5px);
}

/* Education & Experience Cards */
.education-grid, .experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.education-card, .experience-card {
    background: #112240;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.education-card:hover, .experience-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.education-card h3, .experience-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
}

.institution, .company {
    color: #64ffda;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.details {
    color: #8892b0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.details p {
    margin-bottom: 8px;
}

.details strong {
    color: #c9d1d9;
}

.date {
    color: #64ffda;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.highlight {
    display: inline-block;
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

/* Awards List */
.awards-list {
    background: #112240;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.awards-list ul {
    list-style: none;
}

.awards-list li {
    color: #e6f1ff;
    padding: 20px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    line-height: 1.7;
}

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

.awards-list li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.contact-card {
    background: #112240;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.contact-card h3 {
    color: #64ffda;
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-info p {
    color: #e6f1ff;
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-info a {
    color: #64ffda;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #52e8c2;
}

/* Publications */
.publications-list {
    background: #112240;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.publication-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.publication-item:last-child {
    border-bottom: none;
}

.publication-item h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.publication-meta {
    color: #8892b0;
    font-size: 14px;
    line-height: 1.6;
}

/* Publications Page Specific Styles */
.page-id-8 .about-content h2,
.page-publications .about-content h2 {
    color: #ffffff !important;
    font-size: 28px !important;
    margin-bottom: 25px !important;
    margin-top: 60px !important;
    padding-top: 40px !important;
    font-weight: 600 !important;
    border-top: 2px solid rgba(100, 255, 218, 0.2) !important;
    position: relative !important;
}

.page-id-8 .about-content h2::before,
.page-publications .about-content h2::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: 0 !important;
    width: 80px !important;
    height: 2px !important;
    background: #64ffda !important;
    display: block !important;
}

.page-id-8 .about-content h2:first-of-type,
.page-publications .about-content h2:first-of-type {
    margin-top: 40px !important;
}

.page-id-8 .about-content h3,
.page-publications .about-content h3 {
    color: #64ffda !important;
    font-size: 22px !important;
    margin-top: 35px !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
}

/* Publications Page List Styling - Match Main Page */
.page-id-8 .about-content ol,
.page-publications .about-content ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
    counter-reset: item;
}

.page-id-8 .about-content ol li,
.page-publications .about-content ol li {
    color: #e6f1ff;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(100, 255, 218, 0.08);
    line-height: 1.7;
    font-size: 15px;
}

.page-id-8 .about-content ol li:last-child,
.page-publications .about-content ol li:last-child {
    border-bottom: none;
}

.page-id-8 .about-content ol li::before,
.page-publications .about-content ol li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #64ffda;
    font-size: 20px;
    line-height: 1;
}

/* Vita Page Specific Styles */
.vita-section {
    margin-bottom: 60px;
}

.vita-section h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.vita-section h3 {
    color: #64ffda;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.education-grid,
.experience-grid {
    display: grid;
    gap: 30px;
}

.education-item,
.experience-item {
    background: #112240;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.education-item:hover,
.experience-item:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.education-item h3,
.experience-item h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}

.institution {
    color: #64ffda;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.experience-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: start;
}

.year-range {
    color: #64ffda;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 12px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 4px;
    text-align: center;
}

.experience-details h3 {
    margin-top: 0;
}

.experience-details p {
    color: #8892b0;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.awards-list {
    list-style: none;
    padding: 0;
}

.awards-list li {
    color: #e6f1ff;
    padding: 20px;
    padding-left: 50px;
    position: relative;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    line-height: 1.7;
    font-size: 15px;
}

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

.awards-list li::before {
    content: '🏆';
    position: absolute;
    left: 15px;
    font-size: 24px;
}

.awards-list li strong {
    color: #64ffda;
    font-weight: 700;
}

/* Publications Navigation Menu */
.publications-nav {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.6) 0%, rgba(17, 34, 64, 0.4) 100%);
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 50px;
}

.publications-nav h3 {
    color: #64ffda;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.pub-nav-btn {
    display: block;
    padding: 15px 25px;
    background: rgba(100, 255, 218, 0.1);
    border: 2px solid #64ffda;
    border-radius: 6px;
    color: #64ffda;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pub-nav-btn:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(100, 255, 218, 0.3);
    color: #52e8c2;
    border-color: #52e8c2;
}

.pub-nav-btn:active {
    transform: translateY(-1px);
}

/* Scroll margin for smooth scrolling targets */
#refereed-publications,
#chapters-in-books,
#conference-proceedings,
#magazine-publications,
#patents,
#academic-lectures,
#corporate-lectures,
#phd-students {
    scroll-margin-top: 100px;
}

/* Vita Publications List Styling */
.vita-section ol {
    list-style: none;
    counter-reset: publication-counter;
    padding: 0;
    margin-top: 20px;
}

.vita-section ol li {
    counter-increment: publication-counter;
    position: relative;
    padding: 20px 20px 20px 70px;
    margin-bottom: 15px;
    background: rgba(17, 34, 64, 0.4);
    border-left: 3px solid rgba(100, 255, 218, 0.3);
    border-radius: 4px;
    line-height: 1.8;
    color: #e6f1ff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.vita-section ol li:hover {
    background: rgba(17, 34, 64, 0.6);
    border-left-color: #64ffda;
    transform: translateX(5px);
}

.vita-section ol li::before {
    content: counter(publication-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    background: rgba(100, 255, 218, 0.1);
    border: 2px solid #64ffda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #64ffda;
}

.vita-section ol li strong {
    color: #64ffda;
    font-weight: 600;
}

.vita-section ol li em {
    color: #8892b0;
    font-style: italic;
}

.vita-section ol li a {
    color: #64ffda;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.vita-section ol li a:hover {
    color: #52e8c2;
    text-decoration: underline;
}

/* Pagination Controls */
.pagination-wrapper {
    margin-bottom: 40px;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.pagination-btn {
    padding: 10px 20px;
    background: transparent;
    color: #64ffda;
    border: 2px solid #64ffda;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #8892b0;
    color: #8892b0;
}

.pagination-info {
    color: #e6f1ff;
    font-size: 14px;
    font-weight: 500;
    min-width: 120px;
    text-align: center;
}

.pagination-info .current-page {
    color: #64ffda;
    font-weight: 700;
}

/* Footer */
footer {
    background: #0a192f;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: #64ffda;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-info p {
    color: #8892b0;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-links h4, .footer-contact h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #8892b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #64ffda;
}

.footer-contact p {
    color: #8892b0;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact a {
    color: #64ffda;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #52e8c2;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    color: #64ffda;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: #64ffda;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-bottom p {
    color: #8892b0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .interests-grid,
    .highlights-grid,
    .education-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .link-cards {
        grid-template-columns: 1fr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        gap: 15px;
        font-size: 12px;
    }
}
