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

/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #1f1f1f;
    color: #e0e0e0;
    line-height: 1.6;
    text-align: justify;
}

.title {
    margin-bottom: 30px; /* Adjust the value as needed */
}

.nav-section {
    margin-top: 30px; /* Adjust the value as needed */
    margin-left: 30px

}

/* Split Layout */
header {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.split-left {
    width: 50%;
    color: #fff;
    margin: 3rem;
}

.split-left h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    margin-left: 3rem;
}

.split-left p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.split-right {
    width: 50%;
    background-color: #333;
    padding: 2rem;
}

.split-right nav ul {
    list-style-type: none;
    padding: 0;
}

.split-right nav ul li {
    margin: 0;
}

.split-right nav ul li a {
    color: #00bcd4;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    transition: color 0.3s ease-in-out;
}

.split-right nav ul li a:hover {
    color: #fff;
}

/* Subtitle Styling */
.subtitle {
    font-size: 1.3rem;  /* Smaller font size */
    color: #aaa;  /* Subtle gray color */
    margin-top: 1rem;
    font-style: italic;  /* Optional, to give it a more quirky vibe */
}

/* Crossed-out text */
.crossed {
    text-decoration: line-through;
    color:#ff4081;  /* A pinkish color for the crossed-out text */
    font-weight: bold;  /* Optional: make the text bold */
    font-size: 1rem;
    opacity: 70%;
}



/* Section Styles */
section {
    padding: 3rem 6rem;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00bcd4;
}

section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Footer Styles */
footer {
    background-color: #222;
    text-align: center;
    padding: 1rem;
    color: #aaa;
}

footer a {
    color: #00bcd4;
    text-decoration: none;
}

/* Fade-in effect when section is in view */
section {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

section.fade-in {
    opacity: 1;
}


.project {
    background: #333;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
}

.project h3 a {
    color: #00bcd4;
    text-decoration: none;
}

.project p {
    color: #ccc;
}

/* Social Icons Box Container */
.social-icons-box {
    position: absolute;
    top: 20px;  /* Adjust top distance from the top of the page */
    right: 20px;  /* Adjust right distance from the right side */
    display: flex;
    gap: 2rem;  /* Space between the icons */
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.7);  /* Semi-transparent black background */
    border-radius: 10px;  /* Rounded corners for the box */
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.5);  /* Soft shadow for depth */
    z-index: 10;  /* Make sure it stays on top of other elements */
    text-align: justify;
}

/* Style for each social icon */
.social-icon {
    color: #fff;  /* White icons */
    font-size: 1.9rem;  /* Icon size */
    text-decoration: none;  /* Remove underline */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #00bcd4;  /* Hover color */
    transform: scale(1.2);  /* Slight zoom effect */
}

/* LinkedIn Icon */
.social-icon.linkedin {
    color: #0077b5;
}

.social-icon.linkedin:hover {
    color: #0a66c2;  /* LinkedIn hover color */
}

/* GitHub Icon */
.social-icon.github {
    color: #333;
}

.social-icon.github:hover {
    color: #6e5494;  /* GitHub hover color */
}

/* Email Icon */
.social-icon.email {
    color: #ff4081;
}

.social-icon.email:hover {
    color: #ff6090;  /* Email hover color */
}

/* Twitter Icon */
.social-icon.twitter {
    color: #1da1f2;
}

.social-icon.twitter:hover {
    color: #1a91da;  /* Twitter hover color */
}

@media (max-width: 768px) {
    .social-icons-box {
        position: fixed;
        top: 10px;
        right: 10px;
        flex-direction: row;  /* Arrange icons in a row for smaller screens */
        gap: 1rem;
    }

    .social-icon {
        font-size: 1.4rem;  /* Smaller icons on mobile */
    }
}

/* Projects Section */
#projects {
    background-color: #121212;  /* Dark background for the section */
    color: #fff;  /* Light text color */
    padding: 3rem 1.5rem;
}

/* Title Styling for Projects Section */
#projects h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Container for Project Cards */
.projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: justify;
}

.project-card {
    border: 1px solid #ccc;
    padding: 20px;
    position: relative;
    text-align: justify;
    
}

.full-description {
    display: none;
    text-align: justify;
}

.read-more-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
}

/* Card Hover Effects */
.project-card:hover {
    transform: translateY(-5px);  /* Slight lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);  /* Stronger shadow */
    text-align: justify;
}

/* Project Title */
.project-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: justify;
}

/* Project Description */
.project-card p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1rem;
    text-align: justify;
}

