.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.7rem !important;
    padding: 1.7rem !important;
}

.bank-rating i {
    font-size: 0.6rem !important;
}

/* CARD DETAILS GRID - COMPACT */
.card-details {
    margin: 0.5rem 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !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:.9rem;flex-shrink:0}.bank-rating i{color:#fbbf24}.card-details{margin:1rem 0;display:grid;grid-template-columns:1fr 1fr;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:#4f46e5;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:700px;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:1280px;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}