/* 
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: linear-gradient(135deg, #ff6b6b, #ffb6b9, #fae3d9, #bbded6, #8ac6d1);
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

a {
    text-decoration: none;
    color: inherit;
}


.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(51, 51, 51, 0.8);
    color: white;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.navbar a {
    font-size: 1rem;
    padding: 10px 15px;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar a:hover {
    background-color: #ff6b6b;
    transform: scale(1.1);
}

.section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin: 60px auto;
    max-width: 1200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f5f5, #e8f0fe);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}
.container1 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.intro {
    max-width: 600px;
    text-align: left;
}

.profile-picture-container {
    flex-shrink: 0;
}

.profile-picture {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-picture:hover {
    transform: scale(1.05);
}


button, .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary {
    background-color: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background-color: #ff8787;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: #2ecc71;
    color: white;
}

.btn-secondary:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.project img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

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


form {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

form label {
    display: block;
    margin-top: 15px;
    text-align: left;
    font-size: 1rem;
    color: #555;
}

form input, form textarea {
    width: 100%;
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    margin-top: 20px;
}


.footer {
    background-color: rgba(51, 51, 51, 0.8);
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}




.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-content ul {
    margin: 20px 0;
    padding-left: 20px;
    color: #555;
}

.about-content ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 12px 20px;
    font-size */


    /* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: linear-gradient(135deg, #ff6b6b, #ffb6b9, #fae3d9, #bbded6, #8ac6d1);
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite;
    transition: background 0.5s ease;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(51, 51, 51, 0.8);
    color: white;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.navbar a {
    font-size: 1.1rem;
    padding: 12px 20px;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar a:hover {
    background-color: #ff6b6b;
    transform: scale(1.1);
}

/* Sections */
.section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin: 60px auto;
    max-width: 1200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.section:hover {
    transform: translateY(-5px);
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between items */
    justify-content: space-evenly; /* Space items evenly across the row */
    align-items: flex-start; /* Align items to the top */
}

.project-grid {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(3, 1fr); /* Creates 3 equal-width columns */
    gap: 20px; /* Space between project items */
    width: 100%; /* Ensures the grid spans full width of the container */
    box-sizing: border-box; /* Include padding and border in width calculations */
}

.project {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Add some shadow for style */
    border-radius: 8px;
    overflow: hidden;
    text-align: center; /* Center content inside the project container */
}

.project img {
    width: 100%; /* Ensures images stretch across their container */
    height: auto; /* Maintain the aspect ratio */
}

/* Optional: Media Query for smaller screens to ensure responsiveness */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row on smaller screens */
    }
}

@media (max-width: 480px) {
    .project-grid {
        grid-template-columns: 1fr; /* 1 item per row on very small screens */
    }
}



.container1 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* Home Section */
.intro {
    max-width: 600px;
    text-align: left;
}

.profile-picture-container {
    flex-shrink: 0;
}

.profile-picture {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-picture:hover {
    transform: scale(1.05);
}

/* Buttons */
button, .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.btn-primary {
    background-color: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background-color: #ff8787;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: #2ecc71;
    color: white;
}

.btn-secondary:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
}

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.project img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

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

/* Contact Section */
form {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

form label {
    display: block;
    margin-top: 15px;
    text-align: left;
    font-size: 1rem;
    color: #555;
}

form input, form textarea {
    width: 100%;
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: rgba(51, 51, 51, 0.8);
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* About Section */
.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-content ul {
    margin: 20px 0;
    padding-left: 20px;
    color: #555;
}

.about-content ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1rem;
    color: white;
    background-color: #ff6b6b;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff8787;
}


.cert-list {
    list-style-type: none;
    padding-left: 0;
}

.cert-list li {
    background-color: #f7f7f7;
    border-left: 4px solid #007BFF;
    padding: 12px 16px;
    margin-bottom: 10px;
    font-size: 1rem;
}
