/* Base Styles */
body {
    font-family: 'Consolas', 'Courier New', monospace; /* Developer-friendly monospace font */
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    /* padding: 10px; Added padding to prevent content from touching the edges */
    box-sizing: border-box; /* Ensures padding does not add to the width */
    font-family: Arial, sans-serif;
    
}
@keyframes wave-hand {
    0%, 100% {
        transform: rotate(0deg);
    }
    20%, 60% {
        transform: rotate(-20deg);
    }
    40%, 80% {
        transform: rotate(10deg);
    }
}

.wave-hand {
    display: inline-block;
    animation: wave-hand 2s infinite;
}


section {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 20px;
}
/* Header */
header {
    background-color: #24292e; /* GitHub-like dark background for header */
    color: #ffffff;
    border-bottom: 1px solid #444c56;
    padding: 20px 40px; /* Increased padding for better spacing */
    text-align: center;
}
.content-section{
    border: 2px solid;
    padding: 2em;
}
/* Navigation */
nav a {
    margin: 0 15px;
    color: #9da5b4; /* Subtle color for navigation links */
    text-decoration: none;
    font-size: 16px;
}

nav a:hover, nav a:active {
    color: #ffffff; /* Bright color for hover state */
}

/* Content Styles */
.content {
    width: calc(100% - 20px); /* Adjust width to account for padding */
    max-width: 1200px; /* Set a max-width for very large displays */
    margin: 20px auto; /* Center content and add vertical spacing */
    padding: 20px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* General Layout Adjustments for Content and Image */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 20px;
}


.content-description {
    flex: 1; /* Take up remaining space */
    text-align: left; /* Align text to the left */
}


/* Footer */
footer {
    background-color: #24292e;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .content, header, footer {
        width: calc(100% - 20px); /* Adjust width to account for padding */
        padding: 10px;
    }

    nav a {
        font-size: 14px;
    }
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-pic {
        margin-bottom: 20px; /* Add margin below the image when stacked */
        width: 100%; /* Full width on smaller screens */
        max-width: 300px; /* Limit maximum size */
    }
    .content-description {
        text-align: center; /* Center text for smaller devices */
    }
    .content-section {
        flex-direction: column; /* Stack elements vertically on smaller screens */
    }
}

/* Profile Picture Styling */
.profile-pic {
    border-radius: 50%;
    margin: 10px auto;
    display: block;
    height: 20em;
    width: 20em;
}

.profile_img_div {
   
    width: 50%;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
}

.profile_img_div img.profile-pic {
    height: auto;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links img.social-icon  {
    width: 24px; 
    height: auto; 
    transition: transform 0.3s ease; 
}

.social-links a:hover img {
    transform: scale(1.2); /* Slightly enlarge icons on hover */
    color: #0077cc; 
    text-decoration: underline;
    transition: transform 0.3s ease;
}

/* Adjusting Spacing and Font Sizes */
h3 {
    color: #6cc644; /* Green color for headings to give a terminal-like feel */
    font-size: 20px;
    margin-top: 20px;
}

h1 {
    font-size: 28px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
h2{
    color:#006600;
    font-size: 24px;
    margin-top: 30px;
    
}
p, li {
    font-size: 16px;
    color: #586069; /* Softer text color for readability */
    font-size: 16px;
    line-height: 1.6;
}

/* Custom Styling for Code and Preformatted Text */
code, pre {
    background-color: #f6f8fa;
    border: 1px solid #e1e4e8;
    font-size: 14px;
}

code {
    padding: 2px 6px;
    border-radius: 3px;
    color: #d14;
}

pre {
    padding: 8px;
    overflow: auto;
}

/* Link Styling */
a {
    color: #0366d6; /* Classic link blue for clear visibility */
}

a:hover {
    text-decoration: underline;
}


.skills-section {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.skills-section h3 {
    font-size: 22px;
    color: #0056b3;
    margin-bottom: 10px;
}

.skills-section ul {
    list-style-type: none; /* Removes default list bullet */
    padding: 0;
}

.skills-section ul li {
    padding-bottom: 5px; /* Adds space between items */
}

.skills-section h4 {
    font-size: 18px;
    color: #333;
    margin-top: 15px;
}


/* Blog Styles */
.blog-listing li {
    /* font-size: 16px;
    color: #666666; */
    margin-bottom: 10px;  
    border-bottom: 1px solid #eee;
}

.blog-listing a {
    color: #0077cc; 
    text-decoration: none;
}

.blog-listing a:hover {
    text-decoration: underline; 
}

