* { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: Arial, sans-serif; }

    /* Navbar */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #222;
      padding: 1rem 2rem;
      color: #fff;
    }
    .logo { font-size: 1.5rem; font-weight: bold; }
    .nav-links {
      display: flex;
      gap: 1.5rem;
    }
    .nav-links a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
    }
    .hamburger {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    .bcarousel, .brand-carousel { 
    position: relative;
    overflow: hidden;
    height: 500px;
}
.bslides, .brand-slides { 
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.bslide { 
    min-width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.bslide p { 
    background: rgba(200, 6, 6, 0.5);
    padding: 1rem;
    border-radius: 5px;
}

    /* About */
    .about {
      background: #333F48;
      color: white;
      padding: 2rem;
      text-align: center;
    }
    .about img {
      width: 100%;
      max-width: 500px;
      margin-top: 1rem;
    }

    .about-2, .about-3 {
        background-color: #333F48;
        color: #fff;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10PX;
    }

    .about-2 P, .about-3 p {
        max-width: 500px;
        font-size: 1.2rem;
    }

    .about-3 {
        background-color: #fff !important;
        color: black;
    }

    /* Testimonial */
    .carousel {
      position: relative;
      max-width: 800px;
      margin: auto;
      background: white;
      border-radius: 12px;
      padding: 2rem;
      margin-top: 20px;
    }

    .slide {
      display: none;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      display: block;
      opacity: 1;
    }

    .quote {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #333;
    }

    .author {
      margin-top: 1rem;
      font-weight: bold;
      color: #f3c613;
    }

    /* Full width image */
    .full-width-image img {
      width: 100%;
      height: auto;
    }

    /* Footer */
    footer {
      background: #222;
      color: white;
      text-align: center;
      padding: 1.5rem 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: space-around;
    }

     @media (max-width: 768px) {
      .nav-links { display: none; flex-direction: column; background: #222; position: absolute; top: 60px; right: 20px; padding: 1rem; }
      .nav-links.show { display: flex; z-index: 1000 }
      .hamburger { display: block;}
       .about-2 img, .about-3 img {
        width: 100%;
    }
      .about-2, .about-3 {
        flex-direction: column;
      }
      .about-3 p {
        order: 2;
      }

      .bcarousel,
      .bslide {
        height: 300px;
      }
    }