@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");

/* ===== WHY CHOOSE US SECTION STYLES ===== */
.why-choose-us-section {
    position: relative;
    background: linear-gradient(135deg, #f8faf5 0%, #ffffff 100%);
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(20,69,61,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.why-choose-us-section .container {
    position: relative;
    z-index: 1;
}

.why-choose-us-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;
}

/* .why-choose-us-section .heading3 h2 {
    color: var(--ztc-text-text-2);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--ztc-font-size-font-s40);
    font-weight: var(--ztc-weight-regular);
    line-height: 1.3;
} */

.why-choose-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, #14453D 0%, #446A64 100%);
    transition: all 0.5s ease;
    z-index: 0;
}

.why-choose-card:hover::before {
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: #14453D;
    box-shadow: 0 15px 40px rgba(20, 69, 61, 0.2);
}

.why-choose-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #14453D 0%, #446A64 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(20, 69, 61, 0.25);
}

.why-choose-card:hover .icon-wrapper {
    background: linear-gradient(135deg, #DEC678 0%, #EBDDB0 100%);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 30px rgba(222, 198, 120, 0.4);
}

.why-choose-card .icon-wrapper i {
    font-size: 36px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.why-choose-card:hover .icon-wrapper i {
    color: #14453D;
}

.why-choose-card h3 {
 color: var(--ztc-text-text-8);
font-family: var(--ztc-family-font2);
font-size: var(--ztc-font-size-font-s24);
font-style: normal;
font-weight: var(--ztc-weight-bold);
line-height: 24px;
display: inline-block;
transition: all 0.4s;
}

.why-choose-card:hover h3 {
    color: #ffffff;
}

.why-choose-card p {
    color: var(--ztc-text-text-3);
    font-family: var(--ztc-family-font2);
    font-size: var(--ztc-font-size-font-s16);
    font-weight: var(--ztc-weight-regular);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    margin-bottom: 0;
}

.why-choose-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .why-choose-us-section .heading3 h2 {
        font-size: var(--ztc-font-size-font-s32);
    }
    
    .why-choose-card {
        padding: 35px 25px;
    }
    
    .why-choose-card .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .why-choose-card .icon-wrapper i {
        font-size: 32px;
    }
    
    .why-choose-card h3 {
        font-size: var(--ztc-font-size-font-s20);
    }
}

@media (max-width: 767px) {
    .why-choose-us-section .heading3 h2 {
        font-size: var(--ztc-font-size-font-s28);
    }
    
    .why-choose-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .why-choose-card .icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .why-choose-card .icon-wrapper i {
        font-size: 28px;
    }
    
    .why-choose-card h3 {
        font-size: var(--ztc-font-size-font-s18);
    }
    
    .why-choose-card p {
        font-size: var(--ztc-font-size-font-s14);
    }
}

@media (max-width: 575px) {
    .why-choose-us-section .heading3 h5 {
        font-size: var(--ztc-font-size-font-s14);
    }
    
    .why-choose-us-section .heading3 h2 {
        font-size: var(--ztc-font-size-font-s24);
    }
}
