:root{
  --brand: #35b6c7;
  --brand-dark: #2aa2b2;
  --text-dark: #0f1f2d;
  --text-muted: #6b6b6b;
  --bg-soft: #ffffff;
}

/* SECTION */
.about-section{
  padding: 95px 0;
  background: #fff;
}

.about-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: start;
}

/* IMAGE */
.about-image img{
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 6px;
}

/* AUTHOR CARD (NOW UNDER IMAGE) */
.about-author{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 14px 0;
}

.about-author img{
  width: 58px;
  height: 58px;
  border-radius: 4px;
  object-fit: cover;
}

.author-info strong{
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-dark);
}

.author-info span{
  display: block;
  font-size: 14px;
  color: #7b7b7b;
  margin-top: 2px;
}

/* CONTENT */
.about-content{
  position: relative;
  padding-top: 15px;
}

/* WATERMARK */
.about-watermark{
  position: absolute;
  top: -35px;
  right: 10px;
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -2px;
  color: rgba(15, 31, 45, 0.06);
  pointer-events: none;
}

/* TAG */
.about-tag{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 14px;
}

.about-tag span{
  width: 55px;
  height: 2px;
  background: var(--brand);
}

/* TITLE */
.about-title{
  font-size: 56px;
  line-height: 1.05;
  margin: 8px 0 26px;
  color: var(--text-dark);
  font-weight: 900;
}

.about-title span{
  color: #000;
}

/* TEXT BOX */
.about-box{
  background: var(--bg-soft);
  padding: 34px;
  border-radius: 4px;
}

/* TEXT */
.about-text{
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* DROP CAP */
.dropcap{
  float: left;
  font-size: 64px;
  line-height: 0.9;
  font-weight: 900;
  margin-right: 12px;
  margin-top: 5px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .about-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-title{
    font-size: 42px;
  }

  .about-box{
    padding: 24px;
  }
}

@media (max-width: 480px){
  .about-section{
    padding: 70px 0;
  }

  .about-title{
    font-size: 34px;
  }

  .about-text{
    font-size: 16px;
  }

  .dropcap{
    font-size: 52px;
  }
}




/* ===============================
   ABOUT PAGE – HERO ONLY
   Company: Plain Plant Logistics and Supply
================================ */

:root {
    --primary: #0a2c52;
  
    --dark: #0f172a;
}

/* ================= HERO ================= */
.about-hero {
    position: relative;
    height: 35vh;
    background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 44, 82, 0.80);
}

.about-hero-content {
    position: relative;
    color: #ffffff;
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.about-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .about-hero {
        height: 45vh;
    }

    .about-hero-content h1 {
        font-size: 38px;
    }

    .about-hero-content p {
        font-size: 16px;
    }
}


/* ===============================
   WHY CHOOSE US SECTION
================================ */

.why-choose-us {
    padding: 90px 0;
    background: #f5f5f5;
}

.section-head.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
}

.section-head h2 span {
    color: var(--accent);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.why-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 9px 35px rgba(129, 129, 129, 0.08);
    transition: all 0.35s ease;
    text-align: left;
}

.why-card i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 25px;
}

.why-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

.why-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

/* ZOOM + LIFT HOVER EFFECT */
.why-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.15);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-head h2 {
        font-size: 32px;
    }
}
