.navbar-brand .logo {
  height: 40px; /* or adjust as needed */
  width: auto; /* maintain aspect ratio */
  object-fit: contain;
}

@media (max-width: 768px) {
  .navbar-brand .logo {
    height: 32px; /* smaller on mobile */
  }
}

    :root {
      --primary: #ff6600;
      --secondary: #111;
      --light: #fff;
      --gray: #f4f4f4;
      --text: #333;
    }


    .about {
        background-color: #1a1a1a;
        color: #e2e8f0;
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
    }

    
  .about section {
      padding: 60px 20px;
      max-width: 1320px;
      margin: auto;
    }

    .about section .section-title {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 600;
      margin-bottom: 40px;
      position: relative;
    }

    .about .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: var(--primary);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .about .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Image */
.about .about-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Tablet */
@media (max-width: 992px) {
  .about .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about .about-content img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about .about-content {
    gap: 20px;
  }

  .about .about-content img {
    max-width: 100%;
  }

  .section-title {
    text-align: center;
  }
}

    .about section .mission-vision {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .about section .mission-vision .mission, .about section .mission-vision .vision {
      flex: 1;
      min-width: 300px;
      background: var(--primary);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .about section .mission-vision .mission:hover, .about section .mission-vision .vision:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .about .ceo-section {
      background: var(--secondary);
      color: var(--light);
      padding: 80px 20px;
      text-align: center;
    }

    .about .ceo-section img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 4px solid var(--primary);
      margin-bottom: 20px;
    }

    .about .ceo-section blockquote {
      font-style: italic;
      font-size: 1.3rem;
      max-width: 800px;
      margin: 20px auto;
    }

    .about .timeline {
      position: relative;
      padding-left: 30px;
      border-left: 4px solid var(--primary);
      margin-top: 40px;
    }

    .about section .timeline-item {
      margin-bottom: 30px;
      position: relative;
    }

    .about section .timeline-item::before {
      content: '';
      position: absolute;
      left: -12px;
      top: 5px;
      width: 15px;
      height: 15px;
      background: var(--primary);
      border-radius: 50%;
    }

    .about section footer {
      background: var(--secondary);
      color: var(--light);
      text-align: center;
    }

    .about .hero-section-about {
        background-image: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
        /* margin-bottom: 5rem; */
        /* spacing below hero */
        padding-top: 5rem;
        /* padding-bottom: 5rem; */
        text-align: center;
    }

       .about .timeline img {
  max-width: 40%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    @media (max-width: 768px) {
      .about-content {
        grid-template-columns: 1fr;
      }
    }
 

/* Tablet */
@media (max-width: 992px) {
  .about .timeline img {
    max-width: 60%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about .timeline img {
    max-width: 100%;
  }
}

/* ===== Scrollbar Styling ===== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111; /* dark background */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6600, #ff8c42);
  border-radius: 10px;
  border: 2px solid #111;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff8c42, #ff6600);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff6600 #111;
}