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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}


.nav-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
   align-content: center;
   height: 60px;
   background-color: rgba(82, 76, 76, 0.5);
   align-items: center;
   position: sticky;
   top: 0;
   
}

.home-logo{
    text-decoration: none;
    font-size: 35px;
    color: #222831;
    font-weight: bold;
    padding: 2px;
    color: #000;
}


.nav-anchors{
    margin-left: 6rem;
    margin-right: 10px;
    text-decoration: none;
    color: #222831;
    font-size: 20px; 
    font-weight: 500;
    font-weight: 600;
    
}

.nav-anchor-style{
    border: none;
    background-color: #33adff;
    padding: 7px 15px;
    border-radius: 20px;
    color: #ffff;
}

@media (max-width: 600px) {

    .home-logo{ 
        font-size: 29px; 
    }

    .nav-anchors{
        font-size: 15px; 
        margin-left: 2rem;
    }

}






.main-section{
  background-color: #d9d9d9;
}

.sub-main-section{
    padding-top: 100px;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: space-around;
   
}

.about-me-section{
    width: 50%;
    align-content: center;

}

.my-profile-contain{
    width: 40%;
    margin-left: 50px;
}

.akash-amode-img{
    height: 400px;
    width: 400px;
    border: 3px solid #fff;
    border-radius: 50%;
}


.work{
    font-size: 30px;
}

.font-style{
    font-size: 40px;
}


.about-me{
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 500;
}

.social-media{
    padding-top: 20px;
}

.social-media-account{
   padding-right: 20px;
}

.about-me-btn{ 
    padding: 10px 20px;
    border: 2px solid #000;
    border-radius: 5px;
    color: #fff;
    background-color: #33adff;
    font-size: 20px;
    cursor: pointer;
}

.social-media-icon{
    height: 50px;
    border: 2px solid #000000;
    padding: 5px;
    border-radius: 5px;
    background-color: #ffffff;

}

.social-media-icon:hover{
    border-radius: 20px;
    transition: 0.3s;

}


@media (max-width: 600px) {
   
    .akash-amode-img{
        height: 250px;
        width: 250px;
        margin-right: 50px;
    }

    .font-style{
        font-size: 25px;
    }

    .work{
        font-size: 20px;
    }

    .sub-main-section{
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        align-items: center;
    }

    .my-profile-contain{
        width: 60%;
        margin-left: 0px;
    }

    .social-media{
        width: 100%;
    }
    
    .about-me-section{
        width: 100%;
        align-content: center;
    }
      

}



/* skills section --------------------------*/


.skill-section-heading{
    text-align: center;
    padding: 30px 0px;
    color: #fff;
}

.skill-set{
    height: 100px;
    margin: 10px;
}

.skill-contain{
    display: flex;
    justify-content: space-evenly;
}

.skill-heading{
    display: flex;
    justify-content: space-evenly;
    color: #000;
}

.skill-section{
    padding-bottom: 20px;
    background-color: #000;
    width: 100%;
}

.skill-box{
    padding: 5px;
    border: 2px solid #fff;
    border-radius: 10px;
    background-color: #fff;
    
}


@media (max-width: 600px) {

    .skill-set{
        height: 40px;
        width: 45px;
        margin: 5px;

    }

    .skill-heading{
        font-size: 12px;
    }

}

/* project section........................... */

.project-section{
    background-color: #e7e6e1;
}


.project-heading{
   text-align: center;
   padding: 30px 0px;
}

.project-container{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}




/* project cards */


.portfolio-card {
    display: flex; 
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 80%;
    height: 350px; 
    margin: 15px;
    transition: transform 0.3s;
}

.portfolio-card:hover {
    transform: scale(1.05);
}

.project-image {
    width: 40%; 
    height: auto;
}

.project-info {
    padding: 15px;
    width: 60%;
    padding: 40px;
  
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.project-tech {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.button-container {
    display: flex; 
    gap: 40px; 
    margin-top: 50px;
}

.button {
    text-decoration: none;
    background-color: #007BFF; /* Bootstrap primary color */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
}

/* Responsive Design */
@media (max-width: 600px) {
    .portfolio-card {
        flex-direction: column; /* Stack vertically on small screens */
        max-width: 100%;
    }

    .project-image {
        width: 100%; /* Full width for the image */
    }

    .project-info {
        width: 100%; /* Full width for the text section */
    }

    .project-title {
        font-size: 1.25rem;
    }

    .project-description {
        font-size: 0.9rem;
    }
}




/* sdjkghskdgkjhsdhgklsdfgs */
.project-card {
    width: 300px;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    height: 200px;
}

.project-content {
    padding: 15px;
    background-color: #fff;
    text-align: center;
}

.project-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.project-content p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.project-name{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.btn-container {
    display: flex;
    justify-content: space-between;
}

.project-content .code-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    flex: 1;
    margin: 0 5px;
}

.code-btn:hover{
    background-color: #0056b3;
}



  /* contact section css code******************************************** */
 

.contact-section {
    padding: 50px 0;
    background-color: #e7e6e1;
}

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

.contact-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    border: 2px solid #fff;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.btn-submit {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0056b3;
}

@media (min-width: 576px) {
    .form-group {
        flex-direction: row;
        justify-content: space-between;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"] {
        width: 48%;
    }
}


/* footer section css *****************************************/

.footer {
    background-color: #001433;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer h3, .footer h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer p, .footer a {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
}

.footer-about p {
    max-width: 250px;
    margin: 0 auto;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover, .footer-social a:hover {
    color: #007bff;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social .social-icon {
    transition: background-color 0.3s ease;
    height: fit-content;
 
}

.footer-social .social-img:hover {
    background-color: #007bff;
}

.social-img{
    height: 40px;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 2px;
    background-color: #fff;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #3b3b3b;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-about, .footer-links, .footer-contact, .footer-social {
        margin-bottom: 20px;
    }
}
