@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 62.5%;
}

body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: black;
    color: white;
}

header {
    margin-top: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    background-color: black;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}


.home-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 470px; /* Set the desired size */
    height: 470px; /* Set the desired size */
    border-radius: 50%; /* Make the container circular */
    overflow: hidden; /* Ensures the image doesn't overflow the circle */
    box-shadow: 0 0 5px 8px #b74b4b, /* First layer of glow */
                0 0 5px 8px #b74b4b, /* Second layer of glow */
                0 0 5px 8px #b74b4b; /* Third layer of glow */
}

.home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the circle */
    border-radius: 50%; /* Makes the image itself circular */
}


.home-content h1 span {
    color: #b74b4b; /* Match the text color with the glow or background color */
}















.logo {
    font-size: 3rem;
    color: #b74b4b;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 2.5rem;
    color: white;
}

nav a {
    font-size: 1.8rem;
    color: white;
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active {
    color: #b74b4b;
    border-bottom: 3px solid #b74b4b;
}














@media(max-width:995px) {
    .hamburger {
        display: block;
    }

    nav {
        position: absolute;
        display: none;
        top: 5rem;
        right: 0;
        width: 40%;
        border-left: 3px solid #b74b4b;
        border-bottom: 3px solid #b74b4b;
        border-bottom-left-radius: 2rem;
        padding: 1rem solid;
        background-color: #161616;
        border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: block;
    }

    nav a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    nav a:hover,
    nav a.active {
        padding: 1rem;
        border-radius: 0.5rem;
        border-bottom: 0.5rem solid #b74b4b;
    }
}
















section {
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background-color: black;
}

.home .home-content h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}

span {
    color: #b74b4b;
}

.home-content h3 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-content p {
    font-size: 1.6rem;
}

.home-img {
    border-radius: 50%;
}






















.home-img img {
    position: relative;
    width: 32vw;
    border-radius: 50%;
    box-shadow: 0 0 25px solid #b74b4b;
    cursor: pointer;
    transition: 0.2s linear;
}

.home-img img:hover {
    font-size: 1.8rem;
    font-weight: 500;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #b74b4b;
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: #b74b4b;
}

.social-icons a:hover {
    color: black;
    transform: scale(1.3) translateY(-5px);
    background-color: #b74b4b;
    box-shadow: 0 0 25px #b74b4b;
}



/* General Styles for All Sections */
section {
    min-height: 100vh;
    padding: 5rem 9%;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Heading Styles for Sections */
section h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #b74b4b;
}

/* Paragraph Styles for Sections */
section p {
    font-size: 1.8rem;
    max-width: 80rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}
section {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 9%;
    min-height: 100vh;
}

/* Specific Styles for the Home Section */
.home {
    flex-direction: row;  /* Ensure the image and content are side by side */
    justify-content: space-between;  /* Space out image and content */
    align-items: center;
    gap: 4rem;  /* Add spacing between image and content */
}

/* Home Content and Image Adjustment */
.home-content {
    max-width: 50%;  /* Ensure content takes appropriate width */
    text-align: left;  /* Align text to the left for readability */
}

.home-img {
    max-width: 45%;  /* Ensure image container takes appropriate width */
    display: flex;
    justify-content: center;
}

.home-img img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 25px solid #b74b4b;
    transition: 0.2s linear;
    cursor: pointer;
}

/* Reset Flex Properties for Other Sections */
.resume, .skills, .education, .experience, .contact {
    flex-direction: column;  /* Default flex direction for content */
    justify-content: center;
    align-items: center;
}
/* Additional Styles for Services Section */
.resume {
    background-color: #161616;
}

.skills {
    background-color: #1e1e1e;
}

.education {
    background-color: #161616;
}

.experience {
    background-color: #1e1e1e;
}

.contact {
    background-color: #161616;
}

/* Add Some Space Between Sections */
section + section {
    margin-top: 5rem;
}

/* Services Section Specific Styles */
.resume-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.resume-item {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 1rem;
    width: 30rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}

.resume-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #b74b4b;
}

.resume-item i {
    font-size: 3rem;
    color: #b74b4b;
    margin-bottom: 1.5rem;
}

.resume-item h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.resume-item p {
    font-size: 1.6rem;
    color: #d3d3d3;
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: black;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #b74b4b;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #b74b4b;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.03);
    background-color: #b74b4b;
    color: black;
    box-shadow: 0 0 25px #b74b4b;
}

.resume {
    padding: 10mm;
    font-size: xx-large;
    background-color: #161616;
    text-align: center;
}

