.custom-pagination .swiper-pagination-bullet {
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    opacity: 1 !important;
}

/* Vertical layout */
.custom-pagination {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 50;
    gap: 38px;
}

/* Inner dot */
.custom-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    transition: 0.3s ease;
}

/* Active */
.custom-pagination .swiper-pagination-bullet-active .dot {
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, .8);
}

.tab-btn {
    padding: 16px 6px;
    font-weight: 700;
    font-size: 14px;
    color: #4d8f99;
    border-bottom: 3px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    color: #0e191b;
}

.tab-btn.active {
    color: #0e191b;
    border-bottom-color: #0e7c86;
}

.tab-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-active {
    color: #095763;
    font-weight: 600;
    position: relative;
}

.nav-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: #095763;
    border-radius: 2px;
}

.loader-wrapper {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* body.loading {
    overflow: hidden;
}

.loader {
    width: 70px;
    height: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.loader span {
    width: 100%;
    height: 100%;
    background-color: #a5a5b0;
    animation: keyframes-blink 0.6s alternate infinite linear;
}

.loader span:nth-child(1) {
    animation-delay: 0ms;
}

.loader span:nth-child(2) {
    animation-delay: 200ms;
}

.loader span:nth-child(3) {
    animation-delay: 300ms;
}

.loader span:nth-child(4) {
    animation-delay: 400ms;
}

.loader span:nth-child(5) {
    animation-delay: 500ms;
}

.loader span:nth-child(6) {
    animation-delay: 600ms;
}

@keyframes keyframes-blink {
    0% {
        opacity: 0.3;
        transform: scale(0.5) rotate(5deg);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
} */
body.loading {
    overflow: hidden;
}

.loader-wrapper {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.loader-content {
    text-align: center;
}

/* SVG Styling */
.structure-svg {
    width: 300px;
    stroke: #095763;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.structure-svg line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw 2s ease forwards;
}

.structure-svg line:nth-child(n) {
    animation-delay: calc(var(--i, 1) * 0.08s);
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Text */
.loader-text {
    margin-top: 18px;
    opacity: 0;
    animation: fade-in 1s ease forwards;
    animation-delay: 1s;
}

.loader-text strong {
    display: block;
    font-size: 18px;
    letter-spacing: 2px;
    color: #0f172a;
}

.loader-text span {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #64748b;
    text-transform: uppercase;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}


.blueprint-overlay {
    background-image: radial-gradient(circle at 2px 2px, rgba(13, 92, 99, 0.1) 1px, transparent 0);
    background-size: 24px 24px;
}

.technical-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(13, 92, 99, 0.4), transparent);
    height: 1px;
    width: 100%;
}

.blueprint-overlay {
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.technical-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #14b8a6, transparent);
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-hero {
    background: linear-gradient(135deg, #0D5C63 0%, #14B8A6 100%);
}

.timeline-line::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background-color: #E2E8F0;
}

.last-item::before {
    display: none;
}

input[name="path"]:checked+label {
    @apply border-primary ring-2 ring-primary/20 bg-primary/5;
}

#form-quote,
#form-support,
#form-partnership {
    display: none;
}

#path-quote:checked~.form-container #form-quote {
    display: block;
}

#path-support:checked~.form-container #form-support {
    display: block;
}

#path-partnership:checked~.form-container #form-partnership {
    display: block;
}

/* Floating up-down animation */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Apply animation */
.icon-float {
    animation: floatY 2.5s ease-in-out infinite;
}

/* Slight delay for variation */
.icon-delay-1 {
    animation-delay: 0.2s;
}

.icon-delay-2 {
    animation-delay: 0.4s;
}


.swiper-pagination-bullet-active {
    width: 20px;
    height: 8px;
    border-radius: 10px;
    background-color: #095763;
}

.project-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-card:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}

.project-card.hidden {
    opacity: 0;
    transform: translateY(10px);
}


.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(9, 87, 99, 0.4);
    transform: translateY(-4px);
}

.glass-card img {
    height: 128px;
}

.hero-gradient {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.cards-grid {
    display: none;
}

@media (min-width: 1024px) {
    .cards-grid {
        display: grid;
    }
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    outline: none;
}

.input-field:focus {
    border-color: #095763;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.error-text {
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 4px;
}