/* ===== VARIABLES ===== */
:root {
    --primary-blue: #4a90e2;
    --primary-dark-blue: #2c3e50;
    --primary-soft-blue: rgba(74, 144, 226, 0.08);
    --primary-gradient: linear-gradient(135deg, #4a90e2 0%, #2c3e50 100%);
    --white: #ffffff;
    --dark-text: #2c3e50;
    --light-text: #6c757d;
    --shadow-sm: 0 10px 30px -10px rgba(74, 144, 226, 0.2);
    --shadow-md: 0 20px 40px -15px rgba(74, 144, 226, 0.3);
    --shadow-lg: 0 30px 50px -20px rgba(44, 62, 80, 0.4);
    --border-radius-card: 28px;
    --border-radius-img: 20px;
    --border-radius-pill: 999px;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== SECTION STYLING ===== */
.hc-info-cards {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.hc-info-cards::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hc-info-cards::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 62, 80, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== CARD STYLING ===== */
.hc-info-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    padding: 24px;
    position: relative;
    transition: var(--transition-smooth);
    border: 2px solid rgba(74, 144, 226, 0.1);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    backdrop-filter: blur(10px);
}


.hc-info-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.hc-info-card:hover::before {
    opacity: 1;
}

/* ===== IMAGE STYLING ===== */
.card-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-img);
    margin-bottom: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hc-info-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--border-radius-img);
    transition: var(--transition-smooth);
    display: block;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(74, 144, 226, 0) 0%, rgba(44, 62, 80, 0.4) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-img);
}

.hc-info-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.hc-info-card:hover .img-overlay {
    opacity: 1;
}

/* ===== CARD CONTENT ===== */
.card-content {
    position: relative;
    z-index: 1;
}

/* Pill title */
.hc-pill {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--border-radius-pill);
    font-size: 16px;
    margin-bottom: 18px;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}

.hc-pill i {
    font-size: 18px;
}

.hc-info-card:hover .hc-pill {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

/* Description text */
.card-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    margin: 0 0 20px 0;
    transition: var(--transition-smooth);
}


/* Card link */
.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(10px);
}

.hc-info-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

.card-link i {
    transition: var(--transition-smooth);
}

.card-link:hover {
    color: var(--primary-dark-blue);
    gap: 5px;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 1400px) {
    .hc-info-card img {
        height: 260px;
    }
}

