@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Overall Page Background */
body {
    font-family: "Poppins", sans-serif; /* Ensure consistent font */
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(197, 196, 196, 0.8)), url('images/background.jpg');
    background-size: cover;
    background-position: center;
}

.header {
    height: 10vh;
    width: 100vw;
    background-position: fill;
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between; /* Space between logos and links */
    align-items: center; /* Center items vertically */
    position: absolute;
    height: 12%;
    margin-top: 2%;
    width: 95%;
    margin-left: 2%;
    margin-right: -2%;
    padding: 10px 20px;
}

.logo {
    margin-top: 0%;
    font-size: 1.8rem;
    font-weight: bold;
    color: #0c0c0c;
    text-transform: sentencecase; /* Sentence case for logo text */
}
.logo a {
    text-decoration: none; /* Remove underline from logo link */
    color: #0c0c0c; /* Logo color */
    font-family: "Poppins", sans-serif; /* Add custom font */
}

.nav-links ul {
    display: flex;
    list-style: none; /* Remove default list styling */
    gap: 50px; /* Add spacing between links */
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-links ul li a {
    text-decoration: none; /* Remove underline from links */
    color: rgb(10, 10, 10); /* Keep the link color white */
    font-size: 20px; /* Adjust font size */
    transition: all 0.3s; /* Smooth transition for hover effect */
    font-family: "Poppins", sans-serif; /* Add custom font */
    position: relative; /* Set position for pseudo-element */
}

.nav-links ul li a::after {
    content: ''; /* Add an empty pseudo-element */
    position: absolute;
    left: 0;
    bottom: -2px; /* Position the underline slightly below the text */
    width: 0;
    height: 2px; /* Thickness of the underline */
    background-color: rgb(6, 6, 6); /*underline */
    transition: width 0.3s ease; /* Smooth transition for underline */
}

.nav-links ul li a:hover::after {
    width: 100%; /* Expand the underline on hover */
}
.text-box-container {
    display: flex;
    flex-direction: row; /* Arrange items in a row */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    width: 90%;
    margin-top: 8%; 
    margin-left: auto;
    margin-right: auto;/* Center the container horizontally */
    position: relative; /* Change to relative to avoid overlapping */
    top: auto; /* Remove absolute positioning */
    left: auto; /* Remove absolute positioning */
    transform: none; /* Remove transform */
    z-index: 10; /* Ensure it stays above other sections */
    background-color: rgba(69, 69, 70, 0);
}

.text-box-image {
    width: 350px; /* Set a fixed width */
    height: 350px; /* Set the same height as the width */
    margin-right: 40px; /* Add spacing between the image and text */
    border-radius: 50%; /* Make the image circular */
    box-shadow: 0 5px 15px rgba(236, 235, 235, 0.2); /* Optional: Add a shadow */
    object-fit: cover; /* Ensure the image fits within the circle */
}

.text-box {
    text-align: left; /* Align text to the left */
    color: #070707;
    font-family: "Poppins", sans-serif;
    max-width: 600px; /* Optional: Limit the width of the text */
}
.text-box h2 {
    font-size: 27px; /* Adjust font size for the header */
    color: #070707; /* Dark text color */
}
.text-box h3 {
    font-size: 21px; /* Adjust font size for the header */
    color: #3e3e3e; /* Dark text color */
    text-align: justify;
    font-weight: 400;
}
/* Media query for smaller screens */
@media (max-width: 850px) {
    .text-box-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        text-align: left;
        margin-top: 20px; /* Add spacing from the header */
    }
    .text-box h3{
        text-align: left;
    }

    .text-box-image {
        margin-right: 0; /* Remove right margin */
        margin-bottom: 20px; /* Add spacing below the image */
    }

    .text-box {
        max-width: 90%; /* Adjust text width for smaller screens */
    }
    .logo {
        margin-top: 10%; /* Adjust this value to move the name down */
    }
}
.hero-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 16px;
    font-family: poppins, sans-serif;
    font-weight: bold;
    color: #0a0a0a;
    border: 2px solid #070707;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #f5f3f3;
    color: #0d0d0d;
    transform: scale(1.05);
}
/* Hamburger menu styling */
.hamburger-menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute; /* Position it absolutely */
    top: 20px; /* Adjust the position */
    right: 20px; /* Adjust the position */
    z-index: 101; /* Ensure it overlaps the text box */
}

.hamburger-menu div {
    width: 30px;
    height: 3px;
    background-color: rgb(18, 18, 18); /* Red color for the lines */
}

