.technology-detail-section {
    /* max-width: 900px; */
    /* margin: 0px auto 80px auto; */
    padding: 40px 20px;
    background: #fff;
    /* border-radius: 18px; */
    box-shadow: 0 8px 36px rgba(0,0,0,0.07), 0 1.5px 5px rgba(0,0,0,0.03);
}

.technology-detail-section h2 {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 48px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
}

.websites-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.website-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width:800px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    /* box-shadow: 0 4px 18px rgba(0,0,0,0.06); */
     box-shadow: 0 10px 32px rgba(19,48,86,0.09);
    padding: 36px 28px 30px 28px;
    margin-bottom: 12px;
    transition: box-shadow 0.2s;
}

.website-card:hover {
    box-shadow: 0 10px 32px rgba(19,48,86,0.09);
}

.website-card img {
    display: block;
    margin: 0 auto 30px auto;
    width: 800px;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    background: #eaeaea;
    object-fit: contain;
    border: 1px solid #e3e6e8;
}

.website-card h3 {
    font-size: 2rem;
    margin-bottom: 14px;
    color: #1a355c;
    text-align: center;
    font-weight: 600;
}

.website-card p {
    font-size: 1.13rem;
    color: #333;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.7;
    min-height: 48px;
}

.website-card .preview-btn {
    display: inline-block;
    padding: 13px 48px;
    border-radius: 8px;
    background: #013f64;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(99, 102, 241, .09);
    transition: background 0.18s, box-shadow 0.18s;
}
.website-card .preview-btn:hover {
  background: #043653;
    box-shadow: 0 4px 16px rgba(67, 56, 202, 0.14);
}
.header__container {
    position: relative;
    background-image: url('../../assets/images/section/header_details_new.jpg');
    /* background-position: center center; */
    background-repeat: no-repeat;
    background-size: cover;
    height: 125px;
    position: relative;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0%), 0 6px 15px rgb(0 0 0 / 22%);
    /* width: 100%; */
    margin: 0 auto;
}
@media (max-width: 600px) {
    .website-card p{
        font-size: 1rem;
        color: #5b5f7b;
        margin-bottom: 20px;
        line-height: 1.7;
    }
    .technology-detail-section {
        padding: 18px 2vw;
    }
    .website-card {
        padding: 20px 8px 22px 8px;
        max-width: 95vw;
    }
    .website-card img {
        width: 95vw;
        max-width: 350px;
    }
    .technology-detail-section h2 {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }
    .website-card h3 {
        font-size: 1.5rem;
    }
}