/* Custom Modern Theme Overrides */
:root{
  --primary:#0066FF; /* vivid blue */
  --accent:#00C896; /* teal */
  --bg:#F7FAFF; /* very light blue */
  --surface:#FFFFFF;
  --muted:#6B7280;
  --text:#0F1724;
  --glass: rgba(255,255,255,0.6);
}

/* Base */
body{font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; background:var(--bg); color:var(--text);}
h1,h2,h3,h4,h5,h6{color:var(--text);font-weight:600}

/* Links and buttons */
a, a.btn, .btn{transition:all .18s ease-in-out}
.btn-solid, .btn{background:var(--primary);border:none;color:#fff;padding:10px 18px;border-radius:10px;box-shadow:0 6px 18px rgba(6,30,70,0.08)}
.btn-solid:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(6,30,70,0.12)}
.btn-outline{border:1px solid rgba(15,23,36,0.08);background:transparent;color:var(--primary);border-radius:10px;padding:8px 16px}

/* Cards / Category items */
.category .category-wrap{background:var(--surface);border-radius:12px;padding:14px;box-shadow:0 6px 18px rgba(15,23,36,0.06);transition:transform .18s ease,box-shadow .18s ease}
.category .category-wrap:hover{transform:translateY(-6px);box-shadow:0 20px 40px rgba(15,23,36,0.08)}
.category .category-wrap img{border-radius:8px;object-fit:cover}
.category .category-wrap h5{margin:10px 0 4px;font-size:1rem;color:var(--text)}
.category .category-wrap h6{color:var(--primary);font-weight:600}
.category .category-wrap p{color:var(--muted);font-size:0.9rem}

/* Tabs: center on desktop, horizontally scrollable on small screens */
.theme-tab{width:100%;}
.theme-tab .tabs{display:flex;gap:12px;flex-wrap:nowrap;justify-content:center;align-items:center;overflow-x:auto;padding:8px 12px;-webkit-overflow-scrolling:touch}
.theme-tab .tabs li{list-style:none;margin:0}
.theme-tab .tabs li a{display:inline-flex;align-items:center;white-space:nowrap;padding:8px 14px;border-radius:10px;background:transparent;color:var(--muted);border:1px solid transparent}
.theme-tab .tabs li.current a, .theme-tab .tabs li a:hover{background:linear-gradient(90deg,var(--primary),var(--accent));color:#fff;box-shadow:0 8px 20px rgba(0,102,255,0.12)}
.theme-tab .tabs::-webkit-scrollbar{height:6px}
.theme-tab .tabs::-webkit-scrollbar-thumb{background:rgba(0,0,0,0.12);border-radius:6px}

@media (min-width:769px){
  .theme-tab .tabs{overflow-x:visible}
}

/* Slider: subtle overlay on images */
.home .bg-img{filter:brightness(0.95);border-radius:8px}
.home .slider-contain h1{color:#fff;text-shadow:0 8px 30px rgba(0,0,0,0.35)}

/* Partner / Customer slides */
.slide-6 > div{padding:8px}
.slide-6 img{border-radius:10px;box-shadow:0 8px 24px rgba(15,23,36,0.06)}

/* Modal tweaks */
.modal-login .modal-content{border-radius:14px;overflow:hidden}
.modal-login .modal-title{font-weight:700}
.kk{display:inline-flex;align-items:center;gap:8px;color:var(--text);text-decoration:none}

/* Tap to top */
.tap-top{right:18px;bottom:88px}
.tap-top div{background:var(--surface);color:var(--primary);box-shadow:0 8px 20px rgba(6,30,70,0.06);border-radius:50%;width:44px;height:44px;display:flex;align-items:center;justify-content:center}

/* Modern WhatsApp button tweak */
.whatsapp-float{box-shadow:0 16px 40px rgba(0,0,0,0.12);transition:transform .12s ease}
.whatsapp-float:hover{transform:translateY(-6px)}

/* Responsive adjustments */
@media (max-width:768px){
  .category .category-wrap{padding:10px;border-radius:10px}
  .btn-solid{padding:9px 14px}
}

/* Utility */
.text-muted{color:var(--muted)}

/* Minor overrides to reduce very old-looking borders */
.container, .section{padding-left:18px;padding-right:18px}

/* Ensure footer contrast */
footer{background:linear-gradient(180deg,var(--surface),#f2f6fb);border-top:1px solid rgba(15,23,36,0.03)}
