.whatsapp-icon {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: block;
    cursor: pointer;
}

.whatsapp-icon .icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-icon .icon img {
    width: 60px !important;
    height: 60px !important;
    display: block;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
   
}

.whatsapp-icon .icon a:hover img {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .whatsapp-icon {
        right: 15px;
        bottom: 80px;
    }
    .whatsapp-icon .icon img {
        width: 60px !important;
        height: 60px !important;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .whatsapp-icon {
        right: 12px;
        bottom: 70px;
    }
    .whatsapp-icon .icon img {
        width: 60px !important;
        height: 60px !important;
        padding: 9px;
    }
}
  /*sliders css*/
    
    /* ========== IMAGE RESPONSIVE STYLES ========== */

/* Base Image Styles */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
  pointer-events: none; /* Prevents image drag on mobile */
  -webkit-user-select: none; /* Prevents long-press menu on iPhone */
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Lazy Loading Support */
.slide img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slide img[loading="lazy"].loaded {
  opacity: 1;
}

/* Fallback for browsers that don't support object-fit */
@supports not (object-fit: cover) {
  .slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 60%;
    object-fit: cover;
  }
}

/* ========== @MEDIA QUERIES FOR IMAGES ========== */

/* Small Mobile Devices (320px - 480px) */
@media only screen and (min-width: 220px) and (max-width: 480px) {
  .slide img {
    width: 80%!important;
    height: 60%!important;
    border-radius: 16px;
    object-fit: cover;
    object-position: center 30%; /* Shift focus slightly up */
  }
  
  /* For portrait images */
  .slide img[data-orientation="portrait"] {
    object-fit: contain;
    background: #f0f0f0;
  }
}

/* Medium Mobile Devices (481px - 768px) */
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .slide img {
    border-radius: 20px;
  }
}

/* iPhone SE & Small Phones (max-width: 375px) */
@media only screen and (max-width: 375px) {
  .slide img {
    border-radius: 14px;
    object-position: center 20%;
  }
}

/* Large Mobile Devices (376px - 428px) */
@media only screen and (min-width: 376px) and (max-width: 428px) {
  .slide img {
    min-height: 100px!important;
  }
}

/* Landscape Mode Mobile */
@media only screen and (max-width: 768px) and (orientation: landscape) {
  .slide img {
    object-position: center;
    min-height: 250px;
  }
}

/* Tablet Devices (768px - 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .slide img {
    border-radius: 22px;
  }
}

/* High DPI / Retina Screens */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi) {
  .slide img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Dark Mode Support for Images */
@media (prefers-color-scheme: dark) {
  .slide img {
    filter: brightness(0.9) contrast(1.1);
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  .slide img {
    transition: none;
  }
}
    
/* BANKS GRID - RESPONSIVE CARD SIZE (HALF OF ORIGINAL) */
*, ::after, ::before {
    box-sizing: border-box;
}
.banks-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    gap: 1.25rem !important;
    margin-bottom: 2rem !important;
}

/* CARD INNER STYLES - COMPACT VERSION */
.bank-card {
    background: white !important;
    border-radius: 1rem !important;
    padding: 0.1rem !important;  /* और छोटा किया 1rem से → 0.5rem */
    transition: all 0.3s !important;
    position: relative !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
}

/* HEADER - COMPACT */
.card-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 0.5rem !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
}

/* LOGO SMALLER - HALF SIZE */
.bank-logo {
    width: 62px !important;      /* 40px से घटाकर 32px */
    height: 62px !important;
    object-fit: contain !important;
    border-radius: 6px !important;
}

/* EMOJI LOGO SIZE */
.bank-logo-emoji {
    font-size: 1.5rem !important;
}

.bank-name h3 {
    font-size: 0.85rem !important;  /* 1rem से घटाकर 0.85rem */
    font-weight: 700 !important;
    margin-bottom: 0.15rem !important;
}

.bank-type {
    font-size: 0.55rem !important;  /* 0.65rem से घटाकर 0.55rem */
    padding: 0.15rem 0.4rem !important;
}

/* RATING - SMALLER */
.bank-rating {
    font-size: 0.4rem !important;
    padding: 0.2rem !important;
}

.bank-rating i {
    font-size: 0.4rem !important;
}

/* CARD DETAILS GRID - COMPACT */
.card-details {
    margin: 0.5rem 0 !important;
    gap: 0.35rem !important;
}

.detail-item {
    display: flex !important;
    justify-content: space-between !important;
    font-size: 0.65rem !important;
    padding: .00rem !important;
}

.detail-label {
    color: #64748b !important;
    font-size: 0.6rem !important;
}

.detail-value {
    font-weight: 600 !important;
    font-size: 0.65rem !important;
}

.detail-value.roi {
    color: #10b981 !important;
    font-weight: 700 !important;
}

/* CARD ACTIONS - COMPACT */
.card-actions {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 0.5rem !important;
    padding-top: 0.5rem !important;
    border-top: 1px solid #f1f5f9 !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
}

