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

body {
    /*font-family: 'Poppins', sans-serif; */
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('images/background_10.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-size: small;
   font-family: math;
}
.background{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/background_10.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(20px); /* Blurs the background image */
    z-index: -1; /* Places the background behind all content */
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index:1; /* Ensures content appears above the blurred background */
}

.navbar {
    /*background-color: rgba(51, 51, 51, 0.8);*/
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content:flex-end;
}

.nav-links {
    list-style: none;
    display: flex;
    margin:0;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
   color: #fff; /* Default text color */
    text-decoration: none; /* Remove underlines */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.nav-links a:hover {
    color: deeppink; /* Change color on hover */
}


.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    color: #fff;
    position: relative; /* Needed for positioning child elements */
}

.hero .profile-wrapper {
    position: relative; /* Required for layering */
    width: 180px; /* Adjust size of the circular background */
    height: 110px; /* Ensure it's a perfect circle */
    background-color: white; /* White circular background */
    border-radius: 50%; /* Make it circular */
    display: flex; /* Center the image inside the circle */
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.hero img {
    width: 200px; /* Size of the profile picture */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Make the image circular */
}

.hero h1 {
    font-size: 2.0rem; /* Adjust font size for name */
    font-weight: bold; /* Bold text for name */
    margin-top: 1rem; /* Add spacing above the name */
}

.subheading {
    font-size: 1.5rem; /* Adjust font size for title */
    font-weight: normal; /* Normal weight for title */
    color: #dcdcdc; /* Light gray color for contrast */
}

.hero-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin-top: 2rem;
    margin-bottom:4rem;
}

.highlight-yellow {
    color: #F1C334;
}

.highlight-deeppink {
    color: deeppink;
}

.highlight-pink{
color: #E7416D;    
}

.highlight-darkturquoise{
    color: darkturquoise;
}
.highlight-greenyellow{
    color: greenyellow;
}

.button {
    display: inline-block;
    background-color: white; /* White background for the button */
    color: black; /* Black text color */
    padding: 0.8rem 2rem; /* Adjust padding for size */
    text-decoration: none; /* Remove underline from text */
    border-radius: 50px; /* Make the button rounded */
    font-size: 1rem; /* Adjust font size */
    font-weight: bold; /* Bold text */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.button:hover {
    background-color: black; /* Change background to black on hover */
    color: white; /* Change text color to white on hover */
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4); /* Increase shadow intensity on hover */
    transform: translateY(-3px); /* Slight upward movement on hover */
}

.button i {
    margin-left: 8px; /* Add space between text and icon */
}

main {
    flex: 1;
    padding: 2rem;
}

/* About Card */

#about-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh; /* Ensures card is vertically centered */
}

.about-title {
    text-align: center; /* Center-align the title */
    font-size: 1.5rem; /* Adjust font size */
    color: darkturquoise; /* Title color */
    margin-bottom: 2rem; /* Add space below the title */
    font-family: serif;
    font-weight: bolder;
}

#about-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

/* Centering the Skills Card */
#skills-card-wrapper {
    display: flex; /* Use flexbox for centering */
    flex-direction: column;
    align-items: center; /* Center vertically */
     justify-content: center; /* Center horizontally */
    min-height: 75vh; /* Make the wrapper take full viewport height */
}
.skills-title {
    text-align: center; /* Center-align the title */
    font-size: 1.5rem; /* Adjust font size */
    color: darkturquoise; /* Title color */
    margin-bottom: 2rem; /* Add space below the title */
    font-family: serif;
    font-weight: bolder;
}

/* Skills Card Styles */
#skills-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
}

/*
#skills-card-wrapper h2 {
    font-size: 30px;
    color: darkturquoise;
}*/

/* Flex container for skills */
.skills-container {
    display: flex;
    justify-content: space-between;
}

.skills-category {
    flex: 1;
    font-size: small;
    font-family: math;
    padding-right: 1rem;
}

.skills-category h3 {
    font-size: 18px;
}

.skills-category ul {
    list-style-type: none;
}

.skills-category li {
    font-size: 16px;
}

.skills-category li i {
    color: darkturquoise;
}

@media screen and (max-width: 768px) {
    .skills-container {
        flex-direction: column; /* Stack vertically on smaller screens */
        gap: 10px; /* Reduce spacing between items */
    }
}

/* Footer Styles */
footer {
    background-color: rgba(51, 51, 51, 0.8);
    color: white;
    padding: 1rem; /* Add padding for spacing */
    display: flex; /* Use Flexbox for layout */
    justify-content: space-between; /* Space between logo, copyright, and right content */
    align-items: center; /* Align items vertically in the center */
}

/* Logo Styling */
.footer-logo img {
    width: 100px;
    height: auto;
}

/* Copyright Styling */
.copyright {
    text-align: center; /* Center-align copyright text */
    font-size: 0.9rem; /* Slightly smaller font size */
}

/* Footer Content Styling (Right Side) */
.footer-content {
    text-align: right; /* Align text to the right */
}

