/* Add your styling here */
html, body {
    font-family: 'Google Sans', sans-serif;
}

/* Add your other CSS rules as needed */

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header {
    background-color: white; /* Set the background color as per your design */
    color: #fff; /* Set the text color */
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 100px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 16px;
}

h2 {
    font-size: 24px; /* Set the desired font size */
    color: #333; /* Set the desired text color */
    margin: 20px 0; /* Adjust the margin as needed */
}

/* Add additional styling as needed */


.carousel {
    position: relative;
    text-align: center;
}

.carousel-container {
    display: flex;
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    display: none;
    position: absolute;
}

.carousel-slide img {
    max-width: 100%;
    height: auto;
}

.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}


.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px; /* Adjust the size as needed */
    height: 30px; /* Adjust the size as needed */
    background-color: #333; /* Background color for the arrows */
    color: #fff; /* Text color for the arrows */
    font-size: 20px; /* Adjust the font size as needed */
    text-align: center;
    line-height: 30px; /* Adjust the line height for centering the text */
    cursor: pointer;
    opacity: 0.7; /* Adjust the opacity as needed */
    transition: opacity 0.3s;
}

.arrow-left {
    left: 10px; /* Position the left arrow to the left */
}

.arrow-right {
    right: 10px; /* Position the right arrow to the right */
}

.arrow:hover {
    opacity: 1; /* Increase opacity on hover */
}


.about {
    background-color: #f5f5f5; /* Set the background color as per your design */
    padding: 40px;
    text-align: center;
}

.about h2 {
    font-size: 24px;
    color: #333;
}

.about p {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

/* Add additional styling as needed */


.projects {
    /* Add styles for the projects section */
}

.project-cards-wrapper {
    background-color: #f5f5f5; /* Set the background color as per your design */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}


.project-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.project-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    padding: 20px;
    width: calc(33.33% - 20px); /* To display 3 cards in a row with some margin */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    background-color: #fff;
    overflow: hidden;
    flex: 0 0 calc(30% - 20px); /* To display 3 cards in a row with some margin */
    margin-bottom: 20px;
}

.project-card img {
    max-width: 100%;
    height: auto;
}

.project-card-image {
    max-width: 100%; /* Ensure the image doesn't exceed its container width */
    height: auto; /* Maintain the aspect ratio of the image */
    width: 100%; /* Set the width of the image to 100% of its container */
    /* You can adjust the height or other image styles as needed */
}

.project-card h3 {
    font-size: 18px;
    margin-top: 10px;
    color: #333;
}

.project-card p {
    font-size: 14px;
    color: #666;
}

.project-card:hover {
    transform: scale(1.05); /* Enlarge the card on hover */
}


footer {
    text-align: center;
}


.prev,
.next {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: 0 10px;
}

.prev:hover,
.next:hover {
    background-color: #0056b3;
}

.contact {
    background-color: #f5f5f5; /* Set the background color as per your design */
    padding: 40px;
    text-align: center;
}

.contact h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-details p {
    font-size: 16px;
    color: #666;
    margin: 10px;
    text-align: left;
    flex: 0 0 50%;
}

.contact-details strong {
    font-weight: bold;
    color: #333;
}

.contact-details a {
    color: #007BFF;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Add additional styling as needed */
