@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(#1a0b3b,#4a6db5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    scroll-behavior: smooth;
    position: relative;
    transition: background-color 1s ease;
}

/* Header Styling */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    background: linear-gradient(#1a0b3b, transparent);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header > a.logo {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li {
    list-style: none;
    margin-left: 20px;
}

header ul li a {
    text-decoration: none;
    padding: 8px 20px;
    color: #ffffff;
    border-radius: 25px;
    transition: all 0.3s ease;
}

header ul li a:hover,
header ul li a.active {
    background-color: #ffffff;
    color: #1a0b3b;
}

/* Profile Section Styling */
.container {
    text-align: center;
    color: #ffffff;
    padding: 10%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container h4 {
    font-size: 1.5em;
    color: #d3d3d3;
}

.container h1 {
    font-size: 3.5em;
    margin: 20px 0;
    font-weight: 700;
}

.container p {
    font-size: 1.3em;
    margin-bottom: 20px;
}

.buttons {
    margin: 20px 0;
}

.orange-button {
    background-color: #1a0b3b;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    margin: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.orange-button:hover {
    background-color: #ffffff;
    color: #1a0b3b;
    transform: scale(1.05);
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    text-decoration: none;
    color: white;
    font-size: 2em;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #1a0b3b;
    transform: scale(1.2);
}

/* About Section Styling */
/* About Section Styling */
#about {
    position: relative;
    padding: 80px 50px;
    color: #ffffff;
    text-align: left;
    margin-top: 100px;
}

.section-container {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    align-items: center;
}

.section__pic-container {
    width: 350px;
    height: 350px;
    padding: 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section__pic-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-details-container {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.text-container p {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
}

.title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

h3 {
    font-size: 2rem;
    margin-top: 20px;
    color: #ffffff;
}

.x {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 30px;
}

.x .skills, .x .certificates {
    width: 48%;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skill-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.skill-card i {
    font-size: 2.5em;
    color: #1a0b3b;
    margin-bottom: 10px;
}

.skill-card h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #ffffff;
}

.skill-card p {
    font-size: 1em;
    color: #e0e0e0;
}

.certificates ul {
    list-style: none;
}

.certificates ul li {
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.certificates ul li strong {
    font-size: 1.2em;
    color: #ffffff;
}

.certificates ul li a.certificate-link {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #1a0b3b;
    font-weight: 600;
    padding: 8px 15px;
    border: 2px solid #1a0b3b;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.certificates ul li a.certificate-link:hover {
    background-color: #1a0b3b;
    color: #ffffff;
}

@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
        text-align: center;
    }

    .section__pic-container {
        width: 250px;
        height: 250px;
    }

    .about-details-container {
        padding: 1rem;
    }

    .x {
        flex-direction: column;
        text-align: center;
    }

    .x .skills, .x .certificates {
        width: 100%;
    }
}

/* Projects Section Styling */
#projects {
    position: relative;
    margin-top: 100px;
    padding: 80px 50px;
    /* background: linear-gradient(#a8d5e2, #4a6db5); */
    color: #fff;
}

.experience-details-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.one, .two, .three {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: all 0.3s ease;
}

.one:hover, .two:hover, .three:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.one h3, .two h3, .three h3 {
    font-size: 1.8rem;
    color: #1a0b3b;
    margin-bottom: 15px;
}

.one p, .two p, .three p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.project-link {
    display: inline-block;
    text-decoration: none;
    color: #1a0b3b;
    font-weight: 600;
    padding: 8px 15px;
    border: 2px solid #1a0b3b;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background-color: #1a0b3b;
    color: #ffffff;
}

@media (max-width: 768px) {
    .experience-details-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Section Styling */
#contact {
    padding: 80px 50px;
    /* background: linear-gradient(#4a6db5, #1a0b3b); */
    color: white;
    text-align: center;
}

.per {
    background-color: #ffffff;
    color: #1a0b3b;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.per h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.per p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.per a {
    color: #1a0b3b;
    text-decoration: none;
    font-weight: 600;
}

.per a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    background-color: #1a0b3b;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    width: 100%;
}

footer p {
    font-size: 1em;
}