/* Skills Section Specific Styles */
.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.skill-item {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 1rem;
    width: 25rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}

.skill-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #b74b4b;
}

.skill-item h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.skill-item p {
    font-size: 1.6rem;
    color: #d3d3d3;
}
.skills {
    padding: 5rem 9%;
    background-color: #1e1e1e;
    color: white;
    text-align: center;
}

.skills h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #b74b4b;
}

.skills p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    color: #d3d3d3;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.skill-item {
    background-color: #161616;
    padding: 2rem;
    border-radius: 1rem;
    width: 30rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}

.skill-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #b74b4b;
}

.skill-item h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.skill-item p {
    font-size: 1.6rem;
    color: #d3d3d3;
}


/* Education Section Specific Styles */
.education-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.education-item {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}

.education-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px #b74b4b;
}

.education-item h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.education-item p {
    font-size: 1.6rem;
    color: #d3d3d3;
}

/* Experience Section Specific Styles */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-item {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}

.experience-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px #b74b4b;
}

.experience-item h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.experience-item p {
    font-size: 1.6rem;
    color: #d3d3d3;
}
.experience {
    background-color: #1e1e1e; /* Dark background color for the section */
    color: white; /* Light text color for contrast */
    padding: 6rem 10%; /* Increased padding for a more spacious look */
    min-height: 100vh;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* Increased gap between experience items for better readability */
}

.experience-item {
    background-color: #161616; /* Darker background color for each experience item */
    padding: 2.5rem; /* Increased padding for a more spacious look */
    border-radius: 1rem; /* Rounded corners for a modern look */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
    transition: 0.3s ease; /* Smooth transition for hover effect */
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center-align items horizontally */
    text-align: center; /* Center-align text */
}

.experience-item h3 {
    font-size: 3rem; /* Increased font size for job titles */
    font-weight: 600; /* Bold font weight */
    margin-bottom: 1.5rem; /* Increased margin for better spacing */
}

.experience-item p {
    font-size: 2.8rem; /* Increased font size for descriptions */
    margin-bottom: 1.5rem; /* Increased margin for better spacing */
    color: #b74b4b; /* Color for the text */
    display: flex;
    align-items: center; /* Center the text vertically within the container */
    justify-content: center; /* Center the text horizontally within the container */
    text-align: center; /* Center text alignment */
}

.experience-item ul {
    list-style: disc;
    margin-left: 2.5rem; /* Increased margin for better alignment */
    font-size: 1.6rem; /* Font size for list items */
    text-align: left; /* Align list text to the left */
}

.experience-item ul li {
    margin-bottom: 0.75rem; /* Increased margin for list items */
    line-height: 1.8; /* Increased line height for readability */
}



/* Contact Section Specific Styles */
/* Contact Page Styles */
.contact {
    background-color: #1e1e1e;/* Gradient background */
    color: white;
    padding: 5rem 10%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    background-color: #b74b4b; /* Semi-transparent background */
    color: #f0f0f0;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(110, 19, 19, 0.3);
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details {
    text-align: center;
}

.contact-details h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
}

.contact-details p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #d3d3d3;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    color: #f0f0f0;
}

.contact-item i {
    font-size: 2rem;
    color: #b74b4b;
}

.contact-label {
    font-weight: bold;
    color: #f0f0f0;
}

.contact-value {
    color: #d3d3d3;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #f0f0f0;
}

.form-group input,
.form-group textarea {
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #b74b4b;
    background-color: #1e1e1e;
    color: #f0f0f0;
    font-size: 1.6rem;
    width: 100%;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b74b4b;
    box-shadow: 0 0 10px rgba(183, 75, 75, 0.3);
    outline: none;
}

button {
    padding: 1.5rem;
    font-size: 1.8rem;
    background-color: #282626;
    color: #f0f0f0;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

button:hover {
    background-color: #b74b4b;
    color: black;
    transform: translateY(-2px);
}

button:active {
    background-color: #b74b4b;
    color: black;
    transform: translateY(1px);
}









.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: black;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #b74b4b;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #b74b4b;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: scale3d(1.03);
    background-color: #b74b4b;
    color: black;
    box-shadow: 0 0 25px #b74b4b;
}




















@media (max-width: 1000px) {
    .home {
        gap: 4rem;
    }
}

@media(max-width:995px) {
    .home {
        flex-direction: column;
        margin: 5rem 4rem;
    }

    .home .home-content h3 {
        font-size: 2.5rem;
    }

    .home-content h1 {
        font-size: 5rem;
    }

    .home-img img {
        width: 70vw;
        margin-top: 4rem;
    }
} 