/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Montserrat", sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  img {
    max-width: 100%;
    display: block;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0.5px;
  }
  
  /* ========== TOPBAR & NAVBAR ========== */
  .topbar {
    background: #f8f9fa;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
  }
  .topbar a {
    font-weight: 600;
    color: #000;
  }
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  .navbar-logo h1 {
    font-weight: 900;
    font-size: 1.5rem;
    color: #333;
  }
  .navbar-menu a {
    margin-left: 1.5rem;
    font-weight: 600;
    transition: color 0.3s;
  }
  .navbar-menu a:hover {
    color: #000;
  }
  
  /* ========== HERO ========== */
  .hero {
    position: relative;
    min-height: 70vh;
    background: url("warehouse.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: #fff;
    text-align: center;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }
  .hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  .hero .btn-primary {
    background: #000;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    transition: background 0.3s;
  }
  .hero .btn-primary:hover {
    background: #222;
  }
  
  /* ========== SHOWCASE & BRAND LOGOS ========== */
/* ... (keep your existing globals, navbar, hero, about, process, impact styles) ... */

/* NATIONWIDE SHOWCASE (MAP ONLY) */
.nationwide-showcase {
    padding: 3rem 0;
    background: #f8f8f8;
  }
  .nationwide-showcase h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
  }
  .map-container {
    text-align: center;
  }
  .map-container img {
    max-width: 100%;
    height: auto;
  }
  
  /* BRAND LOGOS GALLERY */
  .brand-logos-gallery {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
  }
  .brand-logos-gallery h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
  }
  .brand-logos-gallery .brand-logos-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
  }
  .brand-logos-gallery .brand-logos-row img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  .brand-logos-gallery .brand-logos-row img:hover {
    transform: scale(1.1);
  }  
  
  /* ========== TOOLTIP ========== */
  #tooltip {
    position: absolute;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 4px;
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 999;
  }
  #tooltip.show {
    opacity: 1;
  }
  
  /* ========== CATEGORIES (if used) ========== */
  /* Add your .categories styles here if needed */
  
  /* ========== ABOUT ========== */
/* ========== ABOUT SECTION WITH BLACK WAVES ========== */
.about-section {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 4rem 0 2rem 0; /* top right bottom left */
    }
    
  
  /* Top black wave */
  .black-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23000' d='M0,32L80,64C160,96,320,160,480,186.7C640,213,800,203,960,186.7C1120,171,1280,149,1360,138.7L1440,128L1440,0L0,0Z'/></svg>");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
  }
  
  /* Bottom black wave (flipped vertically) */
  .black-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%23000' d='M0,288L80,256C160,224,320,160,480,138.7C640,117,800,128,960,144C1120,160,1280,192,1360,208L1440,224L1440,320L0,320Z'/></svg>");
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(180deg);
    z-index: 1;
  }
  
  /* ensure your content floats above the waves */
  .about-section .container {
    position: relative;
    z-index: 2;
  }
  
  /* optional underline for your H2 */
  .about-section h2 {
    display: inline-block;
    position: relative;
  }
  .about-section h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #000;
    border-radius: 2px;
  }
  /* ========== ABOUT LAYOUT & TYPOGRAPHY ========== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
  }
  
  /* If you ever need to constrain the text width */
  .about-text {
    max-width: 600px;
  }
  
  /* Image styling */
  .about-images {
    text-align: center;
  }
  
  .about-images img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    margin-left: 110px; /* ← shift right */
  }
  
  /* Mobile stack */
  @media (max-width: 768px) {
    .about-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .about-text, .about-images {
      max-width: none;
    }
  }
  
  
  /* ========== RESPONSIVE ========== */
  @media (max-width: 768px) {
    .about-content {
      grid-template-columns: 1fr;
    }
    .about-images {
      order: -1;
    }
    .hero h1 {
      font-size: 2rem;
    }
  }
  
  /* ========== WAVE BACKGROUND ========== */
  .wave-section {
    position: relative;
    padding: 4rem 0;
    text-align: center;
  }
  .wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url("data:image/svg+xml,...") no-repeat center/cover;
    opacity: 0.3;
  }
  .wave-section h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
  }
  .wave-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .wave-section .highlighted {
    text-decoration: underline;
    font-weight: 900;
  }
  
  /* ========== SERVICES GRID ========== */
  .services {
    padding: 4rem 0;
    text-align: center;
  }
  .services h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  .service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 2rem 1rem;
    transition: box-shadow 0.3s;
    cursor: default;
  }
  .service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  }
  .service-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  /* ========== IMPACT BANNER ========== */
  .impact-banner {
    position: relative;
    margin: 4rem auto;
    max-width: 1200px;
    border: 4px solid #000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
  }
  .impact-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #000;
  }
  .impact-col {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .impact-logo {
    width: 120px;
    margin-bottom: 1.2rem;
  }
  .impact-left h3 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
  }
  .impact-right p {
    font-size: 1.4rem;
    line-height: 1.35;
    font-weight: 600;
    max-width: 90%;
  }
  @media (max-width: 768px) {
    .impact-banner {
      grid-template-columns: 1fr;
    }
    .impact-col {
      padding: 2rem 1.5rem;
    }
    .impact-left h3 {
      font-size: 1.75rem;
    }
    .impact-right p {
      font-size: 1.2rem;
    }
  }
  
  /* ========== CTA ========== */
  .cta {
    padding: 3rem 0;
    text-align: center;
    background: #000;
    color: #fff;
  }
  .cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
  }
  .cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  .cta a {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 0.75rem 2rem;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.3s;
  }
  .cta a:hover {
    background: #e9e9e9;
  }
  
  /* ========== CONTACT ========== */
  .contact {
    padding: 4rem 0;
  }
  .contact h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
  }
  .contact-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
  }
  .contact-info,
  .contact-form {
    flex: 1 1 350px;
    min-width: 300px;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .contact-form label {
    font-weight: 600;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
  }
  .contact-form button {
    background: #000;
    color: #fff;
    padding: 0.75rem 2rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
  }
  .contact-form button:hover {
    background: #222;
  }
  
  /* ========== FOOTER ========== */
  .footer {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    color: #777;
    font-size: 0.9rem;
  }
  .footer span {
    font-weight: 600;
  }
  
  /* ========== WHATSAPP FLOAT BUTTON ========== */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
  }
  .whatsapp-float i {
    font-size: 24px;
    color: #fff;
  }
  
  /* ========== RESPONSIVE GRID TWEAKS ========== */
  @media (max-width: 600px) {
    .brand-logos-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  /* ========== TRUCK / SHIPPING SECTION ========== */
.truck-section {
    padding: 5rem 0;
    background: #fafafa;
  }
  
  .truck-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
  }
  
  /* text side */
  .truck-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #111;
  }
  .truck-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
  }
  .truck-text a.btn-dark {
    background-color: #000 !important;
    border: none;
    color: #fff !important;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .truck-text a.btn-dark:hover {
    background-color: #222 !important;
  }
  
  
  /* image side */
  .truck-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  /* responsive stack */
  @media (max-width: 768px) {
    .truck-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .truck-text, .truck-image {
      max-width: 500px;
      margin: 0 auto;
    }
  }
  
  