/* ============================================================
   HOMEPAGE CUSTOM STYLES
   ============================================================ */
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; }

/* ---------- Hero Banner ---------- */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6a11cb 100%);
    color: #fff;
    text-align: center;
}
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    animation: heroBlob 12s ease-in-out infinite;
}
.hero-section::before { width: 420px; height: 420px; top: -120px; left: -120px; }
.hero-section::after { width: 320px; height: 320px; bottom: -100px; right: -100px; animation-delay: 4s; }
@keyframes heroBlob {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(40px,-30px) scale(1.08); }
    66% { transform: translate(-30px,30px) scale(.95); }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .85rem;
    letter-spacing: .5px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}
.hero-title { font-size: 3.2rem; font-weight: 700; margin-bottom: 18px; line-height: 1.2; }
.hero-subtitle { font-size: 1.2rem; opacity: .92; max-width: 720px; margin: 0 auto 34px; line-height: 1.7; }
.hero-buttons .btn { margin: 0 6px 10px; padding: 13px 30px; border-radius: 50px; font-weight: 600; }
.btn-hero-primary { background: #fff; color: #6a11cb; }
.btn-hero-primary:hover { background: #f0eaff; color: #5a0fae; }
.btn-hero-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-hero-outline:hover { background: rgba(255,255,255,.15); color: #fff; }
.hero-scroll { margin-top: 44px; }
.hero-scroll a { color: rgba(255,255,255,.85); text-decoration: none; }
.hero-scroll .scroll-icon {
    display: block; width: 42px; height: 42px; line-height: 40px;
    margin: 10px auto 0; border: 2px solid rgba(255,255,255,.7);
    border-radius: 50px; font-size: 16px; animation: scrollBounce 1.8s infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ---------- Client Logos ---------- */
.logos-section { background: #f8f9fc; padding: 55px 0 65px; overflow: hidden; }
.logos-slider { overflow: hidden; width: 100%; }
.logos-track {
    display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center;
    width: max-content; min-width: 100%;
    animation: logosScroll 30s linear infinite; will-change: transform;
}
.logos-track > * { flex: 0 0 auto; }
.logos-track:hover { animation-play-state: paused; }
.logo-item {
    flex: 0 0 auto; margin: 0 14px; display: inline-flex;
    align-items: center; justify-content: center; white-space: nowrap;
}
.logo-text {
    display: inline-block; white-space: nowrap;
    font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em;
    color: #475569; padding: 10px 24px;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all .3s ease;
}
.logo-item a { display: inline-block; color: inherit; text-decoration: none; }
.logo-item:hover .logo-text {
    color: #fff; border-color: transparent;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-indigo);
    transform: translateY(-2px);
}
@keyframes logosScroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ---------- Section headers ---------- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-subtitle { color: #764ba2; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; margin-bottom: 10px; }
.section-title { font-size: 2.4rem; font-weight: 700; color: #223; }
.section-desc { color: #6c757d; max-width: 640px; margin: 14px auto 0; }

/* ---------- Features ---------- */
.features-section { padding: 90px 0; background: #fff; }
.feature-card {
    text-align: center; padding: 40px 24px; border-radius: 18px;
    background: #fff; border: 1px solid #eee; transition: all .35s ease; height: 100%;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 45px rgba(102,126,234,.18); border-color: transparent; }
.feature-icon {
    width: 80px; height: 80px; line-height: 80px; margin: 0 auto 20px;
    border-radius: 20px; font-size: 30px; color: #fff;
    background: linear-gradient(135deg, #667eea, #764ba2); transition: transform .3s ease;
}
.feature-card:hover .feature-icon { transform: rotate(8deg) scale(1.06); }
.feature-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.feature-text { color: #6c757d; font-size: .93rem; }

/* ---------- Products ---------- */
.products-section { padding: 90px 0; background: #f8f9fc; }
.filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-tabs .btn {
    border-radius: 50px; padding: 9px 24px; font-weight: 500;
    border: 2px solid #e4e6f0; color: #555; background: #fff;
}
.filter-tabs .btn.active, .filter-tabs .btn:hover { background: linear-gradient(135deg,#667eea,#764ba2); border-color: transparent; color: #fff; }
.product-card {
    background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid #eee;
    transition: all .35s ease; box-shadow: 0 4px 12px rgba(0,0,0,.04);
    height: 100%; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 22px 45px rgba(102,126,234,.2); }
.product-img-wrap { position: relative; overflow: hidden; height: 190px; background: linear-gradient(135deg,#eef1ff,#f7eefe); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: linear-gradient(135deg,#ff9a3c,#ff5f6d); color: #fff;
    font-size: .72rem; padding: 5px 12px; border-radius: 50px; font-weight: 600;
}
.product-cat-badge {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    background: rgba(255,255,255,.92); color: #764ba2;
    font-size: .72rem; padding: 5px 12px; border-radius: 50px; font-weight: 600;
}
.product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-name { font-size: 1.18rem; font-weight: 600; margin-bottom: 10px; }
.product-name a { color: #223; text-decoration: none; }
.product-name a:hover { color: #764ba2; }
.product-desc { color: #6c757d; font-size: .9rem; margin-bottom: 18px; flex: 1; }
.product-actions { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 4px; }
.product-actions .btn { margin: 0; font-size: .88rem; flex: 1; }

/* ---------- Category-wise product slider ---------- */
.category-slider-section { padding: 90px 0; background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%); }
.category-block { margin-bottom: 44px; }
.category-block:last-child { margin-bottom: 0; }
.category-block-head {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px; margin-bottom: 20px;
}
.category-block-title {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 1.25rem; font-weight: 700; color: #223; margin: 0;
}
.category-block-title i { color: #764ba2; }
.category-count {
    background: linear-gradient(135deg,#667eea,#764ba2);
    color: #fff; font-size: .72rem; padding: 4px 10px; border-radius: 50px; font-weight: 600;
}
.category-nav { display: flex; gap: 8px; }
.cat-slide-btn {
    width: 38px; height: 38px; border: none; border-radius: 50%;
    background: #fff; color: #764ba2; font-size: 14px; cursor: pointer;
    box-shadow: 0 4px 12px rgba(102,126,234,.18);
    transition: all .25s ease; display: inline-flex; align-items: center; justify-content: center;
}
.cat-slide-btn:hover { background: linear-gradient(135deg,#667eea,#764ba2); color: #fff; }
.cat-slide-btn:disabled { opacity: .4; cursor: not-allowed; }
.cat-slider {
    display: flex; gap: 18px; overflow-x: auto; padding: 6px 2px 16px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; scrollbar-color: #c7cbe8 transparent;
}
.cat-slider::-webkit-scrollbar { height: 6px; }
.cat-slider::-webkit-scrollbar-thumb { background: #c7cbe8; border-radius: 20px; }
.cat-slider::-webkit-scrollbar-track { background: transparent; }
.cat-slide-item { flex: 0 0 280px; scroll-snap-align: start; }
.cat-slide-item .product-card { height: 100%; }
.cat-slider .product-card .product-desc { font-size: .85rem; }
.cat-slide-more { display: flex; align-items: stretch; }
.cat-more-link {
    width: 100%; min-height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px; text-align: center;
    background: linear-gradient(135deg, rgba(102,126,234,.95), rgba(118,75,162,.95));
    color: #fff; border-radius: 18px; padding: 22px; text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}
.cat-more-link:hover { color: #fff; transform: translateY(-4px); box-shadow: 0 18px 40px rgba(102,126,234,.35); }
.cat-more-icon {
    width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.2);
    display: inline-flex; align-items: center; justify-content: center; font-size: 18px;
}
.cat-more-link span { font-weight: 600; font-size: .92rem; }
@media (max-width: 575px) {
    .cat-slide-item { flex-basis: 230px; }
}

/* ---------- Pricing ---------- */
.pricing-section { padding: 90px 0; background: #fff; }
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 46px; font-weight: 600; }
.toggle-switch { position: relative; width: 60px; height: 30px; background: #ddd; border-radius: 30px; cursor: pointer; transition: background .3s; }
.toggle-switch .knob {
    position: absolute; top: 3px; left: 3px; width: 24px; height: 24px;
    background: #fff; border-radius: 50%; transition: left .3s; box-shadow: 0 2px 5px rgba(0,0,0,.2);
}
.toggle-switch.active { background: linear-gradient(135deg,#667eea,#764ba2); }
.toggle-switch.active .knob { left: 33px; }
.pricing-card {
    background: #fff; border-radius: 20px; padding: 38px 30px; border: 1px solid #e8eaf3;
    height: 100%; position: relative; transition: all .35s ease; text-align: center;
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 22px 45px rgba(102,126,234,.18); }
.pricing-card.popular { border: 2px solid #667eea; box-shadow: 0 15px 40px rgba(102,126,234,.3); background: linear-gradient(180deg,#fff, #f6f7ff); }
.popular-ribbon {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg,#667eea,#764ba2); color: #fff;
    font-size: .75rem; font-weight: 600; letter-spacing: 1px; padding: 6px 18px; border-radius: 50px; white-space: nowrap;
}
.plan-product { color: #764ba2; font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.plan-name { font-size: 1.4rem; font-weight: 700; margin: 8px 0 14px; }
.plan-price { margin-bottom: 20px; }
.price-tag { font-size: 2.4rem; font-weight: 700; color: #223; }
.price-original { color: #adb5bd; text-decoration: line-through; font-size: 1rem; }
.price-cycle { color: #6c757d; font-size: .9rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; }
.plan-features li { padding: 8px 0; border-bottom: 1px dashed #eee; color: #555; font-size: .92rem; }
.plan-features li i { color: #667eea; margin-right: 8px; }
.pricing-empty { text-align: center; color: #6c757d; padding: 40px 0; }

/* ---------- Video demo ---------- */
.video-section { padding: 90px 0; background: #f8f9fc; }
.video-thumb { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; box-shadow: 0 8px 25px rgba(0,0,0,.15); }
.video-thumb img { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform .4s ease; }
.video-thumb:hover img { transform: scale(1.06); }
.video-thumb .thumb-overlay {
    position: absolute; inset: 0; background: rgba(118,75,162,.35);
    display: flex; align-items: center; justify-content: center; transition: background .3s;
}
.video-thumb:hover .thumb-overlay { background: rgba(118,75,162,.55); }
.play-icon {
    width: 62px; height: 62px; border-radius: 50%;
    background: #fff; color: #764ba2; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.25); transition: transform .3s;
}
.video-thumb:hover .play-icon { transform: scale(1.12); }
.video-thumb-label { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,.6); color: #fff; font-size: .8rem; padding: 5px 14px; border-radius: 50px; white-space: nowrap; }

/* ---------- Testimonials ---------- */
.testimonials-section { padding: 90px 0; background: #fff; }
.testimonial-card {
    background: #fff; border-radius: 20px; padding: 40px 46px; margin: 10px auto; max-width: 720px;
    border: 1px solid #eee; box-shadow: 0 10px 30px rgba(0,0,0,.06); text-align: center; height: 100%;
}
.testimonial-stars { color: #ffb400; font-size: 1.05rem; margin-bottom: 18px; }
.testimonial-text { color: #555; font-size: 1.02rem; line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testimonial-avatar { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid #eef1ff; }
.testimonial-name { font-weight: 600; color: #223; }
.testimonial-designation { color: #764ba2; font-size: .85rem; }
.testimonials-section .carousel-control-prev, .testimonials-section .carousel-control-next { width: 6%; }
.testimonials-section .carousel-control-prev span, .testimonials-section .carousel-control-next span {
    background: linear-gradient(135deg,#667eea,#764ba2); border-radius: 50%;
    width: 44px; height: 44px; line-height: 44px; display: inline-block;
}
.testimonials-section .carousel-indicators [data-bs-target] { background-color: #764ba2; width: 12px; height: 12px; border-radius: 50%; }

/* ---------- FAQ ---------- */
.faq-section { padding: 90px 0; background: #f8f9fc; }
.faq-group-title { font-size: 1.2rem; font-weight: 600; color: #223; display: flex; align-items: center; gap: 10px; margin: 8px 0 18px; }
.faq-group-title i { color: #764ba2; }
.accordion-item { border: 1px solid #e8eaf3; border-radius: 12px !important; margin-bottom: 14px; overflow: hidden; }
.accordion-button { font-weight: 600; color: #223; padding: 18px 22px; }
.accordion-button:not(.collapsed) { background: linear-gradient(135deg,#667eea,#764ba2); color: #fff; box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-body { color: #6c757d; line-height: 1.8; }
.faq-empty { text-align: center; color: #6c757d; padding: 30px 0; }

/* ---------- Contact ---------- */
.contact-section { padding: 90px 0; background: #fff; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-icon {
    width: 54px; height: 54px; border-radius: 14px; flex: 0 0 54px;
    background: linear-gradient(135deg,#667eea,#764ba2); color: #fff;
    font-size: 20px; display: flex; align-items: center; justify-content: center;
}
.contact-info-item h6 { margin-bottom: 4px; font-weight: 600; }
.contact-info-item p { margin: 0; color: #6c757d; font-size: .95rem; }
.contact-form-wrap { background: #f8f9fc; border-radius: 18px; padding: 36px; }
.contact-alert { display: none; }
.map-embed { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.1); height: 300px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Newsletter (home) ---------- */
.home-newsletter { padding: 0 0 90px; background: #fff; }
.home-newsletter .box {
    background: linear-gradient(135deg,#667eea,#764ba2);
    border-radius: 20px; padding: 46px; text-align: center; box-shadow: 0 18px 45px rgba(118,75,162,.3);
}
.home-newsletter .box h3 { color: #fff; }
.home-newsletter .box p { color: rgba(255,255,255,.85); }
.news-form .form-control { border-radius: 50px; padding: 12px 20px; border: none; }
.news-form .btn { border-radius: 50px; padding: 12px 28px; }
.news-alert { display: none; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 1.9rem; }
    .hero-section { padding: 70px 0; }
.logo-text { font-size: .95rem; padding: 8px 16px; white-space: nowrap; }
}

   /* ============================================================
   HOMEPAGE CUSTOM STYLES END
   ============================================================ */


   /* ============================================================
   PRICING CUSTOM STYLES
   ============================================================ */

.pricing-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6a11cb 100%);
    color: #fff;
    text-align: center;
}
.pricing-hero h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: 12px; }
.pricing-hero p { font-size: 1.1rem; opacity: .92; max-width: 680px; margin: 0 auto; }

.pricing-section { padding: 90px 0; background: #fff; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-subtitle { color: #764ba2; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; margin-bottom: 10px; }
.section-title { font-size: 2.4rem; font-weight: 700; color: #223; }
.section-desc { color: #6c757d; max-width: 640px; margin: 14px auto 0; }

.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 46px; font-weight: 600; }
.billing-toggle .toggle-label { color: #adb5bd; transition: color .3s; }
.billing-toggle .toggle-label.active { color: #764ba2; }
.toggle-switch { position: relative; width: 60px; height: 30px; background: #ddd; border-radius: 30px; cursor: pointer; transition: background .3s; }
.toggle-switch .knob {
    position: absolute; top: 3px; left: 3px; width: 24px; height: 24px;
    background: #fff; border-radius: 50%; transition: left .3s; box-shadow: 0 2px 5px rgba(0,0,0,.2);
}
.toggle-switch.active { background: linear-gradient(135deg,#667eea,#764ba2); }
.toggle-switch.active .knob { left: 33px; }

.pricing-card {
    background: #fff; border-radius: 20px; padding: 38px 30px; border: 1px solid #e8eaf3;
    height: 100%; position: relative; transition: all .35s ease; text-align: center;
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 22px 45px rgba(102,126,234,.18); }
.pricing-card.popular { border: 2px solid #667eea; box-shadow: 0 15px 40px rgba(102,126,234,.3); background: linear-gradient(180deg,#fff, #f6f7ff); }
.popular-ribbon {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg,#667eea,#764ba2); color: #fff;
    font-size: .75rem; font-weight: 600; letter-spacing: 1px; padding: 6px 18px; border-radius: 50px; white-space: nowrap;
}
.plan-product { color: #764ba2; font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.plan-name { font-size: 1.4rem; font-weight: 700; margin: 8px 0 14px; }
.plan-price { margin-bottom: 20px; }
.price-tag { font-size: 2.4rem; font-weight: 700; color: #223; }
.price-amount { color: #223; }
.price-original { color: #adb5bd; text-decoration: line-through; font-size: 1rem; }
.price-cycle { color: #6c757d; font-size: .9rem; }
.plan-features { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; }
.plan-features li { padding: 8px 0; border-bottom: 1px dashed #eee; color: #555; font-size: .92rem; }
.plan-features li i { color: #667eea; margin-right: 8px; }
.pricing-empty { text-align: center; color: #6c757d; padding: 40px 0; }

.one-time-note { text-align: center; color: #6c757d; font-size: .9rem; margin-top: 30px; }
.one-time-divider { text-align: center; margin: 30px 0 40px; }
.one-time-divider span {
    display: inline-block; padding: 8px 24px; border-radius: 50px;
    background: #f0f1ff; color: #764ba2; font-weight: 600; font-size: .9rem;
}

.guarantee-section { padding: 60px 0; background: #f8f9fc; }
.guarantee-card {
    background: #fff; border-radius: 18px; padding: 36px; text-align: center; height: 100%;
    border: 1px solid #eee; transition: all .35s ease;
}
.guarantee-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(102,126,234,.15); }
.guarantee-icon {
    width: 70px; height: 70px; line-height: 70px; margin: 0 auto 18px;
    border-radius: 18px; font-size: 26px; color: #fff;
    background: linear-gradient(135deg,#667eea,#764ba2);
}
.guarantee-card h5 { font-weight: 600; margin-bottom: 10px; color: #223; }
.guarantee-card p { color: #6c757d; font-size: .92rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) { .pricing-hero h1, .section-title { font-size: 2rem; } }
@media (max-width: 575px) { .pricing-hero { padding: 60px 0; } .section-title { font-size: 1.6rem; } .price-tag { font-size: 1.9rem; } }

   /* ============================================================
   PRICING CUSTOM STYLES END
   ============================================================ */



   /* ============================================================
   DEMO CUSTOM STYLES
   ============================================================ */

.demo-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6a11cb 100%);
    color: #fff;
    text-align: center;
}
.demo-hero h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: 12px; }
.demo-hero p { font-size: 1.1rem; opacity: .92; max-width: 680px; margin: 0 auto; }

.demo-body { padding: 90px 0; background: #f8f9fc; }
.demo-form-card {
    background: #fff; border-radius: 18px; padding: 40px;
    border: 1px solid #eee; box-shadow: 0 8px 25px rgba(0,0,0,.05);
}
.demo-form-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; color: #223; }
.demo-form-sub { color: #6c757d; margin-bottom: 28px; }

.demo-side { background: linear-gradient(135deg,#667eea,#764ba2); color: #fff; border-radius: 18px; padding: 36px; height: 100%; }
.demo-side h5 { font-weight: 700; margin-bottom: 16px; }
.demo-side p { color: rgba(255,255,255,.9); line-height: 1.8; }
.demo-side .side-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.demo-side .side-item i {
    width: 42px; height: 42px; flex: 0 0 42px; border-radius: 10px;
    background: rgba(255,255,255,.18); display: inline-flex; align-items: center; justify-content: center; font-size: 18px;
}

.demo-alert { display: none; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) { .demo-hero h1 { font-size: 2rem; } .demo-form-card { padding: 26px; } }
@media (max-width: 575px) { .demo-hero { padding: 60px 0; } .demo-form-title { font-size: 1.3rem; } }

   /* ============================================================
   DEMO CUSTOM STYLES END
   ============================================================ */



   /* ============================================================
   BLOG CUSTOM STYLES
   ============================================================ */

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6a11cb 100%);
    color: #fff;
    text-align: center;
}
.blog-hero h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: 12px; }
.blog-hero p { font-size: 1.1rem; opacity: .92; max-width: 680px; margin: 0 auto; }

.blog-section { padding: 90px 0; background: #f8f9fc; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-subtitle { color: #764ba2; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; margin-bottom: 10px; }
.section-title { font-size: 2.4rem; font-weight: 700; color: #223; }
.section-desc { color: #6c757d; max-width: 640px; margin: 14px auto 0; }

.blog-card {
    background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #eee;
    transition: all .35s ease; box-shadow: 0 4px 12px rgba(0,0,0,.04);
    height: 100%; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 22px 45px rgba(102,126,234,.18); }
.blog-img-wrap { position: relative; overflow: hidden; height: 200px; background: linear-gradient(135deg,#eef1ff,#f7eefe); }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.08); }
.blog-cat-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: linear-gradient(135deg,#667eea,#764ba2); color: #fff;
    font-size: .72rem; padding: 5px 12px; border-radius: 50px; font-weight: 600;
}
.blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 10px; font-size: .82rem; color: #6c757d; }
.blog-meta span i { color: #764ba2; margin-right: 5px; }
.blog-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.blog-title a { color: #223; text-decoration: none; }
.blog-title a:hover { color: #764ba2; }
.blog-excerpt { color: #6c757d; font-size: .9rem; flex: 1; margin-bottom: 16px; }

.no-posts { text-align: center; color: #6c757d; padding: 50px 0; }
.no-posts i { font-size: 3rem; color: #ccc; margin-bottom: 16px; }

.pagination-wrap { margin-top: 40px; }
.pagination .page-link { color: #764ba2; border-radius: 8px; margin: 0 3px; }
.pagination .page-item.active .page-link { background: linear-gradient(135deg,#667eea,#764ba2); border-color: transparent; color: #fff; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) { .blog-hero h1, .section-title { font-size: 2rem; } }
@media (max-width: 575px) { .blog-hero { padding: 60px 0; } .section-title { font-size: 1.6rem; } }

   /* ============================================================
   BLOG CUSTOM STYLES END
   ============================================================ */


   /* ============================================================
   BLOG DETAILS CUSTOM STYLES
   ============================================================ */

.breadcrumb-bar { background: #f8f9fc; padding: 20px 0; border-bottom: 1px solid #eee; }
.breadcrumb { margin: 0; }
.breadcrumb-item a { color: #764ba2; text-decoration: none; }

.post-section { padding: 60px 0; background: #f8f9fc; }
.post-card { background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid #eee; box-shadow: 0 8px 25px rgba(0,0,0,.05); }
.post-image { height: 380px; overflow: hidden; background: linear-gradient(135deg,#eef1ff,#f7eefe); }
.post-image img { width: 100%; height: 100%; object-fit: cover; }
.post-header { padding: 36px 40px 0; }
.post-cat {
    display: inline-block;
    background: linear-gradient(135deg,#667eea,#764ba2); color: #fff;
    font-size: .75rem; padding: 5px 14px; border-radius: 50px; font-weight: 600; margin-bottom: 16px;
}
.post-title { font-size: 2.1rem; font-weight: 700; color: #223; margin-bottom: 18px; line-height: 1.3; }
.post-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: .88rem; color: #6c757d; padding-bottom: 22px; border-bottom: 1px solid #eee; }
.post-meta span i { color: #764ba2; margin-right: 6px; }

.post-content { padding: 32px 40px 40px; }
.rich-content h1, .rich-content h2, .rich-content h3, .rich-content h4 { color: #223; margin: 26px 0 12px; }
.rich-content p { color: #555; line-height: 1.95; margin-bottom: 16px; }
.rich-content img { max-width: 100%; border-radius: 12px; margin: 16px 0; }
.rich-content ul, .rich-content ol { color: #555; line-height: 1.9; padding-left: 22px; margin-bottom: 16px; }
.rich-content blockquote {
    border-left: 4px solid #667eea; background: #f8f9fc; padding: 16px 20px;
    margin: 20px 0; border-radius: 0 10px 10px 0; color: #6c757d; font-style: italic;
}

.post-tags { margin-top: 26px; padding-top: 22px; border-top: 1px solid #eee; }
.post-tags .tag {
    display: inline-block; background: #f0f1ff; color: #764ba2;
    padding: 6px 16px; border-radius: 50px; font-size: .82rem; font-weight: 600; margin: 0 6px 8px 0; text-decoration: none;
}
.post-tags .tag:hover { background: linear-gradient(135deg,#667eea,#764ba2); color: #fff; }
.tags-label { font-weight: 600; color: #223; margin-right: 8px; }

.share-buttons { margin-top: 22px; display: flex; align-items: center; gap: 10px; }
.share-buttons .label { font-weight: 600; color: #223; margin-right: 4px; }
.share-btn {
    display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; transition: transform .3s; text-decoration: none; font-size: .95rem;
}
.share-btn:hover { transform: translateY(-3px); }
.share-fb { background: #3b5998; }
.share-tw { background: #1da1f2; }
.share-li { background: #0077b5; }
.share-wa { background: #25d366; }

.sidebar-card {
    background: #fff; border-radius: 16px; padding: 26px; border: 1px solid #eee; margin-bottom: 24px;
}
.sidebar-title { font-size: 1.15rem; font-weight: 700; color: #223; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid #f0f1ff; }
.sidebar-post { display: flex; gap: 14px; margin-bottom: 16px; align-items: center; }
.sidebar-post:last-child { margin-bottom: 0; }
.sidebar-thumb { width: 70px; height: 60px; border-radius: 8px; overflow: hidden; flex: 0 0 70px; background: linear-gradient(135deg,#eef1ff,#f7eefe); }
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-title { font-size: .9rem; font-weight: 600; line-height: 1.4; margin: 0; }
.sidebar-post-title a { color: #223; text-decoration: none; }
.sidebar-post-title a:hover { color: #764ba2; }
.sidebar-post-date { font-size: .78rem; color: #6c757d; margin-top: 3px; }

.related-section { padding: 60px 0; background: #fff; }
.related-card {
    background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #eee;
    height: 100%; transition: all .35s ease; display: flex; flex-direction: column;
}
.related-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(102,126,234,.18); }
.related-img { height: 150px; overflow: hidden; background: linear-gradient(135deg,#eef1ff,#f7eefe); }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.related-body h6 { font-weight: 600; margin-bottom: 8px; }
.related-body h6 a { color: #223; text-decoration: none; }
.related-body h6 a:hover { color: #764ba2; }
.related-body .related-date { font-size: .8rem; color: #6c757d; margin-bottom: 6px; }

.section-title { font-size: 1.8rem; font-weight: 700; color: #223; margin-bottom: 30px; }

@media (max-width: 991px) {
    .post-title { font-size: 1.7rem; }
    .post-image { height: 260px; }
    .post-header { padding: 24px 22px 0; }
    .post-content { padding: 24px 22px 30px; }
}
@media (max-width: 575px) { .post-title { font-size: 1.4rem; } }

   /* ============================================================
   BLOG DETAILS CUSTOM STYLES END
   ============================================================ */


   /* ============================================================
   CONTACT CUSTOM STYLES
   ============================================================ */
   
.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6a11cb 100%);
    color: #fff;
    text-align: center;
}
.contact-hero h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: 12px; }
.contact-hero p { font-size: 1.1rem; opacity: .92; max-width: 680px; margin: 0 auto; }

.contact-body { padding: 90px 0; background: #fff; }

.contact-form-card { background: #f8f9fc; border-radius: 18px; padding: 36px; height: 100%; }
.contact-form-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; color: #223; }
.contact-form-sub { color: #6c757d; margin-bottom: 26px; }

.info-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 26px; color: #223; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.contact-info-icon {
    width: 54px; height: 54px; border-radius: 14px; flex: 0 0 54px;
    background: linear-gradient(135deg,#667eea,#764ba2); color: #fff;
    font-size: 20px; display: flex; align-items: center; justify-content: center;
}
.contact-info-item h6 { margin-bottom: 4px; font-weight: 600; }
.contact-info-item p { margin: 0; color: #6c757d; font-size: .95rem; }
.contact-info-item p a { color: #6c757d; text-decoration: none; }
.contact-info-item p a:hover { color: #764ba2; }

.map-embed { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.1); height: 280px; margin-top: 10px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.contact-alert { display: none; }
.social-bar { margin-top: 26px; }
.social-bar a {
    display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
    border-radius: 50%; background: #f0f1ff; color: #764ba2; margin-right: 8px; transition: all .3s; text-decoration: none;
}
.social-bar a:hover { background: linear-gradient(135deg,#667eea,#764ba2); color: #fff; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-subtitle { color: #764ba2; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; margin-bottom: 10px; }
.section-title { font-size: 2.4rem; font-weight: 700; color: #223; }

@media (max-width: 991px) { .contact-hero h1, .section-title { font-size: 2rem; } }
@media (max-width: 575px) { .contact-hero { padding: 60px 0; } .section-title { font-size: 1.6rem; } }


   /* ============================================================
   CONTACT CUSTOM STYLES END
   ============================================================ */

   

   /* ============================================================
   PRODUCT CUSTOM STYLES
   ============================================================ */


.products-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6a11cb 100%);
    color: #fff;
    text-align: center;
}
.products-hero h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: 12px; }
.products-hero p { font-size: 1.1rem; opacity: .92; max-width: 680px; margin: 0 auto; }

.products-listing { padding: 90px 0; background: #f8f9fc; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-subtitle { color: #764ba2; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; margin-bottom: 10px; }
.section-title { font-size: 2.4rem; font-weight: 700; color: #223; }
.section-desc { color: #6c757d; max-width: 640px; margin: 14px auto 0; }

.filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-tabs .btn {
    border-radius: 50px; padding: 9px 24px; font-weight: 500;
    border: 2px solid #e4e6f0; color: #555; background: #fff;
}
.filter-tabs .btn.active, .filter-tabs .btn:hover { background: linear-gradient(135deg,#667eea,#764ba2); border-color: transparent; color: #fff; }
.filter-tabs .badge-count { font-size: .75rem; margin-left: 6px; opacity: .8; }

.product-card {
    background: #fff; border-radius: 18px; overflow: hidden; border: 1px solid #eee;
    transition: all .35s ease; box-shadow: 0 4px 12px rgba(0,0,0,.04);
    height: 100%; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 22px 45px rgba(102,126,234,.2); }
.product-img-wrap { position: relative; overflow: hidden; height: 190px; background: linear-gradient(135deg,#eef1ff,#f7eefe); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: linear-gradient(135deg,#ff9a3c,#ff5f6d); color: #fff;
    font-size: .72rem; padding: 5px 12px; border-radius: 50px; font-weight: 600;
}
.product-cat-badge {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    background: rgba(255,255,255,.92); color: #764ba2;
    font-size: .72rem; padding: 5px 12px; border-radius: 50px; font-weight: 600;
}
.product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-name { font-size: 1.18rem; font-weight: 600; margin-bottom: 10px; }
.product-name a { color: #223; text-decoration: none; }
.product-name a:hover { color: #764ba2; }
.product-desc { color: #6c757d; font-size: .9rem; margin-bottom: 14px; flex: 1; }
.product-price { margin-bottom: 16px; }
.product-price .price { font-size: 1.2rem; font-weight: 700; color: #764ba2; }
.product-price .price-cycle { color: #6c757d; font-size: .85rem; }
.product-actions { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 4px; }
.product-actions .btn { margin: 0; font-size: .88rem; flex: 1; }

.no-results { text-align: center; color: #6c757d; padding: 50px 0; }
.no-results i { font-size: 3rem; color: #ccc; margin-bottom: 16px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) { .products-hero h1, .section-title { font-size: 2rem; } }
@media (max-width: 575px) { .products-hero { padding: 60px 0; } .section-title { font-size: 1.6rem; } }

   /* ============================================================
   PRODUCT CUSTOM STYLES END
   ============================================================ */



   /* ============================================================
   PRODUCT DETAILS CUSTOM STYLES
   ============================================================ */


.breadcrumb-bar { background: #f8f9fc; padding: 20px 0; border-bottom: 1px solid #eee; }
.breadcrumb { margin: 0; }
.breadcrumb-item a { color: #764ba2; text-decoration: none; }

.product-section { padding: 60px 0; background: #fff; }
.gallery-main {
    border-radius: 16px; overflow: hidden; background: linear-gradient(135deg,#eef1ff,#f7eefe);
    border: 1px solid #eee; height: 420px; display: flex; align-items: center; justify-content: center;
}
.gallery-main img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumb {
    width: 80px; height: 80px; border-radius: 10px; overflow: hidden; cursor: pointer;
    border: 2px solid transparent; transition: all .3s; background: linear-gradient(135deg,#eef1ff,#f7eefe);
    display: flex; align-items: center; justify-content: center;
}
.gallery-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: #764ba2; transform: translateY(-3px); }

.product-info-title { font-size: 2rem; font-weight: 700; color: #223; margin-bottom: 10px; }
.product-info-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 18px; }
.product-info-meta .meta-item { color: #6c757d; font-size: .9rem; }
.product-info-meta .meta-item i { color: #764ba2; margin-right: 6px; }
.product-cat-link { color: #764ba2; font-weight: 600; text-decoration: none; }
.product-short-desc { color: #555; line-height: 1.8; margin-bottom: 24px; }

.plan-badge {
    background: linear-gradient(135deg,#ff9a3c,#ff5f6d); color: #fff;
    font-size: .75rem; padding: 5px 12px; border-radius: 50px; font-weight: 600;
}

.product-btns .btn { margin: 0 10px 10px 0; }

.features-wrap, .description-wrap { padding: 60px 0; }
.features-wrap { background: #f8f9fc; }
.description-wrap { background: #fff; }
.feature-check { color: #667eea; margin-right: 10px; }

.section-title { font-size: 1.8rem; font-weight: 700; color: #223; margin-bottom: 30px; }
.rich-content h1, .rich-content h2, .rich-content h3 { color: #223; margin: 24px 0 12px; }
.rich-content p { color: #555; line-height: 1.9; }
.rich-content ul, .rich-content ol { color: #555; line-height: 1.9; }

.pricing-table-card { background: #fff; border-radius: 16px; border: 1px solid #eee; overflow: hidden; }
.pricing-table-card .table { margin: 0; }
.pricing-table-card th { background: #f8f9fc; color: #223; }

.related-section { padding: 60px 0; background: #f8f9fc; }
.related-card {
    background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #eee;
    height: 100%; transition: all .35s ease; display: flex; flex-direction: column;
}
.related-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(102,126,234,.18); }
.related-img { height: 150px; overflow: hidden; background: linear-gradient(135deg,#eef1ff,#f7eefe); }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.related-body h6 { font-weight: 600; margin-bottom: 8px; }
.related-body h6 a { color: #223; text-decoration: none; }
.related-body h6 a:hover { color: #764ba2; }
.related-body p { color: #6c757d; font-size: .85rem; flex: 1; }

.demo-btn { font-weight: 600; }

@media (max-width: 991px) {
    .product-section { padding: 40px 0; }
    .gallery-main { height: 300px; }
    .product-info-title { font-size: 1.6rem; }
}

   /* ============================================================
   PRODUCT DETAILS CUSTOM STYLES END
   ============================================================ */