/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #000000;
}
.text{
    text-align: center;

}
/* Header Styles */
header {
    background: url('header-image.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

header h1 {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
}

header p {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #f0c808;

}

header button {
    background-color: #f0c808;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

header button:hover {
    background-color: #d4a306;
}

/* Navigation Styles */
nav {
    position: absolute;
    top: 20px;
    right: 20px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #f0c808;
}

/* Section Styles */
section {
    padding: 50px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f0c808;
}

section p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* Skills Section */
.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.skill-card {
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: calc(33.33% - 40px);
    min-width: 200px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.skill-card:hover {
    transform: scale(1.05);
    background-color: #444;
}

.skill-card h3 {
    font-size: 1.2rem;
    color: #f0c808;
    margin-bottom: 10px;
}

.skill-card p {
    color: #ccc;
}

/* Footer Styles */
footer {
    background-color: #111;
    padding: 20px;
    text-align: center;
    color: #fff;
}

footer a {
    text-decoration: none;
    color: #f0c808;
    font-weight: bold;
}

footer a:hover {
    color: #d4a306;
}
td{

    padding:10px;
}
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center; /* Ensures items are centered within each column */
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.contact-item a {
    text-decoration: none;
    color: #0073e6;
}

.contact-item a:hover {
    text-decoration: underline;
}
img{

    width: 300px;
    height: 300px;
    border-radius: 20px;
}
.navbar{

    display: flex;
    justify-content: center;
}