/* Link Styling for Project Cards */
.project-link {
    color: #00bcd4;  /* Cyan color for links */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: justify;
}

.project-link:hover {
    color: #ff4081;  /* Change color on hover */
}

/* Color Themes for Specific Project Areas */

/* Synthetic Biology & Bioinformatics */
.bio-info {
    border: 2px solid #00ff7f;  /* Neon green border */
    background: rgba(0, 255, 127, 0.1);  /* Neon green glow background */
    color: #00ff7f;  /* Neon green text */
    text-align: justify;
}

.bio-info:hover {
    background: rgba(0, 255, 127, 0.2);  /* Darker green glow effect on hover */
}

/* Computational Chemistry */
.chemistry {
    border: 2px solid #39ff14;  /* Neon green border */
    background: rgba(57, 255, 20, 0.1);  /* Lighter neon green */
    color: #39ff14;  /* Neon green text */
    text-align: justify;
}

.chemistry:hover {
    background: rgba(57, 255, 20, 0.2);  /* Darker green effect on hover */
}

/* Quantum Computing */
.quantum {
    border: 2px solid #8a2be2;  /* Neon purple border */
    background: rgba(138, 43, 226, 0.1);  /* Light purple glow */
    color: #8a2be2;  /* Neon purple text */
}

.quantum:hover {
    background: rgba(138, 43, 226, 0.2);  /* Darker purple glow effect on hover */
}

/* Animation Effects (optional: to be added for interaction or to display something like reaction mechanisms/quantum circuits) */
@keyframes neon-glow {
    0% {
        text-shadow: 0 0 5px #00ff7f, 0 0 10px #00ff7f, 0 0 15px #00ff7f;
    }
    50% {
        text-shadow: 0 0 10px #00ff7f, 0 0 20px #00ff7f, 0 0 30px #00ff7f;
    }
    100% {
        text-shadow: 0 0 5px #00ff7f, 0 0 10px #00ff7f, 0 0 15px #00ff7f;
    }
}

/* Apply the neon animation to project headings */
.project-card h3 {
    animation: neon-glow 1.5s ease-in-out infinite alternate;
}

/* Section Styling */
#resume {
    background-color: transparent;  /* Make the background of the section transparent */
    padding: 3rem 0;  /* Optional: Add padding for spacing */
    text-align: center;
}

/* Container for PDF Embed */
.pdf-container {
    position: relative;
    width: 90%;  /* Adjust width to reduce side margins */
    height: 100vh;  /* Full viewport height */
    background-color: transparent;  /* Ensure no background color behind the PDF */
    margin: 0 auto;  /* Center the iframe horizontally */
    overflow: hidden;  /* Ensure content stays within the container */
}

/* PDF iframe style */
.pdf-container iframe {
    width: 100%;  /* Full width */
    height: 100%;  /* Full viewport height */
    border: none;  /* Remove borders around the iframe */
    display: block;  /* Remove any spacing around iframe */
}

/* Optional: Styling the download button */
.download-button {
    text-decoration: none;
}

.download-button button {
    background-color: #00bcd4;  /* Your brand color */
    color: white;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-button button:hover {
    background-color: #008c99;  /* Slightly darker on hover */
}

.pdf-container {
    position: relative;
    width: 100%;
    height: 100vh;  /* Adjust height to be 80% of the viewport */
    background-color: transparent;
    margin: 0 auto;
    overflow: hidden;
}

.view-resume-link {
    color: #00bcd4;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #00bcd4;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-resume-link:hover {
    background-color: #00bcd4;
    color: #fff;
}

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); /* Example exotic font */

.book-quotes-collage {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    font-family: 'Pacifico', cursive; /* Exotic font */
    max-height: 900px;

}

.quote-card {
    background-color: #1f1f1f; /* Same as background color */
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transsform 0.2s;
    max-height: 800px;
}

.quote-card:hover {
    transform: scale(1.05);
}

.quote-card blockquote {
    margin: 0;
    font-style: italic;
    color: #a0f7f7; /* Light cyan text color */
    word-wrap: break-word;
    max-height: 500px;
    overflow-y: auto;
    text-align: justify; /* Justify text */
}

.quote-card footer {
    text-align: right;
    font-size: 0.9em;
    color: #888;
    margin-top: 10px;
}

.quote-card pre {
    white-space: pre-wrap; /* Maintain poem format */
    font-family: 'Pacifico', cursive; /* Exotic font for poems */
    color: #a5f5f5; /* Light cyan text color */
}

@media (max-width: 768px) {
    .quote-card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .quote-card {
        width: 100%;
    }
}

embed {
  width: 100%;
}

