/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    /* color: #333; */
    background-color: #0F2226;
    padding: 0 1rem;
}

a {
    text-decoration: none;
    color: #fff;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 1rem 0; */
    background-color: #005580;
    color: white;
}

.header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.header ul {
    display: flex;
    list-style: none;
}

.header li {
    margin: 0 1rem;
}

.header a {
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.header a:hover {
    color: #ffcc00;
}

.circle-container{
    display: flex;
    flex-direction: row;
    top:10px;
    left:10px;
    gap: 30px;

  }

/* Project Section */
.project {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    /* background-color:#A69E8F; */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.project .btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color:grey;
    border-radius: 25px;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s;
}

.project .btn:hover {
    border: 1px solid #ccc;
}

.project-image img {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    margin-top: 1.5rem;
}

/* Overview Section */
.overview {
    margin: 2rem 0;
    padding: 1.5rem;
    /* background: #ffffff; */
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.overview h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.overview p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Gallery Section */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    width:50%;
    margin: 2rem auto; /* Center the grid container horizontally */
    align-items: center; /* Align items within the grid */
    justify-content: center; 
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Tools Section */
.tools {
    margin: 2rem 0;
    text-align: center;
}

.tools h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.tool-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.tool img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease-in-out;
}

.tool img:hover {
    transform: scale(1.2);
}

.sidebyside{
    display: grid;
    grid-template-columns: repeat(2,3fr);
    background-color: #fff;
}

.content{
    display: grid;
    grid-template-columns: repeat(2,3fr);
}
.image{
    display: flex;
    flex: content;
    justify-content: center;
    justify-items: center;
    margin-top: 2rem;

}


/* Responsive Design */
@media (max-width: 768px) {
    .header ul {
        flex-direction: column;
        align-items: center;
    }

    .header li {
        margin: 0.5rem 0;
    }

    .tools h2 {
        font-size: 1.5rem;
    }

    .project-header h1 {
        font-size: 2rem;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .rest-content{
        max-width: 50%;
       
    }
}
