/* =========================================
   APEX VISION — SHARED STYLESHEET
   ========================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* ---- CSS VARIABLES ---- */
:root {
  --dark:     #0a0118;
  --dark2:    #110228;
  --dark3:    #1c0540;
  --purple:   #501c70 !important;
  --purple2:  #8b50f0;
  --plite:    #b48af7;
  --lightbg:  #f8f5ff;
  --lightbg2: #f0ebff;
  --dmuted:   #9b8ec4;
  --lmuted:   #6b6587;
  --text:     #1a0535;
  --bdark:    rgba(255,255,255,0.08);
  --blight:   #ede8ff;
}
header {
    box-shadow: 2px 6px 16px #00000021;
}
img {
    max-width: 100%;
}
footer.footer li{
    list-style: none;
}
footer.footer li a,
.footer-mini-links a{
    display: block;
    font-size: 0.83rem;
    color: var(--dmuted)!important;
    text-decoration: none;
    margin-bottom: 0px!important;
    transition: color .2s;
    padding-top: 0px !important;
}
.srv-inner-hero .btn-outline-c {
    display: none;
}
.get-touch-left a,
.info-left a {
    color: #fff;
    text-decoration: none;
}
.meta {
    color: #fff;
}
.blog-hero,
.blog-hero a{
    color: #fff;
}
.swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 30px;
}
ul.sub-menu {
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 10px;
    transition: all .3s ease-in-out;
    transform: translate(0px, 40px);
    opacity: 0;
    pointer-events: none;
}
.menu-item-has-children:hover .sub-menu {
        transform: translate(0px, 0px);
    opacity: 1;
    pointer-events: all;
}
.portfolio-sec {
    padding: 80px 0px;
}
.portfolio-single h2 {
    color: #000;
    font-weight: 700;
    margin: 30px 0px;
}
.portfolio-single h3 {
    color: #000;
    font-weight: 700;
    margin: 30px 0px;
    font-size: 24px;
}
.portfolio-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.portfolio-card h4 a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    padding: 40px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #501C70;
    background: linear-gradient(180deg, rgba(80, 28, 112, 0) 0%, rgba(80, 28, 112, 1) 100%);
    height: 80%;
    display: flex;
    align-items: flex-end;
    color: #fff;
}
.portfolio-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #cecece;
}
ul#primary-menu li {
    height: 80px;
    display: flex;
    align-items: center;
}
.brand-item img {
    height: 50px;
}
.header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 100;
}
div#primary-menu ul {
    display: flex;
    gap: .25rem !important;
    padding: 0px;
    margin: 0px;
}
div#primary-menu ul li {
    list-style: none;
}
ul.sub-menu li {
    list-style: none!important;
    height: auto!important;
}
/* =========================================
   NAVBAR
   ========================================= */