.footer-content p {
    margin-bottom: 0.5rem; /* Add spacing below the statement */
}

.social-links {
    display: flex; /* Use Flexbox for icons */
    justify-content: center; /* Align icons to the center */
    gap: 15px; /* Add spacing between icons */
}

.social-links a {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px; /* Fixed width for icons */
    height: 30px; /* Fixed height for icons */
    background-color: white; /* White background for icons */
    border-radius: 70%; /* Make the background circular */
    text-decoration: none; 
}

.social-links a i {
   /*  color: inherit; Use inherited color for icons */
}

/* LinkedIn Icon Styling */
.linkedin-icon {
    color: #0077B5; /* LinkedIn blue */
}

/* GitHub Icon Styling */
.github-icon {
    color: #6e5494; /* GitHub gray-purple */
}

/* Gmail Icon Styling */
.gmail-icon {
    color: #D44638; /* Gmail red */
}

/* Hover Effects for Icons */
.social-links a:hover i {
    transform: scale(1.2); /* Slight zoom effect on hover */
    transition: transform 0.3s ease, color 0.3s ease;
}


/* Responsive Footer for Small Screens */
@media screen and (max-width: 768px) {
    footer {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: center; /* Center-align all content horizontally */
        gap: 1rem; /* Add spacing between stacked items */
        text-align: center;
    }

    .footer-content {
        text-align: center; /* Center-align content on small screens */
        margin-top: 1rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 0.5rem;
        gap: 10px; /* Reduce spacing between icons on small screens */
    }

    .copyright {
        margin-top: 1rem;
        font-size: 0.8rem; /* Slightly reduce font size for smaller screens */
        text-align: center;
        width: auto; /* Ensure it fits well on small screens */
    }
}




/* Portfolio Page Styles */

#portfolio-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   /* min-height: 75vh;*/
}
.portfolio-title{
    text-align: center;
    font-size: 2.0rem;
    color: darkturquoise;
    margin-bottom: 1rem;
    font-family: serif;
    font-weight: bolder;
}

.portfolio-subtitle{
    text-align: center;
    font-size: 1rem;
    color: white;
    margin-bottom: 1rem;
    font-family: serif;
    font-weight: bolder;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two cards per row */
    gap: 2rem; /* Space between cards */
    justify-content: center; /* Center align the grid */
}

/* Portfolio Card */
.portfolio-card {
    background-color: white; /* Default background color (overridden by classes below) */
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: space-between; /* Space between content and footer */
    max-width: 350px; /* Reduce card width */
    font-size: small;
    font-family: math;
}

/* Different Pastel Background Colors */
.pastel-blue {
    background-color: #dceeff; /* Light blue */
}

.pastel-pink {
    background-color: #ffdce5; /* Light pink */
}

.pastel-yellow {
    background-color: #fff9cc; /* Light yellow */
}

.pastel-green {
    background-color: #dfffe0; /* Light green */
}

.pastel-purple {
    background-color: #f3e5ff; /* Light purple */
}

.pastel-orange {
    background-color: #ffe8cc; /* Light orange */
}

.pastel-lavender {
    background-color: #e6e6fa; /* Light lavender */
}

.pastel-teal {
    background-color: #b2d8d8; /* Light teal */
}

/* Card Footer */
.card-footer a {
    text-decoration: underline; /* Make it a link */
    color: darkblue;
}

.card-footer a:hover {
    color: navy; /* Slightly darker blue on hover */
}

.connect-link {
    color: lightblue;
    text-decoration: underline;
    font-weight: bolder;
}

html {
    scroll-behavior: smooth;
}

@media screen and (max-width: 768px) {
    footer {
        flex-direction: column; /* Stack logo, social links, and copyright vertically */
        align-items: center; /* Center-align all content horizontally */
        padding: 1.5rem; /* Adjust padding for smaller screens */
        gap: 1rem; /* Add spacing between stacked items */
    }

    .footer-logo {
        margin-bottom: 1rem; /* Add spacing below the logo */
    }

    .social-links {
        justify-content: center; /* Center-align icons on smaller screens */
        margin-bottom: 1rem;
    }

    .copyright {
        margin-top: 1rem;
        font-size: 0.8rem; /* Slightly reduce font size for smaller screens */
        text-align: center;
        width: auto; /* Ensure it fits well on small screens */
    }
}



@media screen and (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr; /* One card per row on small screens */
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        flex-direction: column;
    }
    
    .hero h1{
        font-size: 2rem;
    }
    
    .hero-text{
    font-size: 1.2rem; /* Adjust font size */
    max-width: 800px; /* Limit text width */
    margin: 1rem auto 2rem; /* Center and add spacing */
    color: #fff; /* Default text color is white */
    }

    /* Highlight specific words with different colors */
.hero-text::before {
    display: block;
    /*content: "Experienced Technical Writer with a data engineering background, skilled in creating clear, concise, and effective documentation for complex technical systems. Passionate about bridging the gap between development teams and end-users";*/
    background: linear-gradient(90deg, #fff 50%, #007bff 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

}