.btn-details {
    font-size: 0.65rem !important;
    padding: 3px 6px !important;
    background: none !important;
    border: none !important;
    color: #667eea !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

.compare-label {
    font-size: 0.6rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
    cursor: pointer !important;
}

.compare-checkbox {
    width: 12px !important;
    height: 12px !important;
    margin: 0 !important;
}

/* BADGE TOP - ADJUST */
.badge-top {
    font-size: 0.55rem !important;
    padding: 0.15rem 0.5rem !important;
    top: -0.15rem !important;
    right: 0.6rem !important;
    position: absolute !important;
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: white !important;
    border-radius: 2rem !important;
    font-weight: 600 !important;
}

/* VIEW MORE BUTTON */
.view-more-btn {
    font-size: 0.8rem !important;
    padding: 0.6rem 1.5rem !important;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Laptop / Desktop (1200px+) */
@media (min-width: 1200px) {
    .banks-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
        gap: 1rem !important;
    }
    
    
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .banks-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    
    
    
    .bank-name h3 {
        font-size: 0.8rem !important;
    }
    
    .detail-item {
        font-size: 0.6rem !important;
    }
    
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .banks-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }
    
    
    
    .card-header {
        flex-wrap: wrap !important;
    }
    
    .bank-name h3 {
        font-size: 0.85rem !important;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .bank-card {
        padding: 0.4rem !important;
    }
    
    .bank-logo {
        width: 62px !important;
        height: 62px !important;
    }
    
    .bank-name h3 {
        font-size: 0.75rem !important;
    }
    
    .detail-item {
        font-size: 0.55rem !important;
    }
    
    .detail-label, .detail-value {
        font-size: 1.0rem !important;
    }
    
    .btn-details {
        font-size: 0.9rem !important;
    }
    
    .compare-label {
        font-size: 0.85rem !important;
    }
}

/* EXTRA SMALL (max-width: 360px) */
@media (max-width: 360px) {
    .bank-card {
        padding: 0.35rem !important;
    }
    
    .bank-logo {
        width: 62px !important;
        height: 62px !important;
    }
    
    .bank-name h3 {
        font-size: 0.7rem !important;
    }
    
    .bank-type {
        font-size: 0.5rem !important;
    }
    
    .detail-item {
        font-size: 0.5rem !important;
    }
    
    .detail-label, .detail-value {
        font-size: 0.5rem !important;
    }
    
    .btn-details {
        font-size: 0.55rem !important;
        padding: 2px 2px !important;
    }
}
    /* COMPLETE WHITE BACKGROUND FIX - For Bootstrap/Tailwind */
html, 
body,
#app,
#root,
.main-wrapper,
.site-wrapper {
    background-color: #ffffff !important;
    background-image: none !important;
}

/* Tailwind specific */
.bg-white,
.bg-gray-50,
.bg-gray-100,
.bg-gray-200,
.bg-slate-50,
.bg-slate-100,
.bg-neutral-50,
.bg-neutral-100,
.bg-stone-50,
.bg-stone-100 {
    background-color: #ffffff !important;
}

/* Bootstrap specific */
.bg-light,
.bg-body,
.bg-body-tertiary,
.bg-secondary.bg-gradient,
.bg-light.bg-gradient {
    background-color: #ffffff !important;
}

/* Common elements */
.card,
.modal-content,
.dropdown-menu,
.list-group-item,
.table,
.accordion-item,
.navbar-nav {
    background-color: #ffffff !important;
}

/* Dark mode agar disable karna hai to */
.dark-mode,
.dark-mode body,
.dark-mode .bg-gray-50 {
    background-color: #ffffff !important;
}
/* Expert Button - Chatbot Fallback (Mini) */
.expert-btn-container{text-align:center;padding:2px 0px;background:linear-gradient(135deg,#fef3c7,#fde68a);border-radius:16px;margin:12px;animation:pulse 1.5s infinite}.expert-btn{background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;border:none;padding:12px 24px;border-radius:60px;font-size:14px;font-weight:600;cursor:pointer;transition:all .3s ease;display:inline-flex;align-items:center;gap:10px;width:100%;justify-content:center}.expert-btn:hover{transform:scale(1.02);box-shadow:0 10px 25px -5px rgba(245,158,11,.4)}.expert-info{font-size:11px;color:#92400e;margin-top:8px}@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(245,158,11,.4)}50%{box-shadow:0 0 0 8px rgba(245,158,11,0)}}</style>
    <style>
        *{margin:0;padding:0;box-sizing:border-box}html,body{width:100%;overflow-x:hidden}body{font-family:'Inter',sans-serif;background-color: #ffffff !important;color:#1e293b;line-height:1.5;transition:background .3s ease,color .3s ease}.bg-gray-50, .bg-gray-100,.bg-gray-200 {
    background-color: #ffffff !important;
}
        
              
        /* Utility Classes - Keep Original */
        .container{max-width:1190px;margin:0 auto;padding:0 16px}@media(min-width:640px){.container{padding:0 24px}}@media(min-width:1024px){.container{padding:0 32px}}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.hidden{display:none}.flex{display:flex}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:4px}.gap-2{gap:8px}.gap-3{gap:12px}.gap-4{gap:16px}.gap-5{gap:20px}.gap-6{gap:24px}.p-2{padding:8px}.p-3{padding:12px}.p-4{padding:16px}.p-5{padding:20px}.p-6{padding:24px}.m-2{margin:8px}.m-3{margin:12px}.m-4{margin:16px}.mt-2{margin-top:8px}.mt-4{margin-top:16px}.mb-2{margin-bottom:8px}.mb-4{margin-bottom:16px}.mb-6{margin-bottom:24px}.text-xs{font-size:12px}.text-sm{font-size:14px}.text-base{font-size:16px}.text-lg{font-size:18px}.text-xl{font-size:20px}.text-2xl{font-size:24px}.text-3xl{font-size:30px}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.text-white{color:#fff}.text-gray-500{color:#64748b}.text-gray-600{color:#475569}.text-indigo-600{color:#4f46e5}.text-green-600{color:#059669}.bg-white{background:#fff}.bg-gray-50{background:#f8fafc}.bg-indigo-50{background:#eef2ff}.border{border:1px solid #e2e8f0}.rounded{border-radius:8px}.rounded-lg{border-radius:12px}.rounded-xl{border-radius:16px}.rounded-2xl{border-radius:20px}.rounded-full{border-radius:9999px}.shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1)}.shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1)}.shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1)}.btn-primary{background:linear-gradient(135deg,#4f46e5,#7c3aed);color:#fff;padding:12px 24px;border-radius:40px;font-weight:600;border:none;cursor:pointer;transition:all .3s ease;display:inline-flex;align-items:center;gap:8px}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 20px -5px rgba(79,70,229,.4)}.filters-wrapper{display:flex;justify-content:space-between;align-items:center;gap:1.5rem;margin-bottom:2rem;flex-wrap:wrap}.search-bar{flex:1;position:relative;min-width:200px}.search-bar i{position:absolute;left:1rem;top:50%;transform:translateY(-50%);color:#94a3b8}.search-bar input{width:100%;padding:.75rem 1rem .75rem 2.5rem;border:2px solid #e2e8f0;border-radius:.75rem;font-size:1rem;outline:none;transition:border-color .3s}.search-bar input:focus{border-color:#667eea}.filter-tabs{display:flex;gap:.5rem;flex-wrap:wrap}.filter-btn{padding:.5rem 1.5rem;border:2px solid #e2e8f0;background:#fff;border-radius:2rem;cursor:pointer;font-weight:500;transition:all .3s}.filter-btn.active,.filter-btn:hover{background:#0071e3;border-color:#667eea;color:#fff}
        .detail-item{padding:0 0 0 0px; !important}
        .banks-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(350px,1fr));gap:1.5rem;margin-bottom:2rem}@media(max-width:768px){.banks-grid{grid-template-columns:1fr;gap:1rem}}.bank-card{background:#fff;border-radius:1rem;padding:0rem;transition:all .3s;position:relative;border:1px solid #e2e8f0}.bank-card:hover{transform:translateY(-4px);box-shadow:0 20px 30px -12px rgba(0,0,0,.15);border-color:#667eea}.badge-top{position:absolute;top:-.5rem;right:1rem;background:linear-gradient(135deg,#fbbf24,#f59e0b);color:#fff;padding:.25rem .75rem;border-radius:2rem;font-size:.75rem;font-weight:600}.card-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1rem;flex-wrap:wrap;gap:10px}.bank-logo{width:100px;height:100px;object-fit:contain;border-radius:10px}.bank-name h3{font-size:1.1rem;margin-bottom:.25rem}.bank-type{font-size:.75rem;background:#f1f5f9;padding:.25rem .5rem;border-radius:2rem;display:inline-block;color:#475569}.bank-rating{display:flex;align-items:center;gap:.25rem;font-weight:600;font-size:.4rem;flex-shrink:0}.bank-rating i{color:#fbbf24}.card-details{margin:1rem 0;display:grid;;gap:.75rem}@media(max-width:480px){.bank-card{padding:1rem}.card-details{gap:.5rem}.detail-item{font-size:.75rem}}.detail-item{display:flex;justify-content:space-between;font-size:.875rem;gap:..5rem}.detail-label{color:#64748b}.detail-value{font-weight:600}.detail-value.roi{color:#10b981}.card-actions{display:flex;justify-content:space-between;align-items:center;margin-top:1rem;padding-top:1rem;border-top:1px solid #f1f5f9;flex-wrap:wrap;gap:10px}.btn-details{background:0 0;border:none;color:#667eea;font-weight:600;cursor:pointer;display:flex;align-items:center;gap:.4rem;font-family:inherit;font-size:.9rem}.btn-details:hover{text-decoration:underline}.compare-label{display:flex;align-items:center;gap:.4rem;cursor:pointer;font-size:.85rem;color:#64748b}.view-more-container{text-align:center;margin:1rem 0 2rem}.view-more-btn{background:linear-gradient(135deg,#0071e3);color:#fff;border:none;padding:.8rem 2rem;border-radius:2rem;font-size:1rem;font-weight:600;cursor:pointer;display:inline-flex;align-items:center;gap:.5rem;transition:all .3s}.view-more-btn:hover{transform:translateY(-2px);box-shadow:0 10px 25px -5px rgba(102,126,234,.4)}
        
        .trust-strip{background:#fff;border-top:1px solid #e2e8f0;border-bottom:1px solid #e2e8f0;padding:1rem;display:flex;align-items:center;justify-content:center;gap:2rem;flex-wrap:wrap;margin:2rem 0}@media(max-width:768px){.trust-strip{gap:1rem}.trust-item{font-size:.7rem}}.trust-item{display:flex;align-items:center;gap:.5rem;font-size:.75rem;color:#64748b;font-weight:500}.trust-item i{color:#10b981;font-size:1rem}.stats-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;padding:1rem;background:#fff;border-radius:1rem;margin:1rem 0;justify-self: center;}@media(max-width:768px){.stats-strip{grid-template-columns:repeat(2,1fr)}}@media(max-width:480px){.stats-strip{grid-template-columns:1fr}}.stat-item{text-align:center;padding:.8rem}.ss-num{font-size:1.2rem;font-weight:700;color:#2563eb}.ss-lbl{font-size:.7rem;color:#666}.compare-bar{position:fixed;bottom:1rem;left:50%;transform:translateX(-50%);background:#fff;border-radius:.8rem;padding:.5rem 1rem;display:flex;align-items:center;gap:.8rem;box-shadow:0 10px 40px rgba(0,0,0,.2);z-index:1500;flex-wrap:wrap;justify-content:center;font-size:.75rem}.compare-bar.hidden{display:none}.compare-chips{display:flex;gap:.3rem;flex-wrap:wrap}.compare-chip{background:#f1f5f9;padding:.2rem .5rem;border-radius:1rem;font-size:.7rem;display:flex;align-items:center;gap:.3rem}.btn-clear,.btn-compare{padding:.3rem .8rem;border-radius:1rem;border:none;cursor:pointer;font-size:.7rem;font-weight:500}.btn-clear{background:#f1f5f9;color:#64748b}.btn-compare{background:#0071e3 !important;color:#fff}.modal{position:fixed;inset:0;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-center;z-index:1000;padding:16px}.modal.hidden{display:none}.modal-content{background:#fff;border-radius:24px;max-width:480px;width:90%;max-height:90vh;overflow-y:auto;padding:24px}.modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;padding-bottom:15px;border-bottom:1px solid #e2e8f0}.modal-close{background:0 0;border:none;font-size:24px;cursor:pointer;color:#94a3b8}
        
        
        
        
        
        .premium-testimonials-slider{padding:10px 0;background:#fff;position:relative;overflow:hidden}@media(max-width:768px){.premium-testimonials-slider{padding:10px 0}}.premium-container{max-width:1400px;margin:0 auto;padding:0 24px}@media(max-width:480px){.premium-container{padding:0 16px}}.section-header{text-align:center;margin-bottom:50px}.section-badge{display:inline-block;padding:6px 16px;background:linear-gradient(135deg,#eef2ff,#fae8ff);color:#4f46e5;border-radius:40px;font-size:12px;font-weight:600;letter-spacing:1px;margin-bottom:16px}.premium-title{font-size:36px;font-weight:800;color:#1e293b;margin-bottom:16px}@media(max-width:768px){.premium-title{font-size:28px}}@media(max-width:480px){.premium-title{font-size:24px}}.gradient-text{background:linear-gradient(135deg,#0071e3!important);-webkit-background-clip:text;background-clip:text;color:transparent}.testimonial-slider-wrapper{position:relative;padding:10px 0}.slider-container-3col{overflow:hidden;border-radius:24px}.slider-track-3col{display:flex;gap:30px;transition:transform .5s cubic-bezier(.4,0,.2,1)}.testimonial-card-3col{flex:0 0 calc(33.333% - 20px);position:relative;background:#fff;border-radius:24px;transition:all .4s ease;border:1px solid #e2e8f0;box-shadow:0 4px 6px -1px rgba(0,0,0,.05)}@media(max-width:1200px){.testimonial-card-3col{flex:0 0 calc(50% - 15px)}}@media(max-width:768px){.testimonial-card-3col{flex:0 0 100%}}.testimonial-card-3col:hover{transform:translateY(-8px);box-shadow:0 20px 25px -5px rgba(0,0,0,.1)}.card-gradient-border{position:absolute;inset:0;background:linear-gradient(135deg,#4f46e5,#f59e0b,#7c3aed);opacity:0;transition:opacity .4s ease;border-radius:24px;z-index:0}.testimonial-card-3col:hover .card-gradient-border{opacity:1}.card-inner-3col{position:relative;background:#fff;border-radius:23px;padding:28px;margin:1px;z-index:1}@media(max-width:768px){.card-inner-3col{padding:20px}}.quote-icon-top{margin-bottom:20px}.quote-icon-top i{font-size:40px;}.testimonial-message-text{color:#475569;font-size:15px;line-height:1.7;margin-bottom:20px;font-style:italic}.rating-stars-section{display:flex;align-items:center;gap:6px;margin-bottom:24px;flex-wrap:wrap}.rating-stars-section i{font-size:15px;color:#cbd5e1}.rating-stars-section i.active{color:#fbbf24}.author-info-section{display:flex;align-items:center;gap:14px;padding-top:20px;border-top:1px solid #f1f5f9}@media(max-width:768px){.author-info-section{flex-direction:column;text-align:center}.author-meta-info{justify-content:center}}.author-avatar-box{position:relative}.author-avatar-box img{width:52px;height:52px;border-radius:50%;object-fit:cover;border:2px solid #4f46e5}.author-detail-box h4{font-size:16px;font-weight:700;color:#1e293b;margin-bottom:6px}.author-meta-info{display:flex;flex-wrap:wrap;gap:12px}.author-meta-info span{font-size:11px;color:#64748b;display:flex;align-items:center;gap:4px}.slider-nav-3col{position:absolute;top:50%;transform:translateY(-50%);width:46px;height:46px;background:#fff;border:1px solid #e2e8f0;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:20;color:#4f46e5;box-shadow:0 4px 12px rgba(0,0,0,.05);transition:all .3s ease}@media(max-width:768px){.slider-nav-3col{width:38px;height:38px}}.slider-nav-3col:hover{background:linear-gradient(135deg,#4f46e5,#7c3aed);color:#fff;border-color:transparent}.slider-nav-3col.prev{left:-20px}.slider-nav-3col.next{right:-20px}@media(max-width:1200px){.slider-nav-3col.prev{left:-10px}.slider-nav-3col.next{right:-10px}}@media(max-width:768px){.slider-nav-3col.prev{left:5px}.slider-nav-3col.next{right:5px}}.slider-dots-3col{display:flex;justify-content:center;gap:12px;margin-top:40px}.slider-dots-3col .dot{width:10px;height:10px;border-radius:50%;background:#cbd5e1;cursor:pointer;transition:all .3s ease;border:none}.slider-dots-3col .dot.active{background:#f59e0b;width:30px;border-radius:10px}.ai-chatbot-container{position:fixed;bottom:30px;right:30px;z-index:1000}@media(max-width:768px){.ai-chatbot-container{bottom:20px;right:20px}}.ai-chatbot-toggle{width:65px;height:65px;;border-radius:50%;display:flex;align-items:cenr:pointer;transition:all .3s;position:relative}@media(max-width:768px){.ai-chatbot-toggle{width:55px;height:55px}}.ai-chatbot-toggle:hover{transform:scale(1.1)}.ai-chatbot-toggle i{font-size:30px;color:#fff}@media(max-width:768px){.ai-chatbot-toggle i{font-size:26px}}.notification-dot{position:absolute;top:-5px;right:-5px;background:#ef4444;color:#fff;font-size:11px;padding:2px 7px;border-radius:20px;animation:pulse 1s infinite}.ai-chatbot-window{position:absolute;bottom:85px;right:0;width:380px;height:320px;background:#fff;border-radius:24px;box-shadow:0 25px 50px -12px rgba(0,0,0,.25);display:none;flex-direction:column;overflow:hidden;border:1px solid rgba(0,0,0,.05)}@media(max-width:768px){.ai-chatbot-window{width:340px;right:-10px;bottom:75px;height:480px}}.ai-chatbot-window.show{display:flex}.ai-chatbot-header{background:linear-gradient(135deg,#FF9800,#FF5722);color:#fff;padding:18px 20px;display:flex;justify-content:space-between;align-items:center}.ai-header-content{display:flex;align-items:center;gap:12px}.ai-header-content i{font-size:28px}.ai-header-content h4{margin:0;font-size:16px;font-weight:600}.ai-header-content p{margin:0;font-size:11px;opacity:.8}.ai-chatbot-header button{background:0 0;border:none;color:#fff;cursor:pointer;font-size:18px}.ai-chatbot-messages{flex:1;padding:18px;overflow-y:auto;background:#f8fafc}.ai-message,.user-message{display:flex;gap:10px;margin-bottom:16px}.user-message{flex-direction:row-reverse}.ai-avatar,.user-avatar{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}.ai-avatar{background:linear-gradient(135deg,#4f46e5,#7c3aed);color:#fff}.user-avatar{background:#e2e8f0;color:#64748b}.ai-bubble,.user-bubble{max-width:75%;padding:10px 16px;border-radius:20px;font-size:14px;line-height:1.45}.ai-bubble{background:#fff;border:1px solid #e2e8f0;color:#1e293b;border-bottom-left-radius:4px}.user-bubble{background:#0071e3;color:#fff;border-bottom-right-radius:4px}.ai-chatbot-input{display:flex;padding:14px;gap:10px;border-top:1px solid #e2e8f0;background:#fff}.ai-chatbot-input textarea{flex:1;border:1px solid #e2e8f0;border-radius:24px;padding:10px 16px;resize:none;font-size:14px;font-family:inherit;outline:none;transition:border .2s}.ai-chatbot-input textarea:focus{border-color:#4f46e5}.ai-chatbot-input button{width:44px;height:44px;background:linear-gradient(135deg,#0071e3,#0071e3);border:none;border-radius:50%;color:#fff;cursor:pointer;transition:all .2s}.ai-chatbot-input button:hover{transform:scale(1.05)}.typing-indicator{display:flex;gap:5px;padding:12px 16px}.typing-indicator span{width:8px;height:8px;background:#94a3b8;border-radius:50%;animation:typing 1.4s infinite}.typing-indicator span:nth-child(2){animation-delay:.2s}.typing-indicator span:nth-child(3){animation-delay:.4s}@keyframes typing{0%,60%,100%{transform:translateY(0);opacity:.5}30%{transform:translateY(-8px);opacity:1}}@keyframes pulse{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.15);opacity:.8}}input,select,textarea{width:100%;padding:12px 16px;border:2px solid #e2e8f0;border-radius:16px;transition:all .3s;font-size:14px;font-family:inherit}input:focus,select:focus,textarea:focus{outline:none;border-color:#4f46e5;box-shadow:0 0 0 3px rgba(79,70,229,.1)}.premium-footer{background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);color:#e2e8f0;margin-top:2rem}.footer-container{max-width:1190px;margin:0 auto;padding:2rem 1rem}.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem}@media(max-width:768px){.footer-grid{gap:1rem;text-align:center}}.footer-col h3{font-size:.9rem;font-weight:700;margin-bottom:1rem;color:#fff}.footer-links{list-style:none}.footer-links li{margin-bottom:.4rem}.footer-links a{color:#cbd5e1;text-decoration:none;font-size:.75rem;transition:color .3s}.footer-links a:hover{color:#f59e0b}.social-icons{display:flex;gap:.8rem;margin:1rem 0;justify-content:center}.social-icon{width:32px;height:32px;background:rgba(255,255,255,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;transition:all .3s}.social-icon:hover{background:#f59e0b;transform:translateY(-2px)}.copyright-bar{text-align:center;padding-top:1rem;margin-top:1rem;border-top:1px solid rgba(255,255,255,.1);font-size:.7rem}
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
    overflow-x: hidden;
}
.container { max-width: 1190px; margin: 0 auto; }
.slide-btn  { background: #0071e3; color: white; padding: 10px 20px; border-radius: 6px; text-decoration: none; display: inline-block; }

/* ===== HERO PARTNER ===== */
.hero-partner-section {
    position: relative; display: flex;
    align-items: center; justify-content: center; padding: 40px 20px;
}
.hero-bg-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; animation: floatOrb 20s infinite ease-in-out; pointer-events: none; }
.orb-1 { width:400px; height:400px; background:radial-gradient(circle,rgba(0,113,227,.3),rgba(88,86,214,.1)); top:-100px; left:-100px; }
.orb-2 { width:500px; height:500px; background:radial-gradient(circle,rgba(245,158,11,.25),rgba(255,149,0,.08)); bottom:-150px; right:-100px; animation-delay:5s; }
.orb-3 { width:300px; height:300px; background:radial-gradient(circle,rgba(52,199,89,.2),rgba(52,199,89,.05)); top:50%; left:50%; transform:translate(-50%,-50%); animation-delay:10s; }
@keyframes floatOrb {
    0%,100% { transform:translate(0,0) scale(1); opacity:.4; }
    33%      { transform:translate(30px,-30px) scale(1.1); opacity:.6; }
    66%      { transform:translate(-20px,20px) scale(.9); opacity:.3; }
}
.hero-partner-container { max-width:1400px; width:100%; margin:0 auto; position:relative; z-index:2; }
.hero-partner-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.hero-partner-content { animation:fadeInLeft .8s cubic-bezier(.25,.1,.25,1); }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-50px)} to{opacity:1;transform:translateX(0)} }
.hero-partner-title {
    font-size: clamp(2rem,4vw,3rem); font-weight:800; line-height:1.2; margin-bottom:20px;
    background: linear-gradient(135deg,#1d1d1f 0%,#0071e3 50%,#5856d6 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-partner-highlight { background:linear-gradient(135deg,#f59e0b,#f97316); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-partner-desc { font-size:1rem; color:#86868b; line-height:1.6; margin-bottom:32px; max-width:500px; }
.hero-partner-buttons { display:flex; flex-wrap:wrap; gap:16px; margin-bottom:40px; }
.btn-primary-partner {
    background: linear-gradient(135deg,#0071e3,#5856d6); color:white; border:none;
    padding:16px 36px; border-radius:50px; font-size:16px; font-weight:600; cursor:pointer;
    display:inline-flex; align-items:center; gap:12px;
    transition:all .3s ease; box-shadow:0 8px 20px rgba(0,113,227,.3);
}
.btn-primary-partner:hover { transform:translateY(-3px) scale(1.02); box-shadow:0 12px 30px rgba(0,113,227,.4); }
.hero-partner-image { position:relative; animation:fadeInRight .8s cubic-bezier(.25,.1,.25,1); }
@keyframes fadeInRight { from{opacity:0;transform:translateX(50px)} to{opacity:1;transform:translateX(0)} }
.image-glass-container {
    position:relative; background:rgba(255,255,255,.3); backdrop-filter:blur(20px);
    border-radius:48px; padding:20px; border:1px solid rgba(255,255,255,.5);
    box-shadow:0 25px 50px -12px rgba(0,0,0,.25); transition:all .4s ease;
}
.image-glass-container:hover { transform:scale(1.02); }
.handshake-image { width:100%; height:auto; border-radius:36px; display:block; }
.floating-card {
    position:absolute; background:rgba(255,255,255,.95); backdrop-filter:blur(15px);
    border-radius:20px; padding:12px 20px; display:flex; align-items:center; gap:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.1); animation:float 3s infinite ease-in-out; z-index:5;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.floating-card-1 { top:10%;   right:-20px; }
.floating-card-2 { bottom:15%; left:-30px;  animation-delay:1s; }
.floating-card-3 { top:40%;   left:-20px;  animation-delay:.5s; }
.floating-icon { width:40px; height:40px; background:linear-gradient(135deg,#34c759,#28a745); border-radius:12px; display:flex; align-items:center; justify-content:center; }
.floating-icon i  { font-size:20px; color:white; }
.floating-text    { font-size:12px; font-weight:600; color:#1d1d1f; }
.floating-subtext { font-size:10px; color:#86868b; }
.trust-badges {
    position:absolute; bottom:-20px; right:20px; background:#0071e3;
    border-radius:30px; padding:12px 24px; display:flex; align-items:center; gap:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.1); z-index:6;
}
.trust-badges i      { font-size:28px; color:#f59e0b; }
.trust-badges strong { font-size:14px; color:#fff; }
.trust-badges p      { font-size:10px; color:#f6d6d8; }

@media(max-width:900px) {
    .hero-partner-grid { grid-template-columns:1fr; text-align:center; }
    .hero-partner-desc { margin:0 auto 32px; }
    .hero-partner-buttons { justify-content:center; }
    .hero-partner-image { max-width:500px; margin:0 auto; }
    .floating-card-1 { right:0; } .floating-card-2 { left:0; }
    .trust-badges { bottom:-10px; right:10px; }
}
@media(max-width:640px) {
    .hero-partner-section { display:block !important; }
    .hero-partner-buttons { flex-direction:column; }
    .btn-primary-partner  { justify-content:center; width:100%; }
    .floating-card { display:none; }
    .trust-badges  { position:static; margin-top:20px; justify-content:center; }
}
.touch-ripple { position:relative; overflow:hidden; }
.touch-ripple::after { content:''; position:absolute; top:50%; left:50%; width:0; height:0; border-radius:50%; background:rgba(255,255,255,.4); transform:translate(-50%,-50%); transition:width .4s,height .4s; }
.touch-ripple:active::after { width:200px; height:200px; opacity:0; }
h1{font-size:clamp(16px,2vw,22px);line-height:1.2;color:#333;text-align:center;word-break:break-word;margin:20px 0}.heading-1{font-size:clamp(16px,2vw,22px);color:blue}.heading-2{font-size:clamp(16px,2vw,22px);color:green}@media(orientation:portrait){h1{font-size:clamp(14px,2vw,18px)}}@media(orientation:landscape){h1{font-size:clamp(16px,2vw,18px)}}@media print{h1{font-size:14pt;color:#000}}

/* ===== BASE RESPONSIVE CSS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, 'Roboto', sans-serif;
  padding: 0;
  line-height: 1.4;
  min-height: 100vh;
}

/* Main wrapper - NO extra padding */
.why-choose-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 0.5rem;
}

/* ============================================ */
/* 🔥 NEW GLASSMORPHISM STYLES (REPLACED) 🔥 */
/* ============================================ */

.glassmart-container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Glassmorphism Effect - Frosted overlay */
.glassmart-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none !important;
  color: #000000!important;
}

/* Animated gradient bar on top */
.glassmart-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: none !important;
  color: #000000!important;
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: none!important;
  -webkit-background-clip: text;
  background-clip: text;
  color: #000000!important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.title-accent {
  text-align: center;
  font-size: 1.1rem;
  color: #000000!important;
  margin-bottom: 50px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  width: 100%;
  z-index: 1;
}

.title-accent::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: none!important;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

/* Glassmorphism Cards - Enhanced */
.benefit-card {
  background: none!important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  animation: fadeUp 0.5s ease-out forwards;
  opacity: 0;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-icon {
  font-size: 2rem;
  
  width: 112px!important;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.3s ease;
  color: #1e293b;
}

.benefit-card:hover .card-icon {
  
  transform: scale(1.05);
}

.benefit-card h3 {
  font-size: .9rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.benefit-card p {
  color: #1a202c;
  line-height: 1.5;
  font-size: 0.6rem;
  margin: 0;
}

.benefit-card p strong {
  color: #000000;
  font-weight: 700;
}

/* Supporting Text - Enhanced */
.supporting-text {
  background: #f8fafc;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

.supporting-text p {
  color: #1a202c;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.supporting-text strong {
  color: #000000;
  font-weight: 700;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card:nth-child(1) { animation-delay: 0.05s; }
.benefit-card:nth-child(2) { animation-delay: 0.1s; }
.benefit-card:nth-child(3) { animation-delay: 0.15s; }
.benefit-card:nth-child(4) { animation-delay: 0.2s; }
.benefit-card:nth-child(5) { animation-delay: 0.25s; }
.benefit-card:nth-child(6) { animation-delay: 0.3s; }

/* ============================================ */
/* 🔥 COMPLETE RESPONSIVE FIXES 🔥 */
/* ============================================ */

/* Desktop (1025px and above) */
@media (min-width: 1025px) {
  .glassmart-container {
    padding: 10px 32px;
  }
  .section-title {
    font-size: 1.6rem !important;
  }
  .benefits-grid {
    gap: 32px;
  }
  .benefit-card {
    padding: 5px;
  }
  .card-icon {
    width: 99px!important;
    height: 64px;
    font-size: 2.2rem;
  }
  .benefit-card h3 {
    font-size: .9rem;
  }
  .benefit-card p {
    font-size: 0.7rem;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .why-choose-wrapper {
    padding: 0.5rem;
  }
  
  .glassmart-container {
    padding: 10px 20px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .section-title {
    font-size: 1.2rem;
  }
  
  .title-accent {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .benefit-card {
    padding: 4px;
  }
  
  .card-icon {
    width: 80px!important;
    height: 50px;
    font-size: 1.75rem;
  }
  
  .benefit-card h3 {
    font-size: .9rem;
  }
  
  .benefit-card p {
    font-size: 0.85rem;
  }
  
  .supporting-text {
    padding: 20px 24px;
  }
  
  .supporting-text p {
    font-size: 0.9rem;
  }
}

/* Small Tablet / Large Phone (550px - 768px) */
@media (max-width: 768px) {
  .why-choose-wrapper {
    padding: 0.4rem;
  }
  
  .glassmart-container {
    padding: 10px 16px;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .title-accent {
    font-size: 0.85rem;
    margin-bottom: 35px;
  }
  
  .title-accent::after {
    width: 50px;
    margin-top: 10px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .card-icon {
    width: 88px!important;
    height: 48px;
    font-size: 1rem;
  }
  
  .benefit-card h3 {
    font-size: 0.8rem;
    text-align: center;
  }
  
  .benefit-card p {
    font-size: 0.8rem;
    text-align: center;
  }
  
  .supporting-text {
    padding: 18px 20px;
  }
  
  .supporting-text p {
    font-size: 0.85rem;
    text-align: center;
  }
}

/* Mobile (400px - 550px) */
@media (max-width: 550px) {
  .why-choose-wrapper {
    padding: 0.3rem;
  }
  
  .glassmart-container {
    padding: 10px 12px;
    border-radius: 1rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .title-accent {
    font-size: 0.75rem;
    margin-bottom: 30px;
  }
  
  .title-accent::after {
    width: 40px;
    margin-top: 8px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .benefit-card {
    padding: 18px;
    border-radius: 20px;
  }
  
  .card-header {
    flex-direction: row;
    text-align: left;
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .card-icon {
    width: 74px!important;
    height: 44px;
    font-size: 1.35rem;
    border-radius: 12px;
  }
  
  .benefit-card h3 {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .benefit-card p {
    font-size: 0.75rem;
    text-align: left;
    line-height: 1.45;
  }
  
  .supporting-text {
    padding: 16px;
    border-radius: 16px;
  }
  
  .supporting-text p {
    font-size: 0.75rem;
    text-align: left;
  }
}

/* Small Mobile (up to 400px) */
@media (max-width: 400px) {
  .glassmart-container {
    padding: 5px 10px;
    border-radius: 0.9rem;
  }
  
  .section-title {
    font-size: 1.1rem;
  }
  
  .title-accent {
    font-size: 0.65rem;
    margin-bottom: 25px;
  }
  
  .benefit-card {
    padding: 14px;
  }
  
  .card-icon {
    width: 68px!important;
    height: 38px;
    font-size: 1.1rem;
  }
  
  .benefit-card h3 {
    font-size: 0.85rem;
  }
  
  .benefit-card p {
    font-size: 0.7rem;
  }
  
  .supporting-text {
    padding: 14px;
  }
  
  .supporting-text p {
    font-size: 0.7rem;
  }
}

/* Landscape mode on phones */
@media (max-width: 768px) and (orientation: landscape) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .benefit-card {
    padding: 12px;
  }
  
  .card-header {
    flex-direction: row;
    gap: 8px;
  }
  
  .card-icon {
    width: 66px!important;
    height: 36px;
    font-size: 1rem;
  }
  
  .benefit-card h3 {
    font-size: 0.8rem;
  }
  
  .benefit-card p {
    font-size: 0.65rem;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .benefit-card,
  .benefit-card:hover,
  .card-icon,
  .glassmart-container::after {
    transition: none;
    animation: none;
    transform: none;
  }
  .benefit-card {
    opacity: 1;
  }
}

/* Smooth Scroll & Touch Optimization */
@media (hover: none) and (pointer: coarse) {
  .benefit-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  .benefit-card:active {
    transform: scale(0.98);
    transition: transform 0.1s;
  }
}

/* Print Styles */
@media print {
  .glassmart-container {
    background: white;
    padding: 20px;
    box-shadow: none;
  }
  
  .glassmart-container::before,
  .glassmart-container::after {
    display: none;
  }
  
  .section-title {
    color: #000000;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }
  
  .benefit-card {
    break-inside: avoid;
    border: 1px solid #ddd;
    background: white;
    backdrop-filter: none;
    box-shadow: none;
  }
  
  .benefit-card p, 
  .benefit-card h3,
  .title-accent,
  .supporting-text p {
    color: #000000;
  }
  
  .supporting-text {
    background: #f5f5f5;
    backdrop-filter: none;
  }
}
/* बटन - ग्लासमोर्फिज्म + सेंटर */
.view-all-btn{text-align:center;margin-top:2.5rem;margin-bottom:.5rem;width:100%}
.view-all-btn button{background:#0071e3;border:none;border-radius:3rem;box-shadow:0 4px 12px rgba(0,0,0,.05);color:#fff;font-size:.9rem;font-weight:600;padding:.8rem 2.2rem;min-width:180px;display:inline-flex;align-items:center;justify-content:center;gap:.6rem;cursor:pointer;transition:all .3s ease;position:relative;overflow:hidden}
.view-all-btn button i{font-size:.8rem;transition:transform .25s ease}
.view-all-btn button:hover{background:#005bb5;transform:translateY(-2px);box-shadow:0 12px 28px rgba(0,0,0,.1)}
.view-all-btn button:hover i{transform:translateX(4px)}
.view-all-btn button:active{transform:translateY(1px)}
.view-all-btn button::after{content:'';position:absolute;top:50%;left:50%;width:0;height:0;border-radius:50%;background:rgba(255,255,255,.3);transform:translate(-50%,-50%);transition:width .4s ease,height .4s ease}
.view-all-btn button:active::after{width:200%;height:200%}
