/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    /* Light gray background */
    color: #333;
    /* Dark text color */
}

h1 {
    font-size: clamp(12px, 4vw, 32px);
}

h2 {
    font-size: clamp(12px, 4vw, 32px);

}

p {
    font-size: clamp(12px, 4vw, 32px);

}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #3a74b1;
    /* Blue header */
    color: #fff;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-left img {
    width: 125px;
    height: 100px;
    border-radius: 50%;
    margin-right: 37px;
}

.header-right {
    margin-left: auto;
}

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

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 50px 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #3a74b1;
    /* Blue heading color */
}

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

.project {
    margin-bottom: 30px;
    background-color: #fff;
    /* White background for project boxes */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Shadow effect */
}

.project img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.contact-info {
    background-color: #3a74b1;
    /* Blue background for contact section */
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Shadow effect */
}

.youtube-button {
    padding: 10px 20px;
    background-color: #ff0000;
    /* Red color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.youtube-button:hover {
    background-color: #cc0000;
    /* Darker red color on hover */
}