    /* -------------------- Global Defaults -------------------- */
    body {
        color: #000;
        font-family: "Arial", sans-serif;
    }

    .logo {
        max-width: 220px;
        height: auto;
    }

    /* -------------------- Back to Top Button -------------------- */
    .back-to-top {
        position: fixed;
        bottom: 25px;
        right: 25px;
        background-color: #000;
        color: #fff !important;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        transition: background-color 0.3s ease;
        font-size: 20px;
    }

    .back-to-top:hover {
        background-color: #333;
    }

    .back-to-top i {
        font-size: 20px;
        line-height: 1;
    }

    /* -------------------- Header Styling -------------------- */
    header#top {
        border-bottom: 5px solid #c4c4c4;
        background: #fff;
        z-index: 1000;
    }

    #navbar .nav-tab {
        display: inline-block;
        padding: 0.5rem 1.5rem;
        color: #000;
        text-decoration: none !important;
        font-family: "Arial", sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        transition: border-bottom 0.2s ease;
        border-bottom: 3px solid transparent;
    }

    #navbar .nav-tab:hover {
        border-bottom: 3px solid #c4c4c4;
    }

    .side-panel {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 320px; /* increased from 260px */
        background: #fff;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding-top: 3rem;
        text-align: left; /* Align content to left */
    }

    .side-panel.open {
        transform: translateX(0);
    }

    .side-panel .btn-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .side-panel .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
        border-bottom: 1px solid #eee;
        color: #000;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left;
        font-weight: 600;
    }

    .side-panel .nav-link:hover {
        background-color: #f7f7f7;
        border-left: 4px solid #c4c4c4;
    }
    

    /* Responsive tweaks for mobile nav */
    @media (max-width: 768px) {
        .logo {
            max-width: 180px;
        }
    }

    /* Ensure all links have no text-decoration */
    a {
        text-decoration: none;
    }

    a:link,
    a:visited,
    a:hover,
    a:active {
        color: #000;
        text-decoration: none;
    }

    



    /* -------------------- DualCoat Image Sections -------------------- */
    .dualcoat-section {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        position: relative;
        padding: 60px 0;
    }

    .dualcoat-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.65);
        z-index: 1;
    }

    .dualcoat-section .container {
        position: relative;
        z-index: 2;
    }

    .dualcoat-section .section-title {
        color: #c4c4c4;
    }

    .highlight-box {
        border: 2px solid #c4c4c4;
        background-color: rgba(196, 196, 196, 0.1);
        backdrop-filter: blur(4px);
        color: #c4c4c4;
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 900px;
    }

    @media (max-width: 576px) {
    .dualcoat-section {
        padding: 0;
    }

    .dualcoat-section .container,
    .dualcoat-section .row,
    .dualcoat-section .highlight-box {
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .dualcoat-section .highlight-box {
        background-color: rgba(196, 196, 196, 0.1); /* original light overlay */
        color: #c4c4c4;
        border: 2px solid #c4c4c4;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem; /* restore original spacing */
    }

    .dualcoat-section .highlight-box .section-title {
        color: #c4c4c4;
    }

    .dualcoat-section .highlight-box .section-text {
        color: #c4c4c4;
    }
}

@media (max-width: 576px) {
  .highlight-box {
    border: none !important;
    background: none !important;
    backdrop-filter: none !important;
  }

  .section-title {
    font-size: 20px; /* previously 18px */
  }

  .section-text {
    font-size: 1rem; /* previously 0.85rem */
    line-height: 1.6;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


    .section-title {
        font-family: 'Georgia', serif;
        color: black;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-text {
        font-family: 'Arial', sans-serif;
        font-size: 1rem;
        line-height: 1.6;
    }

    /* -------------------- Benefit Cards -------------------- */
    .benefit-card {
        background-color: #c4c4c4;
        color: #000;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .benefit-card img {
        width: 100%;
        object-fit: cover;
        max-height: 220px;
    }

    .benefit-card-body {
        padding: 1.25rem;
        text-align: left;
        flex: 1;
    }

    .benefit-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    /* -------------------- Responsive -------------------- */
    @media (max-width: 1200px) {
        .section-title {
            font-size: 24px;
        }

        .section-text {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 992px) {
        .highlight-box {
            padding: 1.5rem;
        }

        .section-title {
            font-size: 22px;
        }
    }

    @media (max-width: 768px) {
        .dualcoat-section {
            background-attachment: scroll;
        }

        .section-title {
            font-size: 20px;
        }

        .section-text {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .highlight-box {
            padding: 1.25rem 1rem;
            max-width: 100%;
        }

        .back-to-top {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }
    }

    @media (max-width: 576px) {
        .highlight-box {
            padding: 1rem;
        }

        .section-title {
            font-size: 18px;
        }

        .section-text {
            font-size: 0.85rem;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        nav#navbar .nav-link {
            font-size: 0.9rem;
            padding: 0.5rem 0.75rem;
        }

        .logo {
            max-width: 80%;
            height: auto;
        }
    }

     @media (min-width: 1200px) {
        #product .col-lg-2 {
            flex: 0 0 auto;
            width: 20%;
        }
    }

    .nav-tab {
        display: inline-block;
        padding: 0.5rem 1.5rem;
        color: #000;
        text-decoration: none !important;
        font-family: "Arial", sans-serif;
        font-size: 1.125rem;
        font-weight: bold;
        transition: border-bottom 0.2s;
        border-bottom: 3px solid transparent;
    }

    .nav-tab:hover {
        border-bottom: 3px solid #c4c4c4;
    }

    a {
  text-decoration: none;
}

a:link {
    color:#000;
  text-decoration: none;
}
a:visited {
    color:#000;
  text-decoration: none;
}
a:hover {
    color:#000;
  text-decoration: none;
}
a:active {
    color:#000;
  text-decoration: none;
}

/* footer */
    .footer {
      background: #000;
      color: #fff;
    }
    .footer a {
      color: inherit;
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
    }

    /* link list */
    .footer .footer-links {
      list-style: none;
      padding: 0;
      margin: 0 0 1rem 0;
    }
    .footer .footer-links li {
      margin-bottom: 0.5rem;
    }
    .footer .footer-links li:last-child {
      margin-bottom: 0;
    }

    /* larger logo */
    .footer .footer-logo {
      max-width: 240px;
      margin-bottom: 1rem;
    }

    /* social icons */
    .footer .social {
      display: flex;
      justify-content: center;
      gap: 1rem;
      font-size: 1.25rem;
    }

    /* wrapper to left-align the group, but let inner content center */
    .footer .logo-social-wrapper {
        display: inline-block;
        text-align: center;
    }

.image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;  /* Keeps all images uniform while responsive */
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops to fit without distortion */
    display: block;
}

.image-text {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 8px;
    font-size: clamp(12px, 1.5vw, 18px); /* scales with screen size */
    border-radius: 4px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

/* Override for second image's text */
.image-container.right-text .image-text {
    left: auto;
    right: 8px;
}

@media (max-width: 576px) {
  .footer .row {
    text-align: center;
  }

  .footer .col-md-6 {
    justify-content: center !important;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .footer .footer-links {
    display: inline-block;
    text-align: left;
  }
}
