/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#f5f6f8;
  line-height:1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section{
  padding:80px 40px;
}

/* FLEX LAYOUT */
.about-section .container,
.about-section .row{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}

/* IMAGE */
.about-section img{
  width:100%;
  max-width:500px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* CONTENT */
.about-section .col-md-6{
  flex:1;
  min-width:280px;
}

/* TITLE */
.about-section h2{
  font-size:28px;
  margin-bottom:10px;
}

/* TAGLINE */
.about-tagline{
  color:#0207f6;
  margin-bottom:15px;
}

/* TEXT */
.about-section p{
  color:#555;
  margin-bottom:15px;
}

/* ===== FEATURES ===== */
.about-features{
  margin-top:20px;
}

.about-feature-item{
  background:#fff;
  padding:15px;
  border-radius:8px;
  margin-bottom:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.about-feature-item strong{
  display:block;
  margin-bottom:5px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .about-section .row{
    flex-direction:column;
    text-align:center;
  }

  .about-section img{
    max-width:100%;
  }
}

@media(max-width:600px){
  .about-section{
    padding:60px 20px;
  }

  .about-section h2{
    font-size:22px;
  }
}







.about-section{
  margin-top:100px;  /* 🔥 pushes section below navbar */
}








.about-section{
  margin-top:40px;   /* 🔥 space from navbar */
}