.projects-section {
    position: relative;
    padding: 120px 24px 130px;
    background: #03213d;
    color: #f5f7fa;
    overflow: hidden;
}
.projects-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}
.projects-header {
    margin-bottom: 55px;
}
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: #8b98aa;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.section-label > span {
    display: block;
    width: 34px;
    height: 1px;
    background: #6366f1;
}
.projects-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.projects-heading-row h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 40px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.projects-heading-row h2 span {
    color: #6366f1;
}
.projects-heading-row p {
    max-width: 600px;
    margin: 24px 0 0;
    color: #91a0b5;
    font-size: 16px;
    line-height: 1.7;
}
.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    padding-bottom: 5px;
    color: #aab5c5;
    border-bottom: 1px solid #3b4655;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.view-all-link span {
    color: #6366f1;
    font-size: 17px;
    transition:
        transform 0.25s ease;
}
.view-all-link:hover {
    color: #ffffff;
    border-color: #6366f1;
}

.view-all-link:hover span {
    transform: translate(3px, -3px);
}
.projects-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #061d35;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.65);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.28);
}
.project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a2038;
}
.project-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.5s ease;
}
.project-card:hover .project-image img {
    transform: scale(1.04);
}
.project-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    color: #c5ccd7;
    background: rgba(3, 20, 38, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.13em;
}
.project-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
}
.project-number {
    margin-bottom: 10px;
    color: #6366f1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.project-content h3 {
    margin: 0 0 12px;
    color: #f5f7fa;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.025em;
}
.project-content p {
    margin: 0;
    color: #8f9daf;
    font-size: 14px;
    line-height: 1.7;
}
.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 22px;
}

.project-tech span {
    padding: 6px 9px;
    color: #9ba7b7;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 5px;
    font-size: 10px;
    font-weight: 500;
}
.project-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #aab5c5;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition:color 0.25s ease;
}

.link-arrow {
    color: #6366f1;
    font-size: 16px;
    transition:
        transform 0.25s ease;
}

.project-link:hover {
    color: #ffffff;
}

.project-link:hover .link-arrow {
    transform: translate(3px, -3px);
}

.project-live {
    color: #6366f1;
}

.project-live:hover {
    color: #818cf8;
}

@media (max-width: 1000px) {
    .projects-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .projects-section {
        padding: 90px 20px 100px;
    }
    .projects-heading-row {
        display: block;
    }
    .projects-heading-row h2 {
        font-size: 46px;
    }
    .view-all-link {
        margin-top: 28px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .project-content {
        padding: 23px;
    }
}

@media (max-width: 420px) {
    .projects-heading-row h2 {
        font-size: 40px;
    }
    .project-content h3 {
        font-size: 21px;
    }
    .project-content p {
        font-size: 13px;
    }
}
/* packages */
.packages-section {
    position: relative;
    padding: 120px 24px 130px;
    background: #03213d;
    color: #f5f7fa;
    overflow: hidden;
}
.packages-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}
.package-card{
   display: flex;
    flex-direction: column;
    justify-content: baseline;
    min-width: 0;
    overflow: hidden;
    background: #061d35;
    padding: 2%;
    background-size: 200% 200%;
    transition: all .5s ease-out;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.package-card:hover{
     transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.65);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.28);
}
.card-title{
    color:white;
}
.card-text{
    color: #aab5c5;
}