        /* ============================================
           PREMIUM BLOG DETAILS STYLES
           Black (#111111), Gold (#D4AF37), White (#FFFFFF)
           No body selector, no global *, no font-family
           ============================================ */
        
        /* Premium Hero Banner */
        .premium-blog-hero {
            position: relative;
            background: #0a0a0a;
            padding: 80px 0 70px;
            border-bottom: 2px solid #D4AF37;
            overflow: hidden;
        }
        
        .premium-blog-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(17,17,17,0.95) 100%);
            z-index: 1;
        }
        
        .premium-breadcrumb-wrapper {
            position: relative;
            z-index: 2;
        }
        
        .premium-breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }
        
        .premium-breadcrumb-nav a {
            color: #D4AF37;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }
        
        .premium-breadcrumb-nav a:hover {
            opacity: 0.8;
        }
        
        .premium-breadcrumb-nav span {
            color: #888;
            font-size: 0.9rem;
        }
        
        .premium-breadcrumb-nav i {
            font-size: 12px;
            color: #D4AF37;
        }
        
        .premium-hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            color: #FFFFFF;
            line-height: 1.2;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }
        
        .premium-hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .premium-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #CCCCCC;
            font-size: 0.9rem;
        }
        
        .premium-meta-item i {
            color: #D4AF37;
            font-size: 1rem;
        }
        
        .premium-category-badge {
            display: inline-block;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid #D4AF37;
            color: #D4AF37;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        /* Main Content Layout */
        .premium-blog-main {
            background: #111111;
            padding: 70px 0;
        }
        
        .premium-blog-container-custom {
            max-width: 1320px;
            margin: 0 auto;
        }
        
        .premium-two-column {
            display: flex;
            gap: 50px;
            flex-wrap: wrap;
        }
        
        .premium-content-area {
            flex: 0 0 68%;
            width: 68%;
        }
        .premium-blog-main,
.premium-blog-container-custom,
.premium-two-column{
    overflow: visible !important;
}
        .premium-sidebar-area {
            flex: 0 0 28%;
            width: 28%;
            position: sticky;
            top: 100px;
            align-self: flex-start;
        }
        
        /* Blog Content Styling */
        .premium-article-card {
            background: #1a1a1a;
            border-radius: 24px;
            padding: 40px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .premium-featured-img {
            width: 100%;
            border-radius: 20px;
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .premium-featured-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 20px;
        }
        
        .premium-article-header {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }
        
       .premium-article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Tablet */
@media (max-width: 1024px) {
    .premium-article-header h1 {
        font-size: 2.1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .premium-article-header h1 {
        font-size: 1.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .premium-article-header h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}
        .premium-author-date-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .premium-author-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .premium-author-avatar {
            width: 48px;
            height: 48px;
            background: #D4AF37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            color: #111;
        }
        
        .premium-author-name {
            color: #FFFFFF;
            font-weight: 600;
        }
        
        .premium-author-name span {
            color: #D4AF37;
        }
        
        .premium-date-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #CCCCCC;
        }
        
        .premium-reading-time {
            background: rgba(212, 175, 55, 0.1);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #D4AF37;
        }
        
        /* Content Styling - target .blog-text and .blog-content */
        .blog-text {
            color: #E0E0E0;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
       .blog-text h2 {
    display: table;
    color: #D4AF37;
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}
        
        .blog-text h3 {
            color: #FFFFFF;
            font-size: 1.5rem;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        
        .blog-text h4 {
            color: #D4AF37;
            font-size: 1.25rem;
            margin-top: 25px;
            margin-bottom: 12px;
        }
        
        .blog-text p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .blog-text a {
            color: #D4AF37;
            text-decoration: none;
            border-bottom: 1px solid rgba(212, 175, 55, 0.4);
            transition: all 0.3s ease;
        }
        
        .blog-text a:hover {
            color: #FFD700;
            border-bottom-color: #FFD700;
        }
        
        .blog-text ul, .blog-text ol {
            margin: 20px 0;
            padding-left: 25px;
        }
        
        .blog-text li {
            margin-bottom: 8px;
        }
        
        .blog-text blockquote {
            background: rgba(212, 175, 55, 0.08);
            border-left: 4px solid #D4AF37;
            padding: 20px 30px;
            margin: 30px 0;
            font-style: italic;
            color: #CCCCCC;
        }
        
        .blog-text table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: #0d0d0d;
        }
        
        .blog-text th, .blog-text td {
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 12px;
            text-align: left;
        }
        
        .blog-text th {
            background: rgba(212, 175, 55, 0.1);
            color: #D4AF37;
        }
        
        .blog-text img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 20px 0;
        }
        
        .blog-text pre, .blog-text code {
            background: #0a0a0a;
            padding: 12px;
            border-radius: 8px;
            overflow-x: auto;
        }
        
        /* Gold Separator */
        .premium-gold-separator {
            width: 60px;
            height: 3px;
            background: #D4AF37;
            margin: 30px 0;
        }
        
        /* Author Box */
        .premium-author-box {
            background: #0d0d0d;
            border-radius: 20px;
            padding: 30px;
            margin-top: 40px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .premium-author-avatar-large {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #D4AF37, #FFD700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            color: #111;
        }
        
        .premium-author-bio {
            flex: 1;
        }
        
        .premium-author-bio h4 {
            color: #D4AF37;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .premium-author-bio p {
            color: #BBBBBB;
            line-height: 1.6;
        }
        
        /* Social Share */
        .premium-social-share {
            margin-top: 35px;
            padding-top: 25px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .premium-social-share h4 {
            color: #FFFFFF;
            margin-bottom: 18px;
            font-size: 1.1rem;
        }
        
        .premium-social-icons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .premium-social-icon {
            width: 44px;
            height: 44px;
            background: #222;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D4AF37;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .premium-social-icon:hover {
            background: #D4AF37;
            color: #111;
            transform: translateY(-3px);
        }
        
        /* Table of Contents */
        .premium-toc {
            background: #0d0d0d;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .premium-toc h3 {
            color: #D4AF37;
            margin-bottom: 18px;
            font-size: 1.2rem;
        }
        
        .premium-toc-list {
            list-style: none;
            padding: 0;
        }
        
        .premium-toc-list li {
            margin-bottom: 10px;
        }
        
        .premium-toc-list a {
            color: #CCCCCC;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            padding: 5px 0;
        }
        
        .premium-toc-list a:hover {
            color: #D4AF37;
        }
        
        /* Sidebar Widgets */
        .premium-widget {
            background: #1a1a1a;
            border-radius: 20px;
            padding: 28px;
            margin-bottom: 35px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .premium-widget-title {
            color: #D4AF37;
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #D4AF37;
        }
        
        .premium-sidebar-menu {
            list-style: none;
            padding: 0;
        }
        
        .premium-sidebar-menu li {
            margin-bottom: 12px;
        }
        
        .premium-sidebar-menu a {
            color: #DDDDDD;
            text-decoration: none;
            display: block;
            padding: 8px 0;
            transition: all 0.3s;
            border-left: 2px solid transparent;
            padding-left: 12px;
        }
        
        .premium-sidebar-menu a:hover {
            color: #D4AF37;
            border-left-color: #D4AF37;
        }
        
        /* Recent Posts Widget */
        .premium-recent-post {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }
        
        .premium-recent-img {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .premium-recent-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .premium-recent-content h6 {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .premium-recent-content a {
            color: #FFFFFF;
            text-decoration: none;
        }
        
        .premium-recent-content a:hover {
            color: #D4AF37;
        }
        
        .premium-recent-date {
            font-size: 0.7rem;
            color: #D4AF37;
        }
        
        /* Related Posts */
        .premium-related-section {
            margin-top: 50px;
        }
        
        .premium-related-title {
            color: #D4AF37;
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .premium-related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .premium-related-card {
            background: #1a1a1a;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: transform 0.3s;
        }
        
        .premium-related-card:hover {
            transform: translateY(-5px);
            border-color: #D4AF37;
        }
        
        .premium-related-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .premium-related-content {
            padding: 18px;
        }
        
        .premium-related-date {
            font-size: 0.7rem;
            color: #D4AF37;
            margin-bottom: 8px;
        }
        
        .premium-related-card h5 {
            font-size: 1rem;
            color: #FFFFFF;
            margin-bottom: 12px;
        }
        
        .premium-related-readmore {
            color: #D4AF37;
            text-decoration: none;
            font-size: 0.85rem;
        }
        
        
        /* CTA Section */
        .premium-cta-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 70px 0;
            text-align: center;
            border-top: 2px solid #D4AF37;
            border-bottom: 2px solid #D4AF37;
        }
        
        .premium-cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        .premium-cta-title {
            color: #FFFFFF;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .premium-cta-title span {
            color: #D4AF37;
        }
        
        .premium-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .premium-cta-btn-primary {
            background: #D4AF37;
            color: #111;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
        }
        
        .premium-cta-btn-primary:hover {
            background: #FFD700;
            transform: translateY(-2px);
        }
        
        .premium-cta-btn-secondary {
            border: 2px solid #D4AF37;
            color: #D4AF37;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
        }
        
        .premium-cta-btn-secondary:hover {
            background: #D4AF37;
            color: #111;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .premium-two-column {
                flex-direction: column;
            }
            .premium-content-area, .premium-sidebar-area {
                flex: 0 0 100%;
                width: 100%;
            }
            .premium-sidebar-area {
                position: static;
                margin-top: 40px;
            }
            .premium-related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .premium-hero-title {
                font-size: 2.3rem;
            }
            .premium-article-card {
                padding: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .premium-related-grid {
                grid-template-columns: 1fr;
            }
            .premium-author-date-row {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            .premium-hero-meta {
                gap: 15px;
            }
            .premium-cta-title {
                font-size: 1.8rem;
            }
        }
  
.premium-blog-meta{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
    align-items:center;
    gap:15px;
}

.premium-meta-item{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 16px;
    border-radius:50px;
    background:#111;
    color:#fff;
    border:1px solid rgba(212,175,55,.25);
    font-size:14px;
    font-weight:600;
}

.premium-meta-item i{
    color:#D4AF37;
}

.premium-category-badge{
    background:#D4AF37;
    color:#111;
    border-color:#D4AF37;
}

.premium-category-badge i{
    color:#111;
}

@media(max-width:768px){

    .premium-blog-meta{
        gap:10px;
    }

    .premium-meta-item{
        font-size:13px;
        padding:8px 14px;
    }

}
.premium-blog-title{
    color:#D4AF37;
    font-size:42px;
    font-weight:800;
    line-height:1.3;
    text-align:center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

@media(max-width:991px){
    .premium-blog-title{
        font-size:34px;
    }
}

@media(max-width:767px){
    .premium-blog-title{
        font-size:28px;
        line-height:1.4;
        margin-bottom:20px;
    }
}
.fq-section {
--fq-accent: #D4AF37;      /* Rich Gold */
    --fq-accent2: #FFD700;     /* Bright Gold */
    --fq-dark: #0d1117;
    --fq-card: #141b22;

    --fq-border: rgba(212, 175, 55, 0.25);

    --fq-text: #c9d1d9;
    --fq-muted: #8b949e;
    --fq-white: #ffffff;
  --fq-radius: 14px;
  --fq-trans: 0.32s cubic-bezier(.4, 0, .2, 1);
  background:#000;
  padding: 72px 0 80px;
  overflow: hidden
}



.fq-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .18
}

.fq-blob--1 {
  width: 400px;
  height: 400px;
  background: var(--fq-accent);
  top: -120px;
  left: -100px
}

.fq-blob--2 {
  width: 300px;
  height: 300px;
  background: var(--fq-accent2);
  bottom: -80px;
  right: -80px
}

.fq-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1
}

.fq-header {
  text-align: center;
  margin-bottom: 48px
}

.fq-badge {
  display: inline-block;
  background: rgb(145 217 4 / .12);
  border: 1px solid var(--fq-border);
  color: var(--fq-accent);
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px
}

.fq-title {
  color: var(--fq-white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 14px;
  letter-spacing: -.02em
}

.fq-title span {
  color: var(--fq-accent)
}

.fq-sub {
  color: var(--fq-muted);
  font-size: .97rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65
}

.fq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.fq-item {
  background: var(--fq-card);
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius);
  overflow: hidden;
  transition: border-color var(--fq-trans), box-shadow var(--fq-trans)
}

.fq-item:hover {
  border-color: #D4AF37;   
}

.fq-item.fq-open {
  border-color: var(--fq-accent);
  box-shadow: 0 0 0 1px rgb(145 217 4 / .25), 0 8px 32px rgb(0 0 0 / .35)
}

.fq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  outline: none
}

.fq-btn:focus-visible {
  outline: 2px solid var(--fq-accent);
  outline-offset: -2px
}

.fq-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgb(145 217 4 / .1);
  border: 1px solid var(--fq-border);
  color: var(--fq-accent);
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .05em;
  transition: background var(--fq-trans), border-color var(--fq-trans)
}

.fq-open .fq-num {
  background: var(--fq-accent);
  border-color: var(--fq-accent);
  color: var(--fq-dark)
}

h2.fq-q-text {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  color: var(--fq-white);
  transition: color var(--fq-trans)
}

.fq-open h2.fq-q-text {
  color: var(--fq-accent)
}

.fq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:#000;
  border: 1px solid var(--fq-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fq-trans), transform var(--fq-trans)
}

.fq-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--fq-accent);
  transition: transform var(--fq-trans)
}

.fq-open .fq-icon {
  background: var(--fq-accent)
}

.fq-open .fq-icon svg {
  stroke: var(--fq-dark);
  transform: rotate(45deg)
}

.fq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--fq-trans)
}

.fq-answer-inner {
  padding: 0 22px 20px 70px;
  text-align: justify;
  color: var(--fq-text);
  font-size: .94rem;
  line-height: 1.72
}

.fq-more-wrap {
  text-align: center;
  margin-top: 40px
}

.fq-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fq-accent);
  color: var(--fq-dark);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--fq-trans), transform var(--fq-trans), box-shadow var(--fq-trans);
  box-shadow: 0 4px 20px rgb(145 217 4 / .25)
}

.fq-more-btn:hover {
  background: var(--fq-accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgb(145 217 4 / .35)
}

.fq-more-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--fq-dark);
  flex-shrink: 0;
  transition: transform var(--fq-trans)
}

.fq-more-btn:hover svg {
  transform: translateX(3px)
}

.fq-answer {
  cursor: pointer
}

@media (max-width:600px) {
  .fq-section {
    padding: 52px 0 60px
  }
  .fq-answer-inner {
    padding-left: 22px
  }
  .fq-btn {
    padding: 16px 16px;
    gap: 12px
  }
}