body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

h1,
h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    color: #6cb2eb;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

a {
    color: #6cb2eb;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #4aa3df;
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 15px 0;
    font-size: 1.1rem;
}

/* Section Styles */
.section {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro {
    background-color: #1a1a1a;
    color: white;
}

.intro h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.intro p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.intro a {
    margin: 0 10px;
    padding: 10px 20px;
    background-color: rgba(108, 178, 235, 0.1);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.intro a:hover {
    background-color: rgba(108, 178, 235, 0.2);
}

.projects {
    background-color: #262626;
}

.skills {
    background-color: #1a1a1a;
}

.contact {
    background-color: #262626;
    color: white;
}

/* Decorative Elements */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(108, 178, 235, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Top-left half circle */
.section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: #6c6c6d; /* A different shade of blue */
    border-radius: 50%;
    z-index: 1;
}

/* Top-right half circle */
.section::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: #6c6c6d; /* Soft blue */
    border-radius: 50%;
    z-index: 1;
}

/* Bottom-left half circle */
.section .bottom-left-circle {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: #6cb2eb; /* A different shade of blue */
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

/* Bottom-right half circle */
.section .bottom-right-circle {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: #6cb2eb; /* Soft blue */
    border-radius: 50%;
    opacity: 0.2; /* Semi-transparent */
    z-index: 1;
}




/* Shape Patterns */
.shape-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.shape-pattern div {
    position: absolute;
    background-color: rgba(108, 178, 235, 0.1);
}

.shape-pattern .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.shape-pattern .rectangle {
    width: 60px;
    height: 30px;
}

.shape-pattern .star {
    width: 40px;
    height: 40px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p,
    li {
        font-size: 1rem;
    }

    .section {
        padding: 80px 20px;
    }
}

/* Projects Section Styling */
.project-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.project-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(108, 178, 235, 0.2);
}

.project-card a {
    color: #6cb2eb;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

.project-card a:hover {
    text-decoration: underline;
}

.project-card p {
    margin: 10px 0 0;
    color: #ccc;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.skill-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Language Toggle Styling */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.language-toggle button {
    background: none;
    border: none;
    color: #6cb2eb;
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.language-toggle button:hover {
    background-color: rgba(108, 178, 235, 0.2);
    color: #4aa3df;
}

.language-toggle button:active {
    background-color: rgba(108, 178, 235, 0.3);
}