.navbar { background: #fff; border-bottom: 1px solid var(--bdark); padding: 0px; }
.navbar-brand { font-weight: 800; font-size: 1.25rem; color: #fff !important; letter-spacing: -0.3px; }
.menu-item a { color: #000!important; font-size: 0.9rem; font-weight: 500; padding: 6px 14px !important; border-radius: 6px; transition: all .2s;text-decoration:none; }
.menu-item a:hover, .current_page_item a {
    color: #501c70 !important;
    background: #501c700d;
}
.btn-schedule { background: var(--purple); color: #fff !important; border-radius: 6px !important; padding: 8px 20px !important; font-weight: 600; font-size: 0.88rem; transition: all .25s; }
.btn-schedule:hover { background: var(--purple2); color: #fff !important; }
/* =========================================
   PAGE HEADER (inner pages)
   ========================================= */
.page-header { background: var(--dark2); padding: 80px 0 60px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; right: -10%; top: -30%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(108,43,217,0.2) 0%, transparent 70%); pointer-events: none; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff;  line-height: 1.2; margin-bottom: 14px; }
.page-header p { color: var(--dmuted);line-height: 1.7; font-size: 1rem; }
.breadcrumb-item a { color: var(--plite); text-decoration: none; }
.breadcrumb-item.active { color: var(--dmuted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--dmuted); }
/* =========================================
   BADGE / TAG CHIPS
   ========================================= */
.badge-tag { display: inline-block; background: rgba(108,43,217,0.18); color: var(--plite); font-size: 0.75rem; font-weight: 600; letter-spacing: .5px; border-radius: 50px; padding: 5px 16px; margin-bottom: 16px; }
.badge-tag-light { display: inline-block; background: var(--lightbg2); color: var(--purple); font-size: 0.75rem; font-weight: 600; letter-spacing: .5px; border-radius: 50px; padding: 5px 16px; margin-bottom: 16px; }
.case-tag { background: rgba(108,43,217,0.18); color: var(--plite); font-size: 0.75rem; font-weight: 600; border-radius: 50px; padding: 4px 14px; display: inline-block; }

/* =========================================
   SECTION WRAPPERS
   ========================================= */
.sec-light   { background: #fff;          padding: 80px 0; }
.sec-lightbg { background: var(--lightbg); padding: 80px 0; }
.sec-dark    { background: var(--dark2);  padding: 80px 0; }
.sec-dark2   { background: var(--dark3);  padding: 80px 0; }
.sec-title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; }
.sec-sub   { color: var(--lmuted); font-size: 0.95rem; line-height: 1.7; max-width: 500px; margin: 10px auto 0; }

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary-c {
  background: var(--purple); color: #fff; border: none; border-radius: 8px;
  padding: 13px 28px; font-weight: 600; font-size: 0.92rem;
  text-decoration: none; transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-c:hover { background: var(--purple2); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108,43,217,0.35); }

.btn-outline-c {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px; padding: 12px 26px; font-weight: 500; font-size: 0.92rem;
  text-decoration: none; transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-c:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.5); color: #fff; }

.btn-outline-purple {
  background: transparent; color: var(--purple); border: 1px solid var(--purple);
  border-radius: 8px; padding: 11px 24px; font-weight: 600; font-size: 0.88rem;
  text-decoration: none; transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-purple:hover { background: var(--purple); color: #fff; }

/* =========================================
   HERO (homepage)
   ========================================= */
.hero {
  background: var(--dark); min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 100px 0 80px; text-align: center;
}
.hero::before {
  content: ''; position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(108,43,217,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 6px 16px; font-size: 0.78rem;
  color: rgba(255,255,255,0.75); margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #a855f7; animation: blink 1.5s infinite; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 18px; }
.hero p  { color: var(--dmuted); font-size: 1rem; line-height: 1.7; max-width: 580px; margin: 0 auto 32px; }
/* =========================================
   SERVICE CARDS
   ========================================= */
.srv-card { background: #fff; border: 1px solid var(--blight); border-radius: 14px; padding: 28px 24px; height: 100%; transition: all .3s; }
.srv-card:hover { border-color: var(--purple); box-shadow: 0 8px 32px rgba(108,43,217,0.12); transform: translateY(-4px); }
.srv-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--lightbg2); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--purple); margin-bottom: 18px; transition: all .3s; }
.srv-card:hover .srv-icon { background: var(--purple); color: #fff; }
.srv-card h5 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.srv-card p  { font-size: 0.85rem; color: var(--lmuted); line-height: 1.65; }
.srv-link { color: var(--purple); font-size: 0.83rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; transition: gap .2s; }
.srv-link:hover { color: var(--purple2); gap: 8px; }
.srv-custom { background: linear-gradient(135deg, var(--purple), var(--purple2)); border-color: transparent; color: #fff; }
.srv-custom h5, .srv-custom p { color: rgba(255,255,255,0.9); }
.srv-custom:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(108,43,217,0.35); }

.srv-feat-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--lmuted); margin-bottom: 7px; }
.srv-feat-item i { color: var(--purple); font-size: 0.82rem; }
/* SERVICE INNER */
.srv-inner-hero { background: linear-gradient(135deg, var(--dark3), var(--dark2)); padding: 80px 0 60px; position: relative; overflow: hidden; }
.srv-inner-hero::before { content: ''; position: absolute; right: -10%; top: -30%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(108,43,217,0.25) 0%, transparent 70%); }
/* =========================================
   PROCESS STEPS
   ========================================= */
.process-card { background: #fff; border: 1px solid var(--blight); border-radius: 14px; padding: 28px 22px; text-align: center; transition: all .3s; position: relative; overflow: hidden; }
.process-card:hover { border-color: var(--purple); box-shadow: 0 8px 24px rgba(108,43,217,0.1); transform: translateY(-3px); }
.process-num { font-size: 3.5rem; font-weight: 800; color: rgba(108,43,217,0.07); position: absolute; top: 6px; right: 14px; line-height: 1; }
.process-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--lightbg2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--purple); margin: 0 auto 16px; }
.process-card h5 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-card p  { font-size: 0.83rem; color: var(--lmuted); line-height: 1.6; }

/* =========================================
   PRICING CARDS
   ========================================= */
.price-card { background: #fff; border: 1px solid var(--blight); border-radius: 16px; padding: 36px 28px; height: 100%; transition: all .3s; }
.price-card:hover { transform: translateY(-5px); }
.price-card.featured { background: linear-gradient(135deg, var(--dark3), var(--dark2)); border-color: var(--purple); box-shadow: 0 10px 40px rgba(108,43,217,0.3); }
.price-card.featured .price-label { color: var(--plite); }
.price-card.featured .price-num, .price-card.featured h4 { color: #fff !important; }
.price-card.featured p, .price-card.featured .feat-item { color: var(--dmuted); }
.price-card.featured .feat-item i { color: var(--plite); }
.price-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; }
.price-num { font-size: 2.4rem; font-weight: 800; color: var(--text); }
.price-num small { font-size: 1rem; font-weight: 400; color: var(--lmuted); }
.feat-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--lmuted); padding: 7px 0; }
.feat-item i { color: var(--purple); }
.feat-item.no i { color: #ddd; }
.feat-item.no span { color: #bbb; }
.featured-ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, var(--purple), var(--purple2)); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 18px; border-radius: 50px; white-space: nowrap; }
.btn-price { display: block; text-align: center; border-radius: 8px; padding: 12px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all .25s; margin-top: 24px; }
.btn-price-outline { border: 1px solid var(--purple); color: var(--purple); }
.btn-price-outline:hover { background: var(--purple); color: #fff; }
.btn-price-filled { background: var(--purple); color: #fff; border: none; }
.btn-price-filled:hover { background: var(--purple2); color: #fff; }
/* =========================================
   PORTFOLIO CARDS
   ========================================= */
.port-card { background: #fff; border: 1px solid var(--blight); border-radius: 16px; overflow: hidden; transition: all .35s; height: 100%; }
.port-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(108,43,217,0.15); border-color: var(--purple); }
.port-img { height: 200px; overflow: hidden; position: relative; }
.port-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.port-card:hover .port-img img { transform: scale(1.05); }
.port-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(108,43,217,0.85), transparent); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px; }
.port-card:hover .port-overlay { opacity: 1; }
.port-body { padding: 20px; }
.port-tag { font-size: 0.73rem; font-weight: 600; color: var(--purple); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 7px; }
.port-body h5 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 7px; line-height: 1.4; }
.port-body p  { font-size: 0.82rem; color: var(--lmuted); line-height: 1.6; }
.port-stats { display: flex; gap: 16px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--lightbg2); }
.port-stat-val { font-size: 1rem; font-weight: 800; color: var(--purple); }
.port-stat-label { font-size: 0.71rem; color: var(--lmuted); }
.btn-view { color: #fff; font-size: 0.83rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-grid .tall { grid-row: span 2; }
.gal-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay { position: absolute; inset: 0; background: rgba(108,43,217,0.55); opacity: 0; transition: opacity .3s; display: flex; align-items: center; justify-content: center; }
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay i { color: #fff; font-size: 1.8rem; }
@media (max-width: 576px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================
   BLOG CARDS
   ========================================= */
.blog-card { background: #fff; border: 1px solid var(--blight); border-radius: 14px; overflow: hidden; height: 100%; transition: all .3s; text-decoration: none; display: block; }
.blog-card:hover { border-color: var(--purple); box-shadow: 0 10px 32px rgba(108,43,217,0.12); transform: translateY(-5px); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 20px; }
.blog-cat { background: var(--lightbg2); color: var(--purple); font-size: 0.73rem; font-weight: 600; border-radius: 50px; padding: 3px 12px; display: inline-block; margin-bottom: 10px; }
.blog-meta { font-size: 0.75rem; color: var(--lmuted); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }
.blog-body h5 { font-size: 0.97rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 8px; }
.blog-body p  { font-size: 0.83rem; color: var(--lmuted); line-height: 1.65; }
.blog-read { color: var(--purple); font-size: 0.83rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; transition: gap .2s; }
.blog-card:hover .blog-read { gap: 9px; }

/* BLOG INNER */
.blog-hero { background: var(--dark2); padding: 80px 0 50px; position: relative; overflow: hidden; }
.blog-hero::before { content: ''; position: absolute; right: -10%; top: -30%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(108,43,217,0.2) 0%, transparent 70%); }
.article-content h2 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin: 36px 0 14px; }
.article-content h2:first-child { margin-top: 0; }
.article-content p  { font-size: 0.93rem; color: var(--lmuted); line-height: 1.85; margin-bottom: 16px; }
.article-content ul, .article-content ol { font-size: 0.93rem; color: var(--lmuted); line-height: 1.85; padding-left: 22px; margin-bottom: 16px; }
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--text); }
.article-blockquote { border-left: 3px solid var(--purple); padding: 16px 24px; background: var(--lightbg2); border-radius: 0 10px 10px 0; font-size: 0.92rem; color: #4c2996; font-style: italic; margin: 28px 0; line-height: 1.7; }
.tag-pill { background: var(--lightbg2); color: var(--purple); font-size: 0.78rem; font-weight: 500; border-radius: 50px; padding: 4px 14px; display: inline-block; margin: 3px; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testi-card { background: #fff; border: 1px solid var(--blight); border-radius: 14px; padding: 26px; transition: all .3s; }
.testi-card:hover { box-shadow: 0 8px 28px rgba(108,43,217,0.1); border-color: var(--purple); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; }
.testi-text { font-size: 0.88rem; color: var(--lmuted); line-height: 1.7; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--purple2)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.testi-role { font-size: 0.75rem; color: var(--lmuted); }

/* =========================================
   FAQ
   ========================================= */
.faq-highlight { background: var(--purple); border-radius: 10px; padding: 22px 24px; }
.faq-highlight p { color: rgba(255,255,255,0.85); font-size: 0.88rem; line-height: 1.65; }
.accordion-item { border: 1px solid var(--blight) !important; border-radius: 10px !important; margin-bottom: 10px; overflow: hidden; }
.accordion-button { font-weight: 600; font-size: 0.9rem; color: var(--text) !important; background: #fff !important; box-shadow: none !important; padding: 16px 20px; }
.accordion-button:not(.collapsed) { color: var(--purple) !important; background: var(--lightbg) !important; }
.accordion-body { font-size: 0.86rem; color: var(--lmuted); line-height: 1.7; background: var(--lightbg); padding: 0 20px 16px; }

/* =========================================
   CONTACT / FORMS
   ========================================= */
.form-card { background: #fff; border-radius: 16px; padding: 40px; }
.info-left { background: var(--dark3); border-radius: 16px; padding: 40px 36px; height: 100%; }
.form-label { font-size: 0.82rem; font-weight: 600; color: #444; margin-bottom: 6px; }
.form-control, .form-select { border: 1px solid #e0d8f5; border-radius: 9px; padding: 11px 15px; font-size: 0.88rem; color: var(--text); transition: all .2s; }
.form-control:focus, .form-select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(108,43,217,0.1); outline: none; }
.form-control::placeholder { color: #aaa; }
.form-select { color: #888; }
.form-select option { color: var(--text); }
textarea.form-control { resize: vertical; min-height: 120px; }
.btn-submit { background: var(--purple); color: #fff; border: none; border-radius: 9px; padding: 13px 32px; font-weight: 600; font-size: 0.95rem; width: 100%; transition: all .25s; cursor: pointer; }
.btn-submit:hover { background: var(--purple2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108,43,217,0.35); }
.info-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(108,43,217,0.25); display: flex; align-items: center; justify-content: center; color: var(--plite); font-size: 1.05rem; flex-shrink: 0; }
.info-label-c { font-size: 0.72rem; font-weight: 600; color: var(--dmuted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.info-val { font-size: 0.9rem; color: #fff; font-weight: 500; line-height: 1.5; }

/* =========================================
   RESULTS / CASE STUDY
   ========================================= */
.result-card { background: #fff; border: 1px solid var(--blight); border-radius: 14px; padding: 24px; text-align: center; transition: all .3s; }
.result-card:hover { border-color: var(--purple); box-shadow: 0 6px 20px rgba(108,43,217,0.1); transform: translateY(-3px); }
.result-num { font-size: 2rem; font-weight: 800; color: var(--purple); }
.result-label { font-size: 0.82rem; color: var(--lmuted); margin-top: 5px; }

/* =========================================
   SIDEBAR (blog/portfolio)
   ========================================= */
.sidebar-card { background: #fff; border: 1px solid var(--blight); border-radius: 14px; padding: 24px; margin-bottom: 20px; }
.sidebar-card h5 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.sidebar-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--lmuted); padding: 7px 0; border-bottom: 1px solid #f5f0ff; }
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item i { color: var(--purple); flex-shrink: 0; }
.recent-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid #f5f0ff; text-decoration: none; }
.recent-item:last-child { border-bottom: none; }
.recent-img { width: 52px; height: 52px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.recent-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-title { font-size: 0.82rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.recent-date  { font-size: 0.72rem; color: var(--lmuted); margin-top: 3px; }
.cat-item { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid #f5f0ff; font-size: 0.85rem; color: var(--lmuted); cursor: pointer; transition: color .2s; }
.cat-item:last-child { border-bottom: none; }
.cat-item:hover { color: var(--purple); }
.cat-count { background: var(--lightbg2); color: var(--purple); font-size: 0.72rem; font-weight: 600; border-radius: 50px; padding: 2px 10px; }

/* =========================================
   BRANDS
   ========================================= */
.brand-item { display: flex; align-items: center; justify-content: center; padding: 16px; border: 1px solid var(--blight); border-radius: 12px; transition: all .2s; font-weight: 700; color: #555; font-size: 0.88rem; }
.brand-item:hover { border-color: var(--purple); box-shadow: 0 4px 16px rgba(108,43,217,0.1); color: var(--purple); }

/* =========================================
   CHIPS (why choose us)
   ========================================= */
.chip { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 9px 14px; font-size: 0.83rem; color: #fff; margin: 4px; transition: all .25s; }
.chip:hover { background: rgba(255,255,255,0.14); }
.chip i { color: var(--plite); }

/* =========================================
   CTA SECTIONS
   ========================================= */
.cta-dark { background: var(--dark3); padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
.cta-dark::before { content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(108,43,217,0.2) 0%, transparent 70%); pointer-events: none; }

/* =========================================
   GET IN TOUCH (homepage)
   ========================================= */
.get-touch { background: var(--dark2); }
.get-touch-left { background: var(--dark3); border-radius: 14px; padding: 40px 36px; }
.get-touch-form { background: #fff; border-radius: 14px; padding: 36px; }
/* =========================================
   INFO CARDS (contact page)
   ========================================= */
.info-card { background: #fff; border: 1px solid var(--blight); border-radius: 14px; padding: 28px 24px; text-align: center; transition: all .3s; height: 100%; }
.info-card:hover { border-color: var(--purple); box-shadow: 0 8px 24px rgba(108,43,217,0.1); transform: translateY(-3px); }
.info-card-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--lightbg2); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--purple); margin: 0 auto 18px; }
.info-card h5 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.info-card p  { font-size: 0.84rem; color: var(--lmuted); line-height: 1.6; }

/* =========================================
   SOCIAL ICON BUTTONS
   ========================================= */
.social-ic { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 0.95rem; transition: all .2s; }
.social-ic:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.social-ic-light { width: 36px; height: 36px; border-radius: 8px; background: var(--lightbg2); border: 1px solid var(--blight); display: flex; align-items: center; justify-content: center; color: var(--purple); text-decoration: none; font-size: 0.95rem; transition: all .2s; }
.social-ic-light:hover { background: var(--purple); color: #fff; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--dark); border-top: 1px solid var(--bdark); padding: 60px 0 24px; }
.footer-brand { font-size: 1.2rem; font-weight: 800; color: #fff; }
.footer-desc { font-size: 0.83rem; color: var(--dmuted); line-height: 1.7; max-width: 240px; margin-top: 12px; }
.footer-heading { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; }
.footer-link { display: block; font-size: 0.83rem; color: var(--dmuted); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.footer-link:hover { color: #fff; }
.footer-copy { font-size: 0.8rem; color: var(--dmuted); }
.footer-divider { border-color: var(--bdark); margin-top: 40px; }
.footer-cta-box { background: var(--purple); border-radius: 12px; padding: 28px 24px; }
.footer-cta-box h6 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer-cta-box p  { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.btn-footer-cta { background: #fff; color: var(--purple); border: none; border-radius: 7px; padding: 9px 22px; font-weight: 700; font-size: 0.85rem; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-footer-cta:hover { background: var(--lightbg2); color: var(--purple); }
/* =========================================
   FILTER BUTTONS
   ========================================= */
.filter-btn { background: #fff; border: 1px solid var(--blight); border-radius: 50px; padding: 8px 20px; font-size: 0.85rem; font-weight: 500; color: var(--lmuted); cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); }
/* =========================================
   DARK STATS CARD (hero visual)
   ========================================= */
.stat-dark-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 16px; text-align: center; }

/* =========================================
   ANIMATIONS
   ========================================= */
.menu-menu-1-container {
    margin: auto;
}
 @media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
    }
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
@keyframes fadeup { from{opacity:0;transform:translateY(22px);} to{opacity:1;transform:translateY(0);} }

.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.fade-in:nth-child(2) { transition-delay: .08s; }
.fade-in:nth-child(3) { transition-delay: .16s; }
.fade-in:nth-child(4) { transition-delay: .24s; }
.fade-in:nth-child(5) { transition-delay: .32s; }
.fade-in:nth-child(6) { transition-delay: .40s; }
/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .sec-light, .sec-lightbg, .sec-dark, .sec-dark2 { padding: 60px 0; }
  .hero { padding: 80px 0 60px; min-height: unset; }
  .form-card, .info-left { padding: 28px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  html,body {
    overflow-x: hidden;
}
ul#primary-menu li {
    height: auto;
}
.btn-schedule {
    margin-bottom: 16px;
}
}
