* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}



.projects {
    width: 100%;
    height: auto;
    padding: 40px 20px;
}

.projects-inner {
    width: 100%;
    height: 100%;
}

.project-cards {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.project-card {
    width: 48%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 50px;

}

.project-image {
    width: 100%;
    height: 48%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.projetct-name h3 a {
    color: #002647;
    line-height: 1.4;
    font-size: 24px;
    font-weight: 500;
    font-family: Poppins, Helvetica, Arial, sans-serif;
}

.project-button a p {
    color: #002647;
    font-size: 17px;
    font-weight: 500;
    font-family: Poppins, Helvetica, Arial, sans-serif;
}

.project-button a {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}


.projects-detail {
    width: 100%;
    height: auto;
    padding: 40px 20px;
}

.projects-detail-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.projects-detail-text {
    width: 100%;
}

.projects-detail-text h3 {
    font-weight: 300;
    font-size: 28px;
    line-height: 1.33;
    font-style: italic;
    color: #002647;
}

.projects-gallery {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.projects-inner-video{
    width: 100%;
    height: 500px;
}
.projects-inner-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-gallery-title {
    width: 100%;
}

.projects-gallery-title h3 {
    font-size: 32px;
    font-weight: 500;
    color: #002647;
    line-height: 1.25;
    font-family: Poppins, Helvetica, Arial, sans-serif;
}


.projects-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.projects-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
    padding: 10px 0;
}

.projects-gallery-card {
    flex: 0 0 calc((100% - 15px) / 2);
    height: 504px;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}



.projects-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.projects-gallery-card-icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-gallery-card-icon i {
    color: #333;
    font-size: 16px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.slider-controls button {
    background-color: #fff;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5ea;
    border-radius: 50%;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background-color: #e5e5ea;
}

.slider-controls button i {
    font-size: 16px;
    color: #002647;
}

.slider-controls button.disabled {
    background-color: #fff;
    cursor: not-allowed;
    opacity: 0.6;
    border: none;
    color: e5e5ea;
}
