/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #0d0d0d; /* Dark background */
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Profile Section */
.profile-section {
    text-align: center;
    padding: 30px 0;
}

.profile-pic {
    width: 270px;
    height: 270px;
    object-fit: cover;
    border-radius: 50%;
    border: 7px solid gold; /* Thicker, bold gold border */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8), /* Bright gold glow */
                0 0 30px rgba(255, 223, 0, 0.5); /* Outer gold glow for shine */
    margin-bottom: 15px;
}

/* Progress Bar Styling */
.progress-bar {
    width: 100%;
    background-color: #1f1f1f;
    border-radius: 15px;
    margin: 10px 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.progress {
    background-color: #FFD700; /* Gold color for progress */
    height: 30px;
    line-height: 30px;
    color: #0d0d0d; /* Dark text for contrast */
    font-weight: bold;
    text-align: center;
    border-radius: 15px;
    transition: width 0.5s ease; /* Smooth transition for progress */
}

.progress-bar:hover .progress {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8); /* Glow effect on hover */
}


h1 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 5px;
}

p {
    font-size: 16px;
    color: #b3b3b3;
}

/* Skills Section */
.skills {
    margin-top: 15px;
}

.skill {
    background-color: #1f1f1f;
    color: #e0e0e0;
    padding: 8px 12px;
    border-radius: 15px;
    margin-right: 5px;
    display: inline-block;
    font-size: 14px;
}

/* Links Section */
.links-section h2, .experience-section h2 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Styling the link-card content as flex container */
.link-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LinkedIn logo */
.linkedin-logo {
    width: 30px; /* Adjust size as needed */
    height: 30px;
}


.link-card, .experience-card {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.link-card h3, .experience-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #ffffff;
}

.link-card p, .experience-card p {
    font-size: 14px;
    color: #b3b3b3;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
}

/* Desktop Version */
@media (min-width: 768px) {
    .container {
        max-width: 1000px;
        padding: 30px;
    }

    .profile-section {
        padding: 50px 0;
    }

    .skills {
        margin-top: 20px;
    }

    .skill {
        padding: 10px 20px;
        font-size: 16px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    p {
        font-size: 18px;
    }

    .link-card, .experience-card {
        padding: 20px;
    }

    .link-card h3, .experience-card h3 {
        font-size: 18px;
    }

    .link-card p, .experience-card p {
        font-size: 16px;
    }
}

/* Default link style */
a {
    color: #FFD700; /* Gold color to match the dark theme */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth transition for color changes */
}

/* Hover effect */
a:hover {
    color: #fff;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6); /* Soft glow effect */
}

/* Visited link style */
a:visited {
    color: #b3b3b3; /* Light gray for visited links */
}

/* Active link state */
a:active {
    color: #FFAA00; /* Slightly darker gold when the link is clicked */
}
/* Basic button-like link styling */
a.button-link {
    display: inline-block; /* Turn links into block-level elements to accept padding */
    padding: 10px 20px; /* Add padding to give it a button-like feel */
    background-color: #FFD700; /* Gold background to match the theme */
    color: #0d0d0d; /* Dark text color for contrast */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Make the text bolder */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover effect for button */
a.button-link:hover {
    background-color: #FFAA00; /* Darker gold on hover */
    color: #fff; /* White text on hover for better contrast */
}

/* Visited button styling */
a.button-link:visited {
    background-color: #b3b3b3; /* Light gray for visited links */
    color: #0d0d0d; /* Keep the text dark */
}

/* Active button state */
a.button-link:active {
    background-color: #FF8C00; /* Even darker gold when clicked */
}

/* Profile Section */
.profile-section {
    text-align: center;
    padding: 50px 0;
    animation: fadeIn 1s ease-in-out;
}

/* Add animation for fade-in effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Skill hover effect */
.skill:hover {
    background-color: #FFD700; /* Gold on hover */
    color: #0d0d0d; /* Dark text for contrast */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

/* Enhance hover effects for images */
.profile-pic:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); /* Stronger glow on hover */
    transition: box-shadow 0.3s ease-in-out;
}

/* Enhanced button-link hover */
a.button-link:hover {
    background-color: #FFAA00;
    color: #ffffff; /* Ensure text contrast */
    transform: scale(1.05); /* Add slight scale-up on hover */
}

/* Reports Section - Minor adjustments for readability */
.reports-section {
    padding: 40px; /* Increase padding for better spacing */
    background-color: #1f1f1f;
    border-radius: 15px; /* Slightly larger border-radius for smoother look */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); /* Softer glow */
    margin-top: 50px; /* Add more spacing between sections */
}

/* Timeline Year Styling */
.timeline-year {
    font-size: 20px;
    left: -80px; /* Position to the left for emphasis */
}

/* Enhanced List Styling */
.timeline-content ul li {
    padding-left: 25px; /* More space between the bullet and text */
    font-size: 16px; /* Slightly larger text for readability */
}

.timeline-content:hover {
    transform: scale(1.02); /* Small scale effect on hover */
    transition: background-color 0.3s ease, transform 0.3s ease;
}
