/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f9;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Header Section */
header {
    background: linear-gradient(to right, #3399ff, #4db8ff);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 4px solid #FFD700;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(to right, #3399ff, #4db8ff);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FFD700;
}

/* Profile Header Section */
.profile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    padding: 10px 0;
}
/*
#carousel-container {
    width: 450px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
*/
#carousel-container {
    width: 40vw; /* Set width as a percentage of the viewport width */
    max-width: 300px; /* Optional: limit the maximum size */
    aspect-ratio: 1 / 1; /* Ensures the container remains a perfect square */
    border-radius: 50%; /* Makes it a circle */
    overflow: hidden; /* Ensures content stays within the circle */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}


#profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-info {
    text-align: left;
}

.profile-info h1 {
    font-size: 3rem;
    margin: 0;
    color: #333;
}

.profile-info h2 {
    font-size: 1.8rem;
    margin: 10px 0 0;
    color: #555;
}

.profile-info span {
    color: #FFD700;
}

/* Section Styling */
.section {
    background: #ffffee;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}

/* About Section */
#about h2,
#skills h2,
#projects h2,
#hobbies h2,
#contact h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

#about p,
#hobbies p,
#contact p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #444;
}

/* Skills Section */
#skills ul {
    list-style: none;
    padding: 0;
}

#skills li {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #555;
}

/* Projects Section */
/* Projects Section */
#projects {
    background: #ffffee;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    text-align: left; /* Align text to the left */
}

.project-container {
    display: flex;
    flex-direction: row; /* Stack the cards vertically */
	justify-content: left;
	flex-wrap: wrap; 
    gap: 20px;
	background: #ffffee;
}

/* .project-container { */
    /* display: flex; */
    /* justify-content: center; */
    /* flex-wrap: wrap; */
    /* gap: 20px; */
/* } */

.project-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 500px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.project-card .tech-stack {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.project-card .project-link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.project-card .project-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Hobbies Section */
#hobbies ul {
    list-style: none;
    padding: 0;
}

#hobbies li {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #555;
}


#joke-container {
    width: 90%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    color: #fff; /* Text color for contrast */
    font-size: 1.5rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out; /* Smooth color transition */
}

#joke-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Slight shadow for title */
}

#joke-text {
    line-height: 1.6;
}


#quote-container {
    width: 90%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    color: #fff; /* Text color for contrast */
    font-size: 1.5rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out; /* Smooth color transition */
}

#quote-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Slight shadow for title */
}

#quote-text {
    line-height: 1.6;
}


.text-royal-blue {
    color: #4169E1; /* Royal Blue color */
    font-weight: bold;
}

.text-gold {
    color: #FFFFFF; /* #B8860B; Darker Goldenrod for better contrast */
    background-color: #4169FF; /*#00BFFF; */
    font-weight: bold;
}

.text-azure {
    color: #FFFFFF; /* #B8860B; Darker Goldenrod for better contrast */
    background-color: #DD0000; 
    font-weight: bold;
}

.text-flask {
    color: #FFFFFF; /* #B8860B; Darker Goldenrod for better contrast */
    background-color: #00BBBB; 
    font-weight: bold;
}

.text-django {
    color: #FFFFFF; /* #B8860B; Darker Goldenrod for better contrast */
    background-color: #00BBFF; 
    font-weight: bold;
}



.coming-soon-card {
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.progress-container {
	text-align: center;
}
.progress-text {
	color: #007bff;
	font-size: 14px;
	margin-bottom: 5px;
}
.progress-bar {
	width: 200px;
	height: 10px;
	background: #e9ecef;
	border-radius: 5px;
	margin: 0 auto;
}
.progress {
	height: 100%;
	background: #007bff;
	border-radius: 5px;
	animation: progressFill 3s infinite ease-in-out;
}
@keyframes progressFill {
	0% { width: 95%; }
	50% { width: 99%; }
	100% { width: 95%; }
}




/* Footer Section */
footer {
    text-align: center;
    background: #333;
    color: #fff;
    padding: 20px;
}
