* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #d3d3d3;
    color: #333;
}

header {
    background-color: rgb(238, 244, 249);
    color: #000;
    padding: 20px;
    
}

nav {
   text-align: center;
    transform: translateX(-50%);
    
}

.logo{
    margin:0px;
    height: 10px;
    padding-left: 200px;
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    padding-left: 1800px;
    gap: 15px;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    justify-content: space-between;
    font-size: 17px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 9px;
}

nav ul li a:hover {
    text-decoration: none;
    background-color: rgb(135, 169, 243);
    border-radius: 10px;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #1c1b1b;
    margin: 3px 0;
}


.myskills{
    background-color: rgb(238, 244, 249);
   
}

.meroskills{
    justify-content: center;
}

.meroskills h2{
    text-align: center;
   font-size: 23px;;
   
}

.wrapper {
    display: flex;
    max-height: 125px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: 5px;
    background-color: rgb(251, 248, 248)3d3;
  

}
.wrapper::-webkit-scrollbar {
    display: none;
}


.wrapper .item{
    display: flex;
    justify-items: center;
    height: 200px;
    width: 150px;
    
    
}

.wrapper .item img{
    width: 120px;
    height: 110px;
    margin: 15px;
    padding: 14px;
    ;
    /* border: 2px solid #333; */
    box-shadow: #333 0px, 0px, 15px;

}

@media (max-width: 768px) {

    .logo{
        margin:0px;
        height: 10px;
        padding-left: 150px;
        padding-bottom: 30px;
    }
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #9ac3f3;
        position: absolute;
        top: 50px;
        left: 140%;
        transform: translateX(-50%);
        padding: 10px;
        border-radius: 8px;
        width: full-width;
        z-index: 1000;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }
}

section {
    padding: 20px;
    text-align: center;
}

.home {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #eef3f9;
    padding: 50px 20px;
}

.home .description {
    flex: 1;
    max-width: 500px;
    margin: 20px;
}

.home .description h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.home .description p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #555;
}

.home .image {
    flex: 1;
    max-width: 500px;
    margin: 20px;
}

.home img {
    width: 100%;
    height: auto;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
    .home {
        flex-direction: column;
        padding: 30px 20px;
    }
}


.blogs {
    background-color: #ebf0f3;
    padding: 50px 20px;
    
}

.myblog{
    display: flex;
    flex-wrap: wrap;
    margin-left: 10px;
}

.blogs .blog {
    height: auto;
    background-color: #fff;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 330px;
}

.blogs .blog img{
    width: 100%;
    /* object-fit: cover; */
    height: 200px;
    border-radius: 10px;
}

.blogs .blog h4 {
    margin-bottom: 2px;
}

.blogs .blog a {
    align-items: center;
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
}

.blogs .blog a:hover {
    text-decoration: underline;
}


.contact {
    background-color: #eef3f9;
    padding: 50px 20px;
    text-align: center;
}

.contact-form {
    max-width: 400px;
    margin: 20px auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea, .contact-form button {
    margin: 10px 0;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 12px;
}

.contact-form button {
    background-color: #4a90e2;
    color: #fff;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #357ab8;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: #4a90e2;
    font-size: 1.5rem;
}

.social-icons img{
    width: 30px;
    height: 30px;
}

footer {
    background-color:rgb(137, 189, 250);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 0px;
}
