:root{
  --primary-blue:#263489;
  --accent-red:#ec1d25;
  --text-black:#000000;
  --bg-light:#f4f6f9;
}

/* ================= SECTION ================= */
.mnrcet-about-section{
  background:var(--bg-light);
  padding:20px 0;
}

/* ================= MAIN CARD ================= */
.mnrcet-card{
  background:#fff;
  border-radius:20px;
  padding:40px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  overflow:hidden;
}

/* ================= TITLE ================= */
.section-heading{
  color:var(--primary-blue);
  font-size:42px;
  font-weight:800;
  margin-bottom:20px;
  position:relative;
}

.section-heading::after{
  content:"";
  width:80px;
  height:4px;
  background:var(--accent-red);
  display:block;
  margin-top:12px;
  border-radius:10px;
}

/* ================= CONTENT ================= */
.about-content{
  color:#444;
}

.about-content p{
  font-size:16px;
  line-height:1.9;
  text-align:justify;
  margin-bottom:18px;
}

/* ================= FLOAT IMAGE ================= */
.about-image{
  float:right;
  width:360px;
  margin:0 0 25px 30px;
  position:relative;
  overflow:hidden;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.about-image img{
  width:100%;
  display:block;
  border-radius:18px;
  transition:0.5s ease;
}

.about-image:hover img{
  transform:scale(1.08);
}

/* ================= HIGHLIGHT SECTION ================= */
.highlight-section{
  margin-top:40px;
}

.highlight-title{
  color:var(--primary-blue);
  font-size:30px;
  font-weight:700;
  margin-bottom:30px;
  position:relative;
}

.highlight-title::after{
  content:"";
  width:70px;
  height:3px;
  background:var(--accent-red);
  display:block;
  margin-top:10px;
  border-radius:10px;
}

/* ================= FEATURE BOX ================= */
.feature-box{
  background:#fff;
  border-radius:16px;
  padding:25px;
  height:100%;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  border-top:4px solid var(--primary-blue);
  transition:0.4s;
}

.feature-box:hover{
  transform:translateY(-8px);
  border-top:4px solid var(--accent-red);
}

.feature-box ul{
  padding-left:18px;
  margin:0;
}

.feature-box li{
  margin-bottom:12px;
  color:var(--text-black);
  line-height:1.7;
  position:relative;
}

/* ================= OBJECTIVES ================= */
.objective-section{
  margin-top:50px;
  background:#fff;
  border-radius:18px;
  padding:35px;
  box-shadow:0 10px 30px rgba(0,0,0,0.07);
}

.objective-title{
  color:var(--primary-blue);
  font-size:32px;
  font-weight:700;
  margin-bottom:20px;
}

.objective-text{
  color:#444;
  line-height:1.9;
  margin-bottom:18px;
  text-align:justify;
}

/* ================= VALUES LIST ================= */
.values-list{
  margin-top:20px;
  padding-left:20px;
}

.values-list li{
  margin-bottom:12px;
  color:var(--text-black);
  font-size:16px;
  position:relative;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){

  .about-image{
    float:none;
    width:100%;
    margin:0 0 25px 0;
  }

  .section-heading{
    font-size:34px;
  }

  .highlight-title,
  .objective-title{
    font-size:28px;
  }

  .mnrcet-card{
    padding:25px;
  }
}

@media(max-width:768px){

  .section-heading{
    font-size:28px;
  }

  .highlight-title,
  .objective-title{
    font-size:24px;
  }

  .about-content p,
  .objective-text,
  .feature-box li,
  .values-list li{
    font-size:15px;
  }

}