body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:black;
    color:rgb(42, 165, 77);
    font-family:Georgia, 'Times New Roman', Times, serif;
}
header {
    background-color:darkslategray;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative; /* Ensure z-index works properly */
}
img{
    border-radius: 20em;
}
nav {
    background-color: #19181898;
    color: #fff;
    text-align: center;
    padding: 10px;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    height:40px;
}
.team-name {
    position: relative;
    z-index: 1; /* Ensure the team name appears above the particles */
}
canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; /* Set z-index to send particles behind other elements */
}
p{
   font-size: 1.5em;
}
        .team-member {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .team-member img {
            border-radius: 50%;
            width: 100px; /* Adjust size as needed */
            height: 100px; /* Adjust size as needed */
            object-fit: cover;
        }

        .team-member p {
            margin-top: 10px;
        }
        .vision,
.mission {
    background-color: #f2f2f2; /* Background color */
    padding: 20px; /* Add padding for spacing */
    border-radius: 10px; /* Add border radius for rounded corners */
    margin-bottom: 20px; /* Add margin between vision and mission sections */
}

.animated {
    animation-duration: 1s; /* Animation duration */
}

@keyframes fadeIn {
    from {
        opacity: 0; /* Start with opacity 0 */
    }
    to {
        opacity: 1; /* End with opacity 1 */
    }
}

.fadeIn {
    animation-name: fadeIn; /* Apply fadeIn animation */
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f2f2f2;
    animation: bg-animation 60s linear infinite;
}

.team-member {
    margin: 20px;
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.team-member p {
    margin-top: 10px;
    font-weight: bold;
}

@keyframes bg-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}
.Projects {
    /* CSS for background styling */
body {
    background-color: #f0f0f0; /* Set a light gray background color for the whole page */
    font-family: Arial, sans-serif; /* Use Arial font family for text */
    padding: 20px; /* Add some padding to the body */
}

h2 {
    color:#007bff;/* Set heading color to dark gray */
}

ul {
    list-style-type: none; /* Remove default list styles */
    padding: 0; /* Remove default padding */
}

li {
    background-color: #fff; /* Set background color for list items */
    border-radius: 5px; /* Add border radius for a slightly rounded appearance */
    padding: 15px; /* Add padding to each list item */
    margin-bottom: 10px; /* Add some space between list items */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Add a subtle shadow for depth */
}

a {
    color: #007bff; /* Set link color to blue */
    text-decoration: none; /* Remove default underline */
}

a:hover {
    text-decoration: underline; /* Add underline on hover */
}

}
/* CSS for proper spacing and animation */
body {
    font-family: Arial, sans-serif;
    padding: 20px;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

.project-list {
    list-style-type: none;
    padding: 0;
}

.project-list li {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fade-in 0.5s ease-out; /* Adding animation */
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.project-list li a {
    color: #007bff;
    text-decoration: none;
}

.project-list li a:hover {
    text-decoration: underline;
}
section#contact {
    background-color: rgba(5, 16, 1, 0.5); /* Increase transparency */
    background-image: url(pro.png);
    display: flex;
    justify-content: center; /* Align content horizontally */
    align-items: center; /* Align content vertically */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0; /* Reduce padding */
}

section#contact .container {
    max-width: 600px; /* Reduce container width */
    margin: 0 auto; /* Center the container */
}

section#contact .section-heading {
    color: #fff; /* Increase contrast */
    margin-bottom: 30px; /* Reduce margin */
    text-align: center; /* Center the heading */
}

section#contact .form-group {
    margin-bottom: 20px; /* Reduce margin */
}

section#contact .form-group input,
section#contact .form-group textarea {
    padding: 15px; /* Reduce padding */
    border: 2px solid #fff; /* Add border to increase visibility */
    background: rgba(114, 6, 24, 0.2); /* Make background transparent */
    color: #f3f6ed; /* Increase contrast */
    width: 100%; /* Ensure input fields take full width */
}

section#contact .form-group textarea.form-control {
    height: 150px; /* Reduce textarea height */
}

section#contact .form-group input.form-control:focus,
section#contact .form-group textarea.form-control:focus {
    border-color: #f11c6d; /* Change border color on focus */
}

section#contact .form-control::-webkit-input-placeholder,
section#contact .form-control:-moz-placeholder,
section#contact .form-control::-moz-placeholder,
section#contact .form-control:-ms-input-placeholder {
    color: #7a0f48;
}

section#contact .text-danger {
    color: #e74c3c;
}

/* Make contact information text thicker */
section#contact p {
    font-weight: bold;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    section#contact .container {
        padding: 0 15px;
    }
}
.row{
    text-decoration-color: #fff;
}
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm textarea {
    background-color: rgba(0, 0, 0, 0.5); /* Increase transparency */
    border: 2px solid #fff; /* Add border to increase visibility */
    color: #fff; /* Text color */
    padding: 15px; /* Padding */
    width: 100%; /* Full width */
}

#contactForm input[type="text"]:focus,
#contactForm input[type="email"]:focus,
#contactForm input[type="tel"]:focus,
#contactForm textarea:focus {
    border-color: #1ee2e7; /* Change border color on focus */
}

#contactForm .text-danger {
    color: #e74c3c; /* Error text color */
}

#contactForm .btn.btn-xl {
    background-color: #1ee2e7; /* Button background color */
    border: 2px solid #fff; /* Button border */
    color: #ffffff; /* Button text color */
    padding: 10px 20px; /* Button padding */
    transition: background-color 0.3s ease; /* Smooth transition */
}

#contactForm .btn.btn-xl:hover {
    background-color: #0bb8cc; /* Button background color on hover */
}
.timeline {
    list-style: none;
    padding: 20px 0;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #2d995b; /* Change the color as needed */
    left: 50%;
    margin-left: -2px;
}

.timeline li {
    position: relative;
    width: 50%;
    margin-bottom: 50px;
}

.timeline li:before, .timeline li:after {
    content: " ";
    display: table;
}

.timeline li:after {
    clear: both;
}

.timeline li .timeline-panel {
    width: calc(100% - 60px);
    float: right;
    border: 1px solid #eaeaea; /* Change the border color as needed */
    background: #f7f7f7; /* Change the background color as needed */
    padding: 20px;
    border-radius: 8px;
}

.timeline li .timeline-panel:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 12px 0;
    border-color: transparent #f7f7f7 transparent transparent;
    position: absolute;
    right: -12px;
    top: 12px;
}

.timeline li .timeline-panel h4,
.timeline li .timeline-panel p {
    margin: 0;
}

.timeline li .timeline-image {
    position: absolute;
    z-index: 100;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.timeline li .timeline-image img {
    display: block;
    width: 100%;
    height: auto;
}

.timeline li.timeline-inverted .timeline-panel {
    float: left;
}

.timeline li.timeline-inverted .timeline-panel:before {
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent #f7f7f7;
    left: -12px;
    right: auto;
}

@media (max-width: 768px) {
    .timeline li {
        width: 100%;
    }

    .timeline li .timeline-panel {
        width: calc(100% - 120px);
        float: right;
    }

    .timeline li .timeline-image {
        width: 60px;
        height: 60px;
        left: 50%;
        margin-left: -30px;
        top: 0;
    }

    .timeline li.timeline-inverted .timeline-panel {
        float: left;
    }

    .timeline li.timeline-inverted .timeline-panel:before {
        border-width: 12px 12px 12px 0;
        border-color: transparent #f7f7f7 transparent transparent;
        left: auto;
        right: -12px;
    }
}
