header {
    z-index: 1000;
}

.container {
    max-width: 1200px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #007bff;
    display: block;
    margin: 0.5rem auto 0;
}

.section-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.project {
    margin-bottom: 1.5rem;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.project-header {
    background-color: #f8f9fa;
    padding: 1rem;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #007bff;
}

.project-header p {
    margin: 0;
    font-size: 1rem;
    color: #666;
}
        .project-info {
            display: none;
        }
        #projects {
            padding-top: 100px; /* Adjust this value based on your header's height */
        }
        .project-title {
            cursor: pointer;
            position: relative;
            padding-right: 30px; /* Space for the indicator */
        }
        .project-title .indicator {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5em;
        }
        .carousel-inner img {
            width: 100%;
            height: auto;
        }
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
        }
        footer {
            background-color: #343a40;
            color: #fff;
            padding: 20px 0;
        }
        footer .contact-info a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
        }
        footer .contact-info a:hover {
            text-decoration: underline;
        }
        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Button styles */
.btn {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 20px;
}

.btn:hover {
    background-color: #333;
}



/* Modal styles */
.modal {
    display: none; /* Hide modal by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 400px; /* Adjust max-width as needed */
    width: 90%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
}

.modal-content h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.modal-content a {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content a + a {
    margin-top: 10px; /* Add space between buttons */
}

.modal-content a:hover {
    background-color: #333;
}
