/* General Styles */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Comic Sans MS', sans-serif;
    text-decoration: none;
}

body {
    overflow-x: hidden;
    background: linear-gradient(to right, skyblue, white);
}


/* Hero Header */

.hero-header {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to right, skyblue, white);
}

.wrapper {
    width: 1280px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header Styles */

header {
    padding: 40px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.logo i {
    height: 45px;
    width: 45px;
    background-color: #007ced;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-text {
    color: #070000;
    font-size: 30px;
    font-weight: 500;
    margin-left: 10px;
}

nav {
    display: flex;
    align-items: center;
}

.togglebtn {
    display: none;
    cursor: pointer;
}

.togglebtn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #0588fa;
    margin: 5px 0;
}

.navlinks {
    display: flex;
    list-style: none;
}

.navlinks li {
    margin-left: 20px;
}

.navlinks a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

.navlinks a:hover {
    color: #007ced;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: calc(100vh - 100px);
    color: #000000;
    padding: 0 10px;
    background: linear-gradient(to right, skyblue, white);
}

.hero-pic img {
    height: 300px;
    border-radius: 60%;
}

.hero-text {
    max-width: 500px;
}

.hero-text h5,
.hero-text h1,
.hero-text p {
    margin-bottom: 10px;
}

.hero-text h5 {
    font-size: 20px;
}

.hero-text h1 {
    font-size: 50px;
}

.btn-group a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    color: #fdfcfc;
    background: #007ced;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-group a.active,
.btn-group a:hover {
    background: #005bb5;
}

.social {
    margin-top: 20px;
}

.social a {
    color: #030000;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
}

.social a:hover {
    color: #007ced;
}


/* Skills Section */

.skills {
    background: linear-gradient(to right, skyblue, white);
    padding: 60px 0;
}

.skills h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.skill {
    background: #007ced;
    color: #fff;
    border-radius: 100%;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.skill i {
    font-size: 20px;
}


/* Projects Section */

.projects {
    padding: 60px 0;
}

.projects h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.project-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.project {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    margin: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project h3 {
    margin-bottom: 10px;
}


/* Achievements Section */

.achievements {
    background: linear-gradient(to right, skyblue, white);
    padding: 60px 0;
}

.achievements h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.achievement-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.achievement {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    margin: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.achievement i {
    font-size: 30px;
    margin-bottom: 10px;
}


/* Contact Section */

.contact {
    padding: 60px 0;
}

.contact h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact label {
    margin-bottom: 10px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact input[type="submit"] {
    background: #007ced;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.contact input[type="submit"]:hover {
    background: #005bb5;
}


/* Footer */

footer {
    background: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    display: inline;
    margin: 0 10px;
}

.footer-links a {
    color: #ffffff;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #007ced;
}