*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Inter',system-ui,sans-serif;
  background:#0b1120;
  color:#e5e7eb;
  overflow-x:hidden;
}

/* ================= BLOG LIST ================= */

.blog-page{
  padding:60px 0;
}
  .blog-page h1{
  display: flex;
  justify-content: center;
 font-size: 48px;
  font-weight: 700;
  margin: 0;
  color: #c86dd7; /* purple/pink text */
  letter-spacing: 1px;
  }

.blog-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:flex;
  gap:40px;
  align-items:flex-start;
}

/* LEFT */

.blog-left{
  flex:3;
  min-width:0;
}

/* BLOG CARD */

.blog-card{
  margin-bottom:50px;
  transition:.3s ease;
}

.blog-card:hover{
  transform:translateY(-5px);
}

.blog-image{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:18px;
}

.blog-title{
  font-size:26px;
  font-weight:700;
  margin-bottom:8px;
  line-height:1.35;
}

.blog-title a{
  text-decoration:none;
  background:linear-gradient(90deg,#a855f7,#ec4899);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.blog-excerpt{
  font-size:15px;
  line-height:1.7;
  color:#cbd5e1;
  margin-bottom:12px;
}

.read-more{
  text-decoration:none;
  font-weight:600;
  color:#a855f7;
  font-size:14px;
}

/* ================= SIDEBAR ================= */

.blog-sidebar{
  flex:1.2;
  position:sticky;
  top:100px;
}

.sidebar-widget{
  margin-bottom:24px;
  padding:18px;
  border-radius:12px;
  background:rgba(255,255,255,0.05);
}

.sidebar-widget h3{
  margin-bottom:12px;
  font-size:18px;
  font-weight:700;
  background:linear-gradient(90deg,#a855f7,#ec4899);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.sidebar-widget input{
  width:100%;
  padding:10px;
  border-radius:8px;
  border:none;
  outline:none;
  background:#111827;
  color:#fff;
  font-size:14px;
}

.contact-card{
  text-align:center;
}

.mini-cta{
  display:inline-block;
  margin-top:10px;
  font-weight:600;
  color:#a855f7;
  font-size:14px;
}

/* ================= SINGLE BLOG ================= */

.single-blog{
  max-width:900px;
  margin:70px auto;
  padding:0 20px;
}

.single-image{
  width:100%;
  height:auto;
  max-height:360px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:24px;
}
.single-image{
    margin-bottom:25px;
}
.single-blog h1{
  font-size:34px;
  font-weight:800;
  margin-bottom:18px;
  line-height:1.3;
  background:linear-gradient(90deg,#a855f7,#ec4899);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* BLOG CONTENT */

.single-content{
  font-size:16px;
  line-height:1.8;
  color:#d1d5db;
}

.single-content p{
  margin-bottom:14px;
}

.single-content h2,
.single-content h3{
  margin-top:28px;
  margin-bottom:12px;
  font-weight:700;
  background:linear-gradient(90deg,#a855f7,#ec4899);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.single-content h2{
  font-size:22px;
}

.single-content h3{
  font-size:18px;
}

.single-content ul{
  margin-left:18px;
  margin-top:10px;
}

.single-content li{
  margin-bottom:6px;
  font-size:15px;
}

/* ================= BREADCRUMB ================= */

.breadcrumb{
  margin-bottom:16px;
  font-size:13px;
  color:#94a3b8;
}

.breadcrumb a{
  color:#a855f7;
  text-decoration:none;
}

.back-btn{
  display:inline-block;
  margin-top:30px;
  font-weight:600;
  text-decoration:none;
  color:#a855f7;
}

/* ================= TABLET ================= */

@media (max-width:992px){

  .blog-container{
    flex-direction:column;
    gap:35px;
  }

  .blog-sidebar{
    position:relative;
    top:0;
  }

  .blog-title{
    font-size:22px;
  }

  .single-blog h1{
    font-size:28px;
  }

}

/* ================= MOBILE ================= */

@media (max-width:600px){

  .blog-page{
    padding:40px 0;
  }

  .blog-container{
    padding:0 15px;
  }

  .blog-image{
    height:180px;
  }

  .blog-title{
    font-size:20px;
  }

  .single-blog h1{
    font-size:22px;
  }

  .single-content{
    font-size:15px;
    line-height:1.7;
  }

  .single-content h2{
    font-size:18px;
  }

  .single-content h3{
    font-size:16px;
  }

}

/* ===== Table Wrapper (Mobile Scroll) ===== */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 25px 0;
}

/* ===== Main Table ===== */
.compliance-table {
  width: 100%;
  min-width: 600px; /* enables scroll on small screens */
  border-collapse: collapse;
  font-size: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===== Header ===== */
.compliance-table thead {
  background: linear-gradient(90deg, #ff6b00, #ff914d);
  color: #fff;
}

.compliance-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ===== Body ===== */
.compliance-table td {
  padding: 12px 16px;
  border: 1px solid #eee;
  color: #333;
}

/* Zebra Rows */
.compliance-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Hover Effect */
.compliance-table tbody tr:hover {
  background-color: #fff3e6;
  transition: 0.3s ease;
}

/* ===== Responsive Improvements ===== */
@media (max-width: 768px) {
  .compliance-table {
    font-size: 14px;
  }

  .compliance-table th,
  .compliance-table td {
    padding: 10px;
  }
}

/* ===== Scrollbar Styling (Optional) ===== */
.table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
/* ===== Table Wrapper ===== */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 25px 0;
}

/* ===== Main Table ===== */
.compliance-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a; /* dark background */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ===== Header (Gradient like your site) ===== */
.compliance-table thead {
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  color: #fff;
}

.compliance-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* ===== Body ===== */
.compliance-table td {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  color: #e5e7eb; /* light text */
}

/* Zebra Rows */
.compliance-table tbody tr:nth-child(even) {
  background-color: #111827;
}

/* Hover Effect */
.compliance-table tbody tr:hover {
  background: rgba(99, 102, 241, 0.1);
  transition: 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .compliance-table {
    font-size: 14px;
  }

  .compliance-table th,
  .compliance-table td {
    padding: 10px;
  }
}

/* ===== Scrollbar ===== */
.table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #6366f1;
  border-radius: 10px;
}