/* Show hamburger menu on smaller screens */
@media (max-width: 850px) {
    .nav-links {
        display: none; /* Hide navigation links by default */
        position: absolute;
        top: 60px; /* Adjust based on your nav height */
        right: 20px;
        background-color: rgba(255, 255, 255, 0.784); /* Background for the dropdown */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
        padding: 10px;
        border-radius: 5px; /* Optional rounded corners */
        z-index: 100; /* Ensure it is below the hamburger menu */
    }

    .nav-links ul {
        flex-direction: column; /* Stack links vertically */
        list-style: none; /* Remove bullets */
        margin: 0;
        padding: 0;
    }

    .nav-links ul li {
        margin: 10px 0; /* Add spacing between links */
    }


    .nav-links ul li a {
        color: rgb(0, 0, 0); /* Red color for links */
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
    }

    .hamburger-menu {
        display: flex; /* Show hamburger menu */
    }
}
/* Responsive Design */
@media (max-width: 850px) {
    .why-choose-us {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-right {
        width: 100%;
    }

    .icon-box {
        flex-direction: column;
        text-align: center;
    }
}
/* About Us Section */
.about-us {
    margin-top: 85vh;
    padding: 60px 20px;
    background-color: #f9f9f900; /* Light background */
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.about-header h2 {
    font-size: 39px;
    color: #333; /* Dark text color */
    margin-bottom: 20px;
    margin-left: 10%;
    margin-right: 10%;
}

.about-header p {
    font-size: 18px;
    color: #555; /* Subtle text color */
    margin-bottom: 40px;
    line-height: 1.6;
    margin-left: 10%;
}


.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 40px; /* Space between grid items */
    text-align: left; /* Align text to the left */
}

.about-item h3 {
    font-size: 24px;
    color: #000; /* Bold heading color */
    margin-bottom: 10px;
}

.about-item p {
    font-size: 16px;
    color: #555; /* Subtle text color */
    line-height: 1.6;
}
/* More Button Styling */
.more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 14px;
    color: white;
    background-color: #ab0303;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 850px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
}
/* LinkedIn Feed Section */
.linkedin-feed {
    margin-top: 100vh;
    padding: 60px 20px;
    background-color: #fcf8f800;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.linkedin-header h2 {
    font-size: 36px;
    color: #110101; /* LinkedIn blue */
    margin-bottom: 10px;
}

