.solutions-section{
        padding: 2rem 0;
}


.solution-header {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    text-align: center;
    margin: auto;
}

.solution-header h1 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--darkblue);
    margin-bottom: 1rem;
}

.solution-header p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--black);
    margin-bottom: 2rem;
}

.solution-card {
    background-color: #F5F5F7;
    border-radius: 14px;
    border: 1px solid #EFEFEF;
    padding: 2rem 2rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.solution-card h1 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 600;
    color: var(--darkblue);
    margin-bottom: 0.5rem;
}

.solution-card p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--black);
    font-weight: 400;
}

.solution-card .solution-image {
    display: block;
    width: 100%;
    margin-top: auto;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px 8px 0 0;
}


.card-flush-right .solution-image {
    width: calc(100% + 2rem);
    margin-right: -2rem;
    border-radius: 8px 0 0 0;
    object-position: top left;
}


.card-contain {
    padding-bottom: 0;
    object-fit: contain;
}



@media (max-width: 1199.98px) {
    .solution-card .solution-image {
        max-height: 275px !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    .about-item:last-child {
        width: 100% !important;
    }

    .about-item:last-child img {
        height: 300px;
        width: 100% !important;
    }
}

@media (max-width: 991.98px) {
    .solution-card {
        padding: 1.5rem 1.5rem 0;
    }

    .d-flex.flex-column.gap-4 .row {
        row-gap: 1.5rem;
    }

    .solution-card h1 {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }

    .solution-card p {
        font-size: clamp(0.85rem, 1vw, 1rem);
    }

    .solution-card .solution-image {
        max-height: 250px;
    }

    .card-flush-right .solution-image {
        width: calc(100% + 1.5rem);
        margin-right: -1.5rem;
    }
}

@media (max-width: 767.98px) {
    .solution-card {
        padding: 1.25rem 1.25rem 0;
    }

    .solution-card .solution-image {
        max-height: 200px;
    }

    .solution-header h1 {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }

    .solution-header p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .about-content {
        padding: 1rem 0 !important;
    }
}

@media (max-width: 575.98px) {
    .solution-card .solution-image {
        max-height: 180px;
    }
}


.about-section {
    padding: 2rem 0 0 0;
    background-color: var(--darkblue);
    position: relative;
}

.about-content {
    color: white;
    padding: 2.5rem 0;
}

.title-pill {
    display: inline-flex;
    padding: 0.5rem 1rem;
    width: fit-content;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        inset 0 -1px 1px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


.about-content .about-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-left h1 {
    font-size: clamp(1.5rem, 5vw, 2.75rem);
    font-weight: 600;
}

.about-right p {
    font-size: clamp(1rem, 1vw, 1.25rem);
    color: #E6D7D7;
    font-weight: 400;
    line-height: 28px;
}

.about-item {
    display: flex;
    flex-direction: column;
}

.about-item h3 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: white;
    margin-top: 0.75rem;
}

.about-item img {
    width: 100%;
    height: 200px;
}


.about-item p {
    font-size: clamp(0.9rem, 1vw, 1.25rem);
    color: #E6D7D7;
    font-weight: 400;
}

.about-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 750px;
    margin: auto;
}

.about-bottom-right h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    color: white;
}

.about-bottom-right p {
    font-size: clamp(1rem, 1vw, 1.25rem);
    color: #E6D7D7;
    font-weight: 400;
    line-height: 28px;
}

.about-bottom-content {
    position: relative;
}

.about-bottom-left img {
    width: 100%;
    height: auto;
    max-width: 400px;
    bottom: 0;
}



@media (max-width: 1199.98px) {

    .about-bottom-left img {
        max-width: 320px;
    }
}

