.section-mode .hero-mode{
        padding: 100px 0% 0px;
        position: relative;
        overflow: hidden;
        text-align: left;
        width: 70%;
         margin: auto;
}
.section-mode .section-mode{

        position: relative;
        overflow: hidden;


}
.section-mode::before{
  content:"";
  position:absolute;
         width: 100%;
        height: 100%;
  background:radial-gradient(circle,#3b82f6 0%,transparent 60%);
  top:-200px;
  right:-150px;
  opacity:0.3;
}

.section-mode .category{
  font-size:14px;
  color:#94a3b8;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:20px;
}

.section-mode .hero-mode h1{
  font-size:48px;
  font-weight:800;
  max-width:900px;
  line-height:1.2;
  margin-bottom:30px;
}

.section-mode .meta{
  display:flex;
  gap:20px;
  font-size:14px;
  color:#9ca3af;
}

/* ================= FEATURE IMAGE ================= */

.section-mode .feature-image{
  width:84%;
  margin:20px auto;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(120deg,#1e293b,#2563eb,#ec4899);
  height:400px;
}

/* ================= CONTENT ================= */

.content-mode{
  width:70%;
  margin:0 auto 100px;
}

.content-mode h2{
  font-size:28px;
  margin:20px 0 20px;
  font-weight:700;
  color:#000;
  text-align: left;
}

.content-mode p{
  margin-bottom:20px;
  font-size:17px;
  color:#000;
  text-align: left;
}

blockquote{
  margin:40px 0;
  padding:30px;
  background:#111827;
  border-left:4px solid #3b82f6;
  font-size:20px;
  font-weight:500;
  border-radius:12px;
  color:#fff;
}

/* ================= CTA ================= */

.section-mode .cta{
  width:84%;
  margin:0 auto 120px;
  padding:60px;
  border-radius:24px;
  background:linear-gradient(135deg,#1e293b,#0f172a);
  border:1px solid rgba(255,255,255,0.05);
  text-align:center;
}

.section-mode .cta h3{
  font-size:28px;
  margin-bottom:20px;
  color: white;
}

.section-mode .cta p{
  color:#94a3b8;
  margin-bottom:30px;
}

.section-mode .cta a{
  display:inline-block;
  padding:14px 28px;
  background:#3b82f6;
  border-radius:10px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.section-mode .cta a:hover{
  background:#2563eb;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){
 .section-mode .content-mode{
    width:85%;
  }
  .section-mode .hero-mode {

        padding: 10px;
        width: 100%;
}
.section-mode .feature-image {
        width: 97%;
}
}

@media(max-width:768px){
 .section-mode .hero-mode h1{
    font-size:32px;
  }

  .section-mode .feature-image{
    height:250px;
  }

  .section-mode .content-mode{
    width:90%;
  }

  .section-mode .cta{
    padding:40px 20px;
  }
}

/*BLOG PAGE START HERE*/

.blog-wrapper{
  width:90%;
  max-width:1400px;
  margin:100px auto;
  display:flex;
  gap:60px;
}

/* ================= LEFT SIDEBAR ================= */

.sidebar{
  width:250px;
}

.sidebar h2{
  font-size:28px;
  font-weight:700;
  margin-bottom:10px;
  text-align: left;
}

.sidebar p{
  font-size:14px;
  color:#666;
  margin-bottom:30px;
  text-align: left;
}

.category{
  list-style:none;
  padding-left: 0px;
}

.category li{
  margin-bottom:12px;
  cursor:pointer;
  font-size:15px;
  color:#555;
  padding:8px 12px;
  border-radius:8px;
  transition:all .3s ease;
  text-align: left;
}

.category li:hover{
  background:#e8e8e8;
}

.category li.active{
  background:#111;
  color:#fff;
}

/* ================= RIGHT CONTENT ================= */

.blog-content{
  flex:1;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  transition:all .3s ease;
  box-shadow:0 8px 25px rgba(0,0,0,0.04);
}

.blog-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.card-image{
  height:220px;
  background:linear-gradient(120deg,#0f172a,#1e293b,#3b82f6,#ec4899);
  background-size:300% 300%;
  animation:gradientMove 8s ease infinite;
}

@keyframes gradientMove{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.card-body{
  padding:20px;
}

.card-category{
  font-size:12px;
  text-transform:uppercase;
  color:#888;
  margin-bottom:8px;
}

.card-title{
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
  line-height:1.4;
}

.card-desc{
  font-size:14px;
  color:#555;
  margin-bottom:15px;
}

.card-date{
  font-size:12px;
  color:#999;
}

/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:1000px){
  .blog-wrapper{
    flex-direction:column;
    margin:30px auto;
  }

  .sidebar{
    width:100%;
  }

  .category{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }

  .category li{
    margin:0;
    border:1px solid #ddd;
  }

  .blog-content{
    grid-template-columns:1fr;
  }
}