.linkedin-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.linkedin-embed iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.linkedin-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #0f0f0f; /* LinkedIn blue */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
/* Experience Section */
.experience {
    padding: 60px 20px;
    background-color: #121212; /* Dark background */
    color: #f9f9f9; /* Light text color */
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.experience-header h2 {
    font-size: 36px;
    color: #f9f9f9b2;
    margin-bottom: 40px;
    line-height: 1.5;
}

.experience-header .highlight {
    color: #fcfafa; /* Highlight color */
    font-weight: bold;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px; /* Space between cards */
    margin-top: 20px;
}

.experience-card {
    background-color: #1c1c1c; /* Slightly lighter dark background */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px); /* Lift the card on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.experience-card h3 {
    font-size: 20px;
    color: #f9f9f9; /* Light text color */
    margin-bottom: 10px;
}

.experience-card p {
    font-size: 14px;
    color: #b3b3b3; /* Subtle text color */
    margin-bottom: 5px;
}

.linkedin-btn:hover {
    background-color: #0a0a0ae2; /* Darker LinkedIn blue */
}
/* Founder's Desk Section */
.founders-desk {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: linear-gradient(13deg, #970303e9, #f4f1f1bd); /* Light gradient background */
    border-radius: 10px;
    margin: 50px auto;
    max-width: 1200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.founders-container {
    display: flex;
    flex-wrap: wrap; /* Ensure responsiveness */
    align-items: center;
    gap: 30px;
    flex-direction: row-reverse; /* Reverse the order: image on the right, text on the left */
}

.founders-text {
    flex: 2;
    text-align: left;
    font-family: "Poppins", sans-serif;
}

.founders-text h2 {
    font-size: 36px;
    color: #f6f3f3; /* Dark text color */
    margin-bottom: 20px;
}

.founders-text p {
    font-size: 18px;
    color: #f7f2f2; /* Subtle text color */
    line-height: 1.6;
}

.founders-image {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.founders-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: transform 0.3s ease; /* Animation on hover */
}

.founders-image img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}
/* Founder Banner Section */
.founder-banner {
    background: linear-gradient(135deg, rgba(229, 229, 231, 0.9), rgba(69, 69, 70, 0.9)), url('images/founder-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #100f0f; /* White text */
    text-align: left;
    padding: 50px 20px;
    margin: 50px auto;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.founder-banner .banner-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.founder-banner .banner-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 850px) {
    .founders-container {
        flex-direction: column; /* Stack text and image vertically on smaller screens */
    }

    .founders-text {
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 850px) {
    .founders-container {
        flex-direction: column; /* Stack text and image vertically */
    }

    .founders-text {
        text-align: center;
    }
}

.technical-projects {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.projects-grid {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 20px; /* Add spacing between items */
}

.project-card {
    background-color: #f9f9f9; /* Light background for cards */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: left;
}

.project-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.project-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.project-card a {
    font-size: 14px;
    font-weight: 500;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-card a:hover {
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 850px) {
    .project-card {
        padding: 15px;
    }

    .project-card h3 {
        font-size: 18px;
    }

    .project-card p {
        font-size: 14px;
    }

    .project-card a {
        font-size: 13px;
    }
}
/* Publications and Awards Section */
.publications-awards {
    padding: 60px 20px;
    background-color: #ffffff00; /* White background */
    text-align: center;
    margin: auto;
    margin-left: 5%;
}

.publications-awards h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.publication-award-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px; /* Space between image and content */
    text-align: left;
}

.publication-image {
    width: 470px;
    height: 270px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.publication-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.publication-content p {
    font-size: 16px;
    color: #555;
}

.publication-content a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.publication-content a:hover {
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 850px) {
    .publication-award-item {
        flex-direction: column; /* Stack image and content vertically */
        text-align: center; /* Center-align text */
    }

    .publication-image {
        width: 100%; /* Make the image take full width */
        height: auto; /* Maintain aspect ratio */
        margin-bottom: 15px; /* Add spacing below the image */
    }

    .publication-content h3 {
        font-size: 16px; /* Adjust font size for smaller screens */
    }

    .publication-content p {
        font-size: 14px; /* Adjust font size for smaller screens */
    }
}
/* Skills Section */
.skills {
    padding: 60px 20px;
    background-color: #121212; /* Dark background */
    text-align: center;
    color: #f9f9f9; /* Light text color */
}

.skills h2 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 20px; /* Space between cards */
    justify-content: center;
}

.skill-card {
    background-color: #1c1c1c; /* Black card background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px); /* Lift the card on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Stronger shadow on hover */
}

.skill-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff; /* Light text color */
    margin-bottom: 10px;
}

.skill-card p {
    font-size: 14px;
    color: #b3b3b3; /* Subtle text color */
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on medium screens */
    }
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr; /* 1 card per row on small screens */
    }
}
/* Background Section */
.background {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Light background */
    text-align: left;
    color: #333; /* Dark text color */
}

.background h2 {
    font-size: 28px;
    font-weight: 600;
    color: #121212; /* Darker heading color */
    margin-bottom: 20px;
    text-align: center;
}

.background p {
    font-size: 16px;
    line-height: 1.8;
    color: #555; /* Subtle text color */
    max-width: 800px;
    margin: 0 auto; /* Center the paragraph */
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #f6f4f4;
    color: #111111;
}

textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #f3f0f0;
    color: #0b0b0b;
    margin-bottom: 20px;
}

.submit-btn {
    display: block; /* Make the button a block element */
    margin: 20px auto; /* Center the button horizontally */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #0b0b0b;
    background-color: #fbfcfe;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #5a5858;
    color: azure;
}
/* Contact Banner */
.contact-banner {
    background-color: #363535a3; /* Dark background */
    color: #ffffff; /* Light text color */
    padding: 20px 20px;
    display: flex;
    justify-content: space-between; /* Push items to left and right */
    align-items: center; /* Align items vertically */
    border-bottom: 1px solid #333; /* Subtle border at the bottom */
}

/* Contact Title */
.contact-banner h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0; /* Remove bottom margin to align properly */
    margin-left: 5%;
}
.linkedin {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.linkedin:hover {
    background-color: #ffffff;
    color: #121212;
    border-color: #ffffff;
}
footer {
    margin-top: 10%;
    background-color: #f9f9f900; /* Light background color */
    padding: 20px 0; /* Add vertical padding */
    border-top: 1px solid #3c3c3c; /* Add a top border */
    text-align: center; /* Center-align the content */
}

.footer-container {
    display: flex;
    justify-content: space-around; /* Space out the items */
    align-items: center; /* Align items vertically */
    max-width: 800px; /* Limit the width */
    margin: 0 auto; /* Center the container */
}

.footer-item h4 {
    font-size: 16px;
    font-weight: bold;
    color: #000; /* Black text color */
}

.footer-item p {
    font-size: 14px;
    margin: 0;
    color: #333; /* Dark gray text color */
}

.footer-item a {
    text-decoration: none;
    color: #000; /* Black link color */
    font-weight: bold;
}

.footer-item a:hover {
    text-decoration: underline; /* Add underline on hover */
}
.resume-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}