@media (max-width: 1199px) {
    .hc-info-card {
        padding: 20px;
    }
    
    .hc-info-card img {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .hc-info-cards {
        padding: 70px 0;
    }
    
    .hc-info-card {
        margin-bottom: 20px;
    }
    
    .hc-info-card img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .hc-info-cards {
        padding: 50px 0;
    }
    
    .hc-info-card {
        padding: 18px;
    }
    
    .hc-info-card img {
        height: 220px;
    }
    
    .hc-pill {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .card-description {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 575px) {
    .hc-info-card img {
        height: 200px;
    }
    
    .hc-pill {
        font-size: 14px;
        padding: 8px 18px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hc-info-card:nth-child(1) {
    animation-delay: 0.2s;
}

.hc-info-card:nth-child(2) {
    animation-delay: 0.4s;
}

.hc-info-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* ===== HOVER GLOW EFFECT ===== */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: var(--shadow-md);
    }
    50% {
        box-shadow: 0 30px 60px -15px rgba(74, 144, 226, 0.5);
    }
}

.hc-info-card:hover {
    animation: glowPulse 2s infinite;
}




.text-primary-emphasis {
    color: #2c3e50 !important;
}

.badge {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.latest-post-media {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-post-media:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -15px rgba(0,0,0,0.3);
}

.latest-post-img {
    display: block;
    position: relative;
}

.latest-post-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(44, 62, 80, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.latest-post-media:hover .latest-post-img::after {
    opacity: 1;
}

.img-fluid {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    /*min-height: 400px;*/
    object-fit: cover;
}

.latest-post-media:hover .img-fluid {
    transform: scale(1.05);
}


@media (max-width: 992px) {
    .vr-line {
        left: 0;
        width: 60px;
        height: 4px;
        top: -20px;
        bottom: auto;
        background: linear-gradient(90deg, #4a90e2 0%, #2c3e50 100%);
    }
    
    .post-body {
        padding-top: 30px;
    }
}

.btn{
    transition:all 0.3s ease-in-out !important;
}


.card {
    border-left: 4px solid #4a90e2 !important;
    box-shadow: 0 10px 30px -10px rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 15px 40px -10px rgba(74, 144, 226, 0.3);
}

.text-secondary-emphasis {
    color: #4a5568 !important;
}

/* Animation for content */
.post-body {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .latest-post-media {
        margin-bottom: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem;
    }
}


  
/* ===== VARIABLES ===== */
:root {
    --primary-blue: #4a90e2;
    --primary-dark: #2c3e50;
    --primary-light: rgba(74, 144, 226, 0.1);
    --gradient-primary: linear-gradient(135deg, #4a90e2 0%, #2c3e50 100%);
    --gradient-soft:  rgba(74, 144, 226, 0.1);
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --shadow-sm: 0 10px 30px -10px rgba(74, 144, 226, 0.2);
    --shadow-md: 0 20px 40px -15px rgba(74, 144, 226, 0.3);
    --shadow-lg: 0 30px 60px -15px rgba(44, 62, 80, 0.3);
    --border-radius-card: 20px;
    --border-radius-img: 15px;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== APPOINTMENT SECTION ===== */
.ts-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.ts-intro::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.intro-left-content {
    position: relative;
    padding-left: 20px;
}

.intro-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
}

.column-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.intro-decoration {
    position: relative;
    height: 4px;
    width: 100px;
}

.decoration-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.decoration-dot {
    position: absolute;
    right: 0;
    top: -6px;
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.intro-details {
    position: relative;
    padding-left: 40px;
}

.border-left-long {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.border-long {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
}

.intro-content-wrapper {
    padding: 20px 0;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 400;
}

.intro-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    /*padding: 15px 35px;*/
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.intro-phone {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.intro-phone i {
    color: var(--primary-blue);
}

/* ===== SERVICES SECTION ===== */
.ts-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.title-decoration {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 30px auto 0;
}


/* ===== VARIABLES ===== */
:root {
    --primary-blue: #4a90e2;
    --primary-dark: #2c3e50;
    --primary-light: rgba(74, 144, 226, 0.1);
    --gradient-primary: linear-gradient(40deg,rgba(0, 145, 255, 1) 50%, rgba(0, 74, 171,0.8) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(74, 144, 226, 0.15);
    --shadow-lg: 0 20px 40px rgba(44, 62, 80, 0.2);
    --shadow-hover: 0 30px 50px rgba(74, 144, 226, 0.25);
    --border-radius-card: 24px;
    --border-radius-img: 20px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== SECTION STYLING ===== */
.ts-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.ts-services::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ts-services::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 62, 80, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== HEADER STYLING ===== */
.services-header-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.section-title-modern {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.title-decoration {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.title-decoration::before,
.title-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: pulseDot 2s infinite;
}

.title-decoration::before {
    left: -4px;
}

.title-decoration::after {
    right: -4px;
    animation-delay: 0.5s;
}

@keyframes pulseDot {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.5);
        opacity: 0.5;
    }
}

.services-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* ===== CARD GRID ===== */
.row.g-4 {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

/* ===== SERVICE CARD STYLING ===== */
.ts-service-card {
    background: var(--white);
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(74, 144, 226, 0.1);
    display: flex;
    flex-direction: column;
}

.ts-service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

/* Image Wrapper */
.ts-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.ts-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ts-service-card:hover .ts-image-wrapper img {
    transform: scale(1.1);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 62, 80, 0.6) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.ts-service-card:hover .image-overlay {
    opacity: 1;
}

/* Service Badge */
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    transform: translateY(0);
    transition: var(--transition);
}

.ts-service-card:hover .service-badge {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Service Content */
.service-content {
    padding: 25px;
    background: var(--white);
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.ts-service-card:hover .service-title {
    color: var(--primary-blue);
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Service Footer */
.service-footer {
    border-top: 1px solid rgba(74, 144, 226, 0.1);
    padding-top: 20px;
    margin-top: auto;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
    background: var(--gradient-soft);
    padding: 12px 20px;
    border-radius: 12px;
}

.btn-service span {
    transition: var(--transition);
}

.btn-service i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-service:hover {
    background: var(--gradient-primary);
    color: var(--white);
    padding-left: 25px;
}

.btn-service:hover i {
    transform: translateX(8px);
    color: var(--white);
}

/* Remove gap-30 as we're using g-4 */
.gap-30 {
    display: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199px) {
    .section-title-modern {
        font-size: 2.8rem;
    }
    
    .ts-image-wrapper {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .ts-services {
        padding: 80px 0;
    }
    
    .section-title-modern {
        font-size: 2.5rem;
    }
    
    .ts-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .ts-services {
        padding: 60px 0;
    }
    
    .services-header-wrapper {
        margin-bottom: 40px;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .services-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .ts-image-wrapper {
        height: 220px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 575px) {
    .ts-services {
        padding: 40px 0;
    }
    
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .services-subtitle::before,
    .services-subtitle::after {
        width: 20px;
    }
    
    .ts-image-wrapper {
        height: 200px;
    }
    
    .service-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .btn-service {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.ts-service-card:nth-child(1) { animation-delay: 0.1s; }
.ts-service-card:nth-child(2) { animation-delay: 0.2s; }
.ts-service-card:nth-child(3) { animation-delay: 0.3s; }
.ts-service-card:nth-child(4) { animation-delay: 0.4s; }
.ts-service-card:nth-child(5) { animation-delay: 0.5s; }
.ts-service-card:nth-child(6) { animation-delay: 0.6s; }
.ts-service-card:nth-child(7) { animation-delay: 0.7s; }
.ts-service-card:nth-child(8) { animation-delay: 0.8s; }
.ts-service-card:nth-child(9) { animation-delay: 0.9s; }

/* Hover effect enhancement */
@keyframes gentlePulse {
    0%, 100% {
        box-shadow: var(--shadow-hover);
    }
    50% {
        box-shadow: 0 35px 60px rgba(74, 144, 226, 0.3);
    }
}

.ts-service-card:hover {
    animation: gentlePulse 2s infinite;
}

/* Loading animation for images */
@keyframes imageLoad {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ts-image-wrapper img {
    animation: imageLoad 0.5s ease-out;
}

/* ===== CUSTOM SCROLLBAR ===== */
.ts-services::-webkit-scrollbar {
    width: 8px;
}

.ts-services::-webkit-scrollbar-track {
    background: var(--primary-light);
}

.ts-services::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .ts-service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .ts-service-card:hover {
        transform: none;
    }
}



/* ===== VARIABLES ===== */
:root {
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --shadow-sm: 0 10px 30px -10px rgba(74, 144, 226, 0.15);
    --shadow-md: 0 20px 40px -15px rgba(74, 144, 226, 0.25);
    --shadow-lg: 0 30px 60px -15px rgba(44, 62, 80, 0.3);
    --border-radius-card: 20px;
    --border-radius-icon: 50%;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== SECTION STYLING ===== */
.ts-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background */
.ts-choose-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ts-choose-us::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 62, 80, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== HEADER STYLING ===== */
.choose-us-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.choose-us-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.choose-us-subtitle::before,
.choose-us-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
}

.choose-us-subtitle::before {
    left: -20px;
}

.choose-us-subtitle::after {
    right: -20px;
}

.section-title-modern {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.title-decoration {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: widthPulse 2s infinite;
}

@keyframes widthPulse {
    0%, 100% {
        width: 100px;
        opacity: 1;
    }
    50% {
        width: 150px;
        opacity: 0.8;
    }
}

.title-decoration::before,
.title-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: dotPulse 2s infinite;
}

.title-decoration::before {
    left: -4px;
}

.title-decoration::after {
    right: -4px;
    animation-delay: 0.5s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.5);
        opacity: 0.5;
    }
}

.choose-us-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* ===== FEATURE CARDS ===== */
.ts-feature-card {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.ts-feature-card:last-child {
    margin-bottom: 0;
}

.ts-feature-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.ts-feature-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 4px 0 0 4px;
}

.ts-feature-info:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.ts-feature-info:hover::before {
    height: 100%;
}

/* Feature Icon */
.feature-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--gradient-soft);
    border-radius: var(--border-radius-icon);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.feature-icon .w-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(196deg) brightness(97%) contrast(95%);
    transition: var(--transition);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.ts-feature-info:hover .feature-icon {
    background: var(--gradient-primary);
    transform: rotate(360deg);
}

.ts-feature-info:hover .feature-icon i {
    color: var(--white);
}

.ts-feature-info:hover .feature-icon .w-icon {
    filter: brightness(0) invert(1);
}

.ts-feature-info:hover .icon-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
}

/* Feature Content */
.feature-content {
    flex: 1;
    position: relative;
}

.ts-feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: var(--transition);
}

.ts-feature-info:hover .ts-feature-title {
    color: var(--primary-blue);
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    transition: var(--transition);
}

.ts-feature-info:hover .feature-description {
    color: var(--text-dark);
}

.feature-hover-line {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    opacity: 0;
}

.ts-feature-info:hover .feature-hover-line {
    width: 50px;
    opacity: 1;
}

/* ===== IMAGE STYLING ===== */
.choose-us-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-decoration-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 150px;
    height: 150px;
    border: 2px dashed rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.image-decoration-2 {
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 100px;
    height: 100px;
    border: 2px dashed rgba(44, 62, 80, 0.2);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.choose-us-img {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.choose-us-img img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(var(--shadow-lg));
    border-radius: 20px;
    transform: translate(-150px, 20px);
}

.image-badge {
    position: absolute;
    bottom: 10%;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: badgePulse 2s infinite;
    text-align: center;
    min-width: 120px;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-lg);
    }
}

.badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199px) {
    .section-title-modern {
        font-size: 2.8rem;
    }
    
    .image-badge {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 991px) {
    .ts-choose-us {
        padding: 80px 0;
    }
    
    .section-title-modern {
        font-size: 2.5rem;
    }
    
    .features-left,
    .features-right {
        margin-bottom: 30px;
    }
    
    .choose-us-image-wrapper {
        margin-top: 50px;
    }
    
    .choose-us-img {
        text-align: center;
    }
    
    .choose-us-img img {
        max-width: 300px;
    }
    
    .image-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
    }
}

@media (max-width: 767px) {
    .ts-choose-us {
        padding: 60px 0;
    }
    
    .choose-us-header {
        margin-bottom: 40px;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .choose-us-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .choose-us-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .ts-feature-info {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-icon .w-icon {
        width: 30px;
        height: 30px;
    }
    
    .ts-feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .ts-choose-us {
        padding: 40px 0;
    }
    
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .choose-us-subtitle::before,
    .choose-us-subtitle::after {
        width: 20px;
    }
    
    .ts-feature-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ts-feature-info:hover {
        transform: translateY(-10px);
    }
    
    .feature-icon-wrapper {
        margin-bottom: 15px;
    }
    
    .feature-hover-line {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ts-feature-info:hover .feature-hover-line {
        width: 50px;
    }
    
    .choose-us-img img {
        max-width: 250px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.features-left .ts-feature-card {
    animation: fadeInLeft 0.6s ease-out forwards;
    opacity: 0;
}

.features-right .ts-feature-card {
    animation: fadeInRight 0.6s ease-out forwards;
    opacity: 0;
}

.features-left .ts-feature-card:nth-child(1) { animation-delay: 0.2s; }
.features-left .ts-feature-card:nth-child(2) { animation-delay: 0.4s; }
.features-left .ts-feature-card:nth-child(3) { animation-delay: 0.6s; }
.features-right .ts-feature-card:nth-child(1) { animation-delay: 0.3s; }
.features-right .ts-feature-card:nth-child(2) { animation-delay: 0.5s; }
.features-right .ts-feature-card:nth-child(3) { animation-delay: 0.7s; }

/* ===== HOVER EFFECTS ENHANCEMENT ===== */
.ts-feature-card {
    transition: var(--transition);
}

.ts-feature-card:hover {
    transform: scale(1.02);
}

/* ===== CUSTOM SCROLLBAR ===== */
.ts-choose-us::-webkit-scrollbar {
    width: 8px;
}

.ts-choose-us::-webkit-scrollbar-track {
    background: var(--primary-light);
}

.ts-choose-us::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}





















































