@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;family=Vidaloka&amp;display=swap");


/* ===== WHAT MAKES US SPECIAL SECTION STYLES ===== */
.what-makes-special-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.what-makes-special-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 69, 61, 0.02) 0%, rgba(222, 198, 120, 0.03) 100%);
    z-index: 0;
}

.what-makes-special-section .container {
    position: relative;
    z-index: 1;
}

.what-makes-special-section .heading3 h5 {
    color: var(--ztc-text-text-10);
    font-family: var(--ztc-family-font2);
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* .what-makes-special-section .heading3 h2 {
    color: var(--ztc-text-text-2);
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s40);
    font-weight: var(--ztc-weight-regular);
    line-height: 1.3;
} */

/* Timeline Wrapper */
.special-features-wrapper {
    position: relative;
    padding: 40px 0;
}

/* Central Timeline Line */
.special-features-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #14453D 0%, #DEC678 50%, #14453D 100%);
    transform: translateX(-50%);
    z-index: 0;
}

/* Feature Item */
.special-feature-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
}

.special-feature-item:last-child {
    margin-bottom: 0;
}

/* Left Aligned Items */
.special-feature-item.left-align {
    justify-content: flex-end;
    padding-right: calc(50% + 50px);
}

.special-feature-item.left-align .feature-number {
    order: 2;
}

.special-feature-item.left-align .feature-content {
    order: 1;
    text-align: right;
}

/* Right Aligned Items */
.special-feature-item.right-align {
    justify-content: flex-start;
    padding-left: calc(50% + 50px);
}

.special-feature-item.right-align .feature-number {
    order: 1;
}

.special-feature-item.right-align .feature-content {
    order: 2;
    text-align: left;
}

/* Feature Number Badge */
.feature-number {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #14453D 0%, #446A64 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(20, 69, 61, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.feature-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #DEC678;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
    transition: all 0.4s ease;
}

.special-feature-item:hover .feature-number::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
}

.special-feature-item:hover .feature-number {
    background: linear-gradient(135deg, #DEC678 0%, #EBDDB0 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(222, 198, 120, 0.4);
}

.feature-number span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--ztc-font-size-font-s32);
    font-weight: var(--ztc-weight-bold);
    color: #ffffff;
    transition: all 0.4s ease;
}

.special-feature-item:hover .feature-number span {
    color: #14453D;
}

/* Feature Content */
.feature-content {
    flex: 1;
    max-width: 450px;
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0%;
    background: linear-gradient(180deg, #14453D 0%, #DEC678 100%);
    transition: all 0.5s ease;
}

.special-feature-item.right-align .feature-content::before {
    left: auto;
    right: 0;
}

.special-feature-item:hover .feature-content::before {
    height: 100%;
}

.special-feature-item:hover .feature-content {
    border-color: #14453D;
    box-shadow: 0 10px 30px rgba(20, 69, 61, 0.15);
    transform: translateY(-5px);
}

.feature-content h3 {
    color: var(--ztc-text-text-2);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--ztc-font-size-font-s24);
    font-weight: var(--ztc-weight-semibold);
    line-height: 1.4;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.special-feature-item:hover .feature-content h3 {
    color: #14453D;
}

.feature-content p {
    color: var(--ztc-text-text-3);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-regular);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Feature Icon */
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #14453D 0%, #446A64 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(20, 69, 61, 0.2);
}

.feature-icon i {
    font-size: 28px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.special-feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #DEC678 0%, #EBDDB0 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(222, 198, 120, 0.3);
}

.special-feature-item:hover .feature-icon i {
    color: #14453D;
    transform: rotate(360deg);
}

/* Connector Dots */
.feature-number::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #DEC678;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.special-feature-item.left-align .feature-number::after {
    right: -60px;
}

.special-feature-item.right-align .feature-number::after {
    left: -60px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .what-makes-special-section .heading3 h2 {
        font-size: var(--ztc-font-size-font-s32);
    }

    /* Remove timeline for tablets and below */
    .special-features-wrapper::before {
        display: none;
    }

    .special-feature-item.left-align,
    .special-feature-item.right-align {
        padding-left: 0;
        padding-right: 0;
        justify-content: flex-start;
    }

    .special-feature-item.left-align .feature-content {
        text-align: left;
    }

    .special-feature-item .feature-number::after {
        display: none;
    }

    .feature-content {
        max-width: 100%;
    }

    .feature-number {
        width: 70px;
        height: 70px;
    }

    .feature-number span {
        font-size: var(--ztc-font-size-font-s28);
    }

    .feature-content h3 {
        font-size: var(--ztc-font-size-font-s22);
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }

    .feature-icon i {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .what-makes-special-section .heading3 h2 {
        font-size: var(--ztc-font-size-font-s28);
    }

    .special-feature-item {
        margin-bottom: 30px;
        gap: 20px;
    }

    .feature-number {
        width: 60px;
        height: 60px;
    }

    .feature-number span {
        font-size: var(--ztc-font-size-font-s24);
    }

    .feature-content {
        padding: 25px 20px;
    }

    .feature-content h3 {
        font-size: var(--ztc-font-size-font-s20);
    }

    .feature-content p {
        font-size: var(--ztc-font-size-font-s14);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .feature-icon i {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .what-makes-special-section .heading3 h5 {
        font-size: var(--ztc-font-size-font-s14);
    }

    .what-makes-special-section .heading3 h2 {
        font-size: var(--ztc-font-size-font-s24);
    }

    .feature-number {
        width: 55px;
        height: 55px;
    }

    .feature-number span {
        font-size: var(--ztc-font-size-font-s22);
    }

    .feature-content {
        padding: 20px 18px;
    }

    .feature-content h3 {
        font-size: var(--ztc-font-size-font-s18);
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 14px;
    }

    .feature-icon i {
        font-size: 22px;
    }
}