.resume-section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #b0afaf; /* Light gray line */
}

.resume-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
    color: #000;
}

.resume-item {
    display: flex;
    margin-bottom: 20px;
}

.resume-dates {
    flex: 1.7; /* Adjust width of the date section */
    font-size: 16px;
    color: #555;
    text-align: right;
    padding-right: 50px;
}

.resume-details {
    flex: 3; /* Adjust width of the details section */
}

.resume-details h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
}

.resume-details h4 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 10px;
    color: #0f0f0f;
}

.resume-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resume-details ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    text-align: justify;
}

.resume-details ul li::before {
    content: "• ";
    color: #000;
    font-weight: bold;
    margin-right: 5px;
}
.contact-container {
    max-width: 800px;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;/* Add spacing from the top */
    padding: 40px 20px;
    margin-bottom: 200%;
    font-family: "Poppins", sans-serif;
    background-color: #ffffff1f; /* Add a white background for better readability */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    border-radius: 10px; /* Rounded corners */
    text-align: left;
    font-weight: 500;
    align-self: start;
}

.contact-container h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #000;
    font-weight: normal;
}

.contact-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    font-weight: normal;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

.contact-item {
    width: 100%; /* Ensure items take full width */
    text-align: left; /* Align text to the left */
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #000;
    font-weight: 500;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    margin: 0;
    font-weight: normal;
}

.contact-item a {
    text-decoration: none;
    color: #575758;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
    color: #5b5b5c; /* Darker blue on hover */
}

/* Add responsiveness for smaller screens */
@media (max-width: 850px) {
    .resume-item {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        margin-bottom: 20px;
    }
    .resume-container{
        margin-left: 0; /* Remove any left margin */
        padding-left: 10px;
    }

    .resume-details {
        font-size: 16px;
        color: #333;
        text-align: left; /* Align text to the left */
    }

    .resume-details h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
        color: #000;
    }

    .resume-details h4 {
        font-size: 16px;
        font-weight: normal;
        margin-bottom: 5px; /* Add spacing below the h4 */
        color: #070707;
    }

    .resume-dates {
        font-size: 16px;
        color: #555;
        text-align: left; /* Align text to the left */
        margin-top: 5px; /* Add spacing above the date */
    }
}
/* Project Details Section */
.project-details {
    padding: 20px 20px;
}

.project-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.project-content {
    flex: 2;
    text-align: left;
}

.p-title h2 {
    margin-top: 30px;
    font-size: 28px;
    margin-bottom: 10px;
    margin-left: 5%;
    margin-right: 5%;
    color: #0a0a0a;
    text-shadow: rgb(109, 107, 107) 0.9px 0.9px 0.9px;
    text-align: center;
}

.p-title h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #323131;
    text-align: center;
}

.project-content ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 20px;
    line-height: 1.6;
}

.project-content ul li {
    margin-bottom: 10px;
    color: #050505;
    text-align: justify;
}

.project-content p {
    margin-top: 10px;
    font-size: 20px;
    color: #0a0a0a;
    font-weight: 500;
}

.project-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-images img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 850px) {
    .project-container {
        flex-direction: column;
    }

    .project-images {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .project-images img {
        width: 45%;
    }
}
.project-images {
    flex: 1; /* Take up less space compared to the text */
    display: flex;
    flex-direction: column; /* Stack images vertically */
    gap: 20px; /* Add spacing between images */
    align-items: center; /* Center images horizontally */
    align-content: center; /* Center images vertically */
}

.project-images img {
    width: 100%; /* Ensure images fit within the container */
    min-width: 150px;
    min-height: 150px;
    max-width: 180px;
    max-height: 200px;
    border-radius: 10px; /* Add rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: transform 0.3s ease;
    max-width:fit-content;
}
.project-images img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}
.large-image {
    width: 100%; /* Make it take full width of the container */
    max-width: 250px; /* Set a maximum width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Add rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.large-image:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}
.small-image{
    width: 100%; /* Make it take full width of the container */
    max-width: 350px; /* Set a maximum width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Add rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: transform 0.3s ease; /* Smooth hover effect */
}
.small-image:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}
.project1-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