@media (max-width: 991.98px) {
    .about-bottom-content {
        flex-direction: column;
        align-items: center;
        padding-bottom: 2rem;
    }

    .about-bottom-left {
        position: static;
        text-align: center;
        margin-bottom: 2rem;
    }

    .about-bottom-left img {
        position: static;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 767.98px) {
    .about-bottom-content {
        padding-bottom: 2rem;
    }

    .about-bottom-left img {
        max-width: 300px;
    }

    .about-bottom-right h1 {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }
}

@media (max-width: 575.98px) {
    .about-bottom-content {
        padding-bottom: 1.5rem;
    }

    .about-bottom-left img {
        max-width: 250px;
    }
}

.projects-section {
    padding: 3rem 0;
}

.projects-section h1 {
    font-size: clamp(1.5rem, 5vw, 2.75rem);
    font-weight: 500;
    color: var(--darkblue);
}

.projects-swiper {
    overflow: hidden;
}

.projects-swiper .swiper-wrapper {
    align-items: stretch;
}

.projects-swiper .swiper-slide {
    display: flex;
    height: auto;
}

.swiper-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #EFEFEF;
    background-color: #F5F5F7;
    color: var(--darkblue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.swiper-nav-btn:hover {
    background-color: var(--darkblue);
    border-color: var(--darkblue);
    color: #fff;
}

.swiper-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    height: 100%;
}

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.project-card .project-image {
    width: 100%;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.project-card .project-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 auto;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.project-card h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 600;
    color: var(--darkblue);
    margin: 0;
}

.project-card p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: #606C80;
    font-weight: 400;
    margin: 0;
}

.project-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-card .project-pill {
    background-color: #F5F5F7;
    color: var(--darkblue);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    padding: 0.35rem 0.75rem;
    border-radius: 24px;
    border: 1px solid #EFEFEF;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.projects-section .project-pills {
    margin-top: auto;
}



.contact-section {
    padding: 4rem 0;
    background-color: var(--darkblue);
}

.contact-info {
    padding-right: 3rem;
}

.contact-info h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-info h1 strong {
    font-weight: 700;
}

.contact-info > p {
    font-size: clamp(0.95rem, 1vw, 1.15rem);
    color: #9CA3B4;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    text-decoration: none;
}

.contact-label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

@media (max-width: 575.98px) {
    .contact-pills {
        grid-template-columns: 1fr;
    }
}

.contact-pill {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid #27334B;
    background-color: #131825;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.contact-pill:hover {
    border-color: #3a4a63;
}

.contact-pill.active {
    background-color: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow:
        0 1px 2px 0 rgba(0, 0, 0, 0.35),
        0 1px 0 1.5px #2156DF;
}

.contact-section .blue-btn {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 50px;
}



@media (max-width: 991.98px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-info {
        margin-bottom: 2rem;
    }

    .col-lg-5.mb-4.mb-lg-0 {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 2.5rem 0;
    }
}



.our-team-section {
    padding: 3rem 0;
}

.team-intro-card {
    background-color: var(--darkblue);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: center;
}

.team-intro-card h1 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.team-card-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.team-role-pill {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 2;

}

.team-card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0 0;
}

.team-card-info h3 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: var(--darkblue);
    margin: 0;
}

.team-socials {
    display: flex;
    gap: 0.5rem;
}

.team-socials a {
    color: var(--darkblue);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #EFEFEF;
    background-color: #F5F5F7;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.team-socials a:hover {
    background-color: var(--darkblue);
    border-color: var(--darkblue);
    color: #fff;
}

.team-swiper {
    overflow: hidden;
}



@media (max-width: 991.98px) {
    .team-intro-card {
        height: auto;
    }
}

@media (max-width: 575.98px) {
    .our-team-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    
    .team-card-image img {
        aspect-ratio: 4 / 3;
    }
}



#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(24, 33, 52, 0.96);
    border-top: 1px solid var(--light);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -10px 40px rgba(8, 14, 28, 0.55);
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.3s ease-out;
}

#cookie-consent-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.cookie-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.cookie-text a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-action-btn {
    min-height: 44px;
    padding: 0.6rem 1.25rem;
    font-size: 0.92rem;
    white-space: nowrap;
    border-radius: 999px;
}

.home-reveal-pending {
    opacity: 0;
}

#cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 10, 20, 0.65);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#cookie-settings-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: rgba(24, 33, 52, 0.98);
    border: 1px solid var(--light);
    border-radius: 16px;
    color: #fff;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
}

.cookie-modal-header {
    margin-bottom: 20px;
}

.cookie-modal-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.cookie-category {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-category h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.cookie-category p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 26px;
    transition: 0.3s;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--blue);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: rgba(255, 255, 255, 0.35);
    cursor: not-allowed;
}

.cookie-modal-footer {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    
    .cookie-action-btn {
        width: 100%;
    }

    body.cookie-consent-visible .site-footer {
        padding-bottom: calc(140px + env(safe-area-inset-bottom));
    }
}