
/* Brand Colors from Guidelines */
:root {
    --brand-orange: #f37021;
    --deep-navy:  #133955;
    --light-blue: #6ec4d7;
    --bg-color: #dee2e6;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    
    --placeholder: #e9ecef;
    --placeholder-border: #adb5bd;

}
.bg-light-color{
    background-color: var(--bg-color) !important;
}
.top-bar{
    background: var(--bg-color);
}
.navbar {
    background: var(--deep-navy);
}
.nav-link {
    font-weight: 500 !important;
    transition: all 0.3s ease;
    display: inline-block !important;
    text-align: center;
    color: white !important;
}
.nav-link::before {
    content: attr(title);
    display: block;
    font-weight: 700;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
.nav-link:hover, 
.nav-link.show,
.nav-link.active {
    color: white !important;
    text-underline-offset: 6px;
    text-decoration: underline !important;
    /* font-weight: 700 !important; */
}
.dropdown-toggle::after {
    vertical-align: middle !important;
    transition: transform 0.3s ease;
}
.dropdown-toggle.show::after {
    transform: rotate(-180deg);
}
.text-orange { 
    color: var(--brand-orange);
}
.x-small{
    font-size: 0.6rem;
}

.btn-orange, .btn-blue { 
    background-color: var(--deep-navy); 
    color: white; 
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 1.1rem;
    transition: 0.3s;
}
.btn-line{
    border-radius: 50px;
    padding: 10px 30px;
    text-decoration: none;
    background: transparent;
    border: 1px solid white;
    color: white;
}
.btn-orange:hover, .btn-blue:hover, .btn-line:hover{
    background-color: var(--light-blue);
    color: var(--deep-navy);
    border-color: var(--light-blue);
}
.view-link{
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--deep-navy);
}
.view-link:hover{
    text-decoration: underline;
}
.wireframe-placeholder {
    background-color: var(--placeholder);
    border: 2px dashed var(--placeholder-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 200px;
}

/* Breadcrumbs Styling */
.breadcrumb {
    background: transparent;
    padding: 0 60px !important;
    margin-bottom: 20px;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "/" !important;
    color: var(--brand-orange) !important;
    font-weight: 700;
}
.breadcrumb-item a {
    color: #6c757d !important;
    font-weight: 500;
    transition: all 0.3s ease;
}
.breadcrumb-item a:hover {
    color: var(--brand-orange) !important;
}
.breadcrumb-item.active {
    color: var(--deep-navy) !important;
    font-weight: 700;
}

body {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif !important;
    /* As per typography guidelines */
    margin: 0;
    line-height: 1.6;
    color: var(--text-dark);
}

h1{
    font-weight: 700 !important; /* Bold */
}
h2, h3, h4, h5, h6{
    font-weight: 500 !important;
}
p{
    font-weight: 400 !important;
}

/* 1. Header & Navigation */
.navbar-toggler {
    border: 1px solid white !important;
    padding: 0.25rem 0.5rem;
    line-height: 1;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler i {
    color: white;
    font-size: 1.8rem;
    line-height: 1;
}

.navbar-toggler .close-icon {
    display: none;
}

.navbar-toggler:not(.collapsed) .hamburger-icon {
    display: none;
}

.navbar-toggler:not(.collapsed) .close-icon {
    display: block;
}
.text-blue{
    color: var(--deep-navy);
}
header {
    background: var(--text-light);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--brand-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.dropdown-item{
    color: var(--text-light) !important;
    margin: 0;
    transition: all 0.3s ease;
    padding: 10px 20px;
    transition: 0.3s;
}
.dropdown-item:hover {
    background-color: var(--brand-orange) !important;
    color: var(--text-light) !important;
}
 main {
            flex: 1; /* Pushes the footer down */
        }

.desktop-only {
  display: inline-block !important;
}

.mobile-only {
  display: none !important;
}

  .dropdown-submenu {
    position: relative;
  }

  .dropdown-menu{
    background-color: var(--deep-navy) !important;
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.344) !important;
    margin: 0.5rem 0;
  }
  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
  }

  

  
.section-title{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding: 0 60px;
    text-align: center;
    color: var(--deep-navy);  
    line-height: 1.5;
}
.sec-title{
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--deep-navy);  
}
.sec-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-orange);
    margin-top: 15px;
}
.hero-section {
    position: relative;
    height: 100vh;
    margin-top: 100px;
    overflow: hidden;
    border-bottom: 4px solid var(--brand-orange);
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    object-position: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(10, 17, 40, 0.40); */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600 !important;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1rem;
    /* max-width: 800px; */
    margin: 0 auto;
}

.section-padding {
    padding: 80px 60px;
}
.new-cards .card{
    border: 1px solid transparent !important;
}
.new-cards .card:hover{
    border: 1px solid var(--brand-orange) !important;
}
/* =========================================== supply Chain page ===================== */
.supply-hero {
    background: linear-gradient(rgba(10, 17, 40, 0.7), rgba(10, 17, 40, 0.7)), url('assets/supply-hero-bg.jpg') center/cover no-repeat;
    background-color: var(--deep-navy);
    padding: 180px 0 140px;
    text-align: center;
    color: var(--text-light);
}

.supply-hero h1 {
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.supply-hero p {
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
}

/* Timeline Styles */
.supply-timeline-section {
    padding: 80px 0;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 1px;
    background-color: #0A1128;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: 0;
    z-index: 1;
}

.timeline-item {
    padding: 0px 60px;
    position: relative;
    width: 50%;
    margin-bottom: 50px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

/* Flex alignment to push content */
.timeline-item.left .timeline-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.timeline-item.right .timeline-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.timeline-content img{
    width: 60px;
    margin-bottom: 15px;
}
.timeline-number {
    position: absolute;
    width: 65px;
    height: 65px;
    background-color: white;
    border: 1.5px solid #0A1128;
    border-radius: 50%;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 300;
    color: #0A1128;
}

.timeline-item.left .timeline-number {
    right: -32.5px;
}

.timeline-item.right .timeline-number {
    left: -32.5px;
}

.timeline-icon {
    font-size: 4rem;
    color: #C49A6C; /* Tan/Gold color from reference image */
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.timeline-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    max-width: 420px;
}

.max-width-700 {
    max-width: 700px;
}

/* Responsive */


/* ======================================= environmental ========================================*/
.env-hero {
    background: linear-gradient(rgba(10, 17, 40, 0.6), rgba(10, 17, 40, 0.6)), url('assets/env-hero-bg.jpg') center/cover no-repeat;
    background-color: var(--deep-navy);
    padding: 180px 0 140px;
    text-align: center;
    color: var(--text-light);
}

.env-hero h1 {
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.env-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.env-intro {
    padding: 100px 0;
    text-align: center;
}


.env-strips {
    padding-bottom: 60px;
}

.env-strip {
    background-color: var(--bg-color);
    background-position: center;
    background-size: cover;
    position: relative;
    color: var(--text-light);
    margin-bottom: 10px;
}

.env-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    transition: background 0.3s ease;
}

.env-strip:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.env-strip .container {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.env-strip-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.env-strip-title {
    flex: 0 0 35%;
    text-align: right;
    font-size: 2rem;
    font-weight: 700;
    border-right: 2px solid rgba(255,255,255,0.4);
    padding-right: 40px;
    letter-spacing: -0.5px;
}

.env-strip-text {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.6;
    padding-left: 40px;
    font-weight: 400;
}

.max-width-700 {
    max-width: 700px;
}




/* why choose us*/
    .max-width-700 { max-width: 700px; }
    .hover-orange:hover { color: var(--brand-orange) !important; }
    .transition-all { transition: all 0.3s ease; }

    /* Overriding container for the alternating rows to work with the custom css */
    .advantage-row .container {
        display: flex !important;
    }
    
    .btn-brand:hover {
        background-color: var(--brand-orange) !important;
    }
/* who we work with  */

.sectors-hero {
    background: linear-gradient(rgba(10, 17, 40, 0.8), rgba(10, 17, 40, 0.8)), url('assets/sectors-hero-bg.jpg') center/cover no-repeat;
    background-color: var(--deep-navy);
    padding: 160px 0 120px;
    color: var(--text-light);
    text-align: center;
}

.sector-icon-card {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.sector-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: var(--brand-orange);
}

.sector-icon-card i {
    font-size: 3rem;
    color: var(--brand-orange);
    margin-bottom: 20px;
    display: block;
}

.sector-icon-card h5 {
    color: var(--deep-navy);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
}

/* Sector Image Cards */
.sector-image-card {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    /* height: 100%; */
    height: 280px;
}
.sector-image-card img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.sector-image-card:hover img {
    transform: scale(1.1);
}

.sector-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.9) 10%, rgba(10, 17, 40, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
}
.sector-overlay h5 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}


.sector-image-card:hover .sector-overlay h5 {
    transform: scale(1.1);

}
.sector-overlay .read-badge {
    position: absolute;
    bottom: 30px;
    /* left: 20px; */
    transform: translateY(0px);
    transition: all 0.3s ease;
}

.sector-image-card:hover .sector-overlay .read-badge {
    color: var(--deep-navy);
    background-color: var(--light-blue);
}
.sector-img{
    background-color: #ccc;
    height: 600px;
    width: 500px;
}

.quote-section {
    background-color: var(--deep-navy);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.quote-block {
    position: relative;
    padding: 40px;
}

.quote-icon {
    font-size: 4rem;
    color: var(--brand-orange); 
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.quote-text {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    line-height: 1.6;
    color: white;
    font-weight: 300;
}

.quote-author {
    color: var(--brand-orange);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.btn-brand:hover {
    background-color: var(--brand-orange) !important;
}

/* ========================================================================== FAQ Page ===================== */


.faq-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #000; /* Bottom border for each item */
    border-radius: 0;
    background: transparent;
}

.faq-accordion .accordion-button {
    padding: 20px 0;
    font-weight: 500;
    color: var(--deep-navy);
    background-color: transparent !important;
    box-shadow: none !important;
    font-size: 1.1rem;
    border: none;
    text-align: left;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-orange);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(-180deg);
}

.faq-accordion .accordion-body {
    padding: 0 0 30px 0;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* login page */
.login-section {
    min-height: 80vh;
    align-items: center;
    background-color: white;
    padding: 60px 0;
}
.login-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #eaeaea;
}
.login-image {
    background: linear-gradient(rgba(10, 17, 40, 0.4), rgba(10, 17, 40, 0.4)), url('assets/contact-form.jpg') center/cover no-repeat;
    background-color: var(--deep-navy);
    min-height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: white;
}
.login-image h3 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
}
.login-image p {
    font-size: 1.1rem;
    font-weight: 300;
}
.login-form-container {
    padding: 60px 50px;
}
.login-title {
    color: var(--deep-navy);
    font-weight: 500 !important;
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.login-subtitle {
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 1.1rem;
}
.form-floating:focus-within label {
    color: var(--brand-orange) !important;
}
.form-control {
    border-radius: 8px;
    padding: 1rem 0.75rem;
    border: 1px solid #ced4da;
}
.form-control:focus {
    border-color: var(--brand-orange) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.15) !important;
}
.form-check-input:focus{
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.15) !important;
}
.forgot-password {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.forgot-password:hover {
    color: var(--deep-navy);
}
.form-check-input:checked {
    background-color: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
}



/* =============================================================== About Page Styles =====================================*/


.onbrand-mission {
    background-color: var(--text-light);
}

.power-of-one {
    background-color: var(--deep-navy);
    color: var(--text-light);
}

.power-of-one h2 {
    color: var(--text-light);
}

.onbrand-ethics {
    background-color: var(--off-white);
}

.ethics-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.ethics-card:hover {
    transform: translateY(-5px);
}

.ethics-icon {
    font-size: 3rem;
    color: var(--brand-orange);
    margin-bottom: 20px;
}

.textured-bg {
    position: relative;
    overflow: hidden;
}

.textured-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--brand-orange) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}



/* ============================================== Team Page Styles ====================================*/
.team-hero {
    background-color: var(--deep-navy);
    padding: 100px 0;
    color: var(--text-light);
    text-align: center;
}

.team-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.team-list {
    padding: 80px 0;
}

.team-card-hover, .team-card-small {
    cursor: pointer;
}

.bw-overlay {
    background: #e9ecef;
    position: relative;
    transition: filter 0.4s ease;
    filter: grayscale(100%);
}

.bw-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.8) 0%, rgba(10, 17, 40, 0) 50%);
    transition: all 0.4s ease;
    z-index: 1;
}

.team-card-hover:hover .bw-overlay, .team-card-small:hover .bw-overlay{
    filter: grayscale(0%);
}

.team-card-hover:hover .bw-overlay::before {
    background: rgba(10, 17, 40, 0.5);
}

.team-info-overlay {
    transition: all 0.4s ease;
    z-index: 2;
}

.team-card-hover:hover .team-info-overlay {
    opacity: 0;
    transform: translateY(20px);
}

.team-bio-overlay {
    background: rgba(10, 17, 40, 0.096);
    opacity: 0;
    z-index: 3;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-card-hover:hover .team-bio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-placeholder {
    width: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #868e96;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.team-placeholder img{
    object-position: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text-navy {
    color: var(--deep-navy) !important;
}
.btn-white{
    color: white;
    border: 1px solid transparent;
    text-decoration: none;
}
.btn-white:hover{
    color: white;
    text-decoration: none;
    border: 1px solid white;
}

/* ================================================================== Sectors Page Styles ============================================ */
.sectors-hero {
    background: linear-gradient(rgba(10, 17, 40, 0.8), rgba(10, 17, 40, 0.8));
    padding: 100px 0;
    color: var(--text-light);
    text-align: center;
}

.sector-card {
    background: white;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.sector-image-wrap {
    position: relative;
}

.sector-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-weight: 500;
}

.sector-content {
    padding: 30px;
}

.sector-category {
    font-size: 0.8rem;
    color: var(--brand-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.sector-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 15px;
}

.sector-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Styles (Patagonia-inspired) */
.advantage-hero {
    padding: 140px 0 80px;
    background-color: var(--text-light);
    text-align: center;
}

.advantage-row {
    display: flex;
    align-items: stretch; /* IMPORTANT: equal height */
    padding: 0; /* remove vertical padding here */
    border-top: 1px solid #eee;
}

.advantage-image-wrap,
.advantage-cont {
    flex: 1;
    display: flex;
}

/* Make inner content centered */
.advantage-cont {
    background-color: var(--bg-color); /* your bg */
    padding: 60px;
    align-items: center;
    height: 100%;
    flex-direction: column;
}



.advantage-row:nth-child(even) {
    flex-direction: row-reverse;
}

.advantage-placeholder {
    background-color: #dadadb;
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 0; 
}


.advantage-cont p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

.advantage-accent-bar {
    width: 60px;
    height: 4px;
    background-color: var(--brand-orange);
    margin-bottom: 20px;
}



/* ================================================================== Shop Page =============================== */
#shop, #single-product {
    margin-top: 160px;
    padding: 0 60px;
}
.breadcrumb-item {
    font-size: 0.8rem;
}
.letter-spacing-1 {
    letter-spacing: 1px;
}
.product-title{
    font-size: 1.5rem;
    font-weight: 500 !important;
}
.btn-outline-dark{
    font-size: 0.875rem;
    padding: 10px 15px;
    border-radius: 50px !important;
    border: 1px solid rgba(0, 0, 0, 0.194);
}
.btn-check:checked+.btn{
    background-color: var(--deep-navy) !important;
}
/* Custom Carousel Indicators */
.carousel-indicators-custom button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 4px;
    padding: 0;
}
.carousel-indicators-custom button.active {
    background-color: var(--text-dark);
}
#single-product .carousel-item img{
    object-fit: cover;
    /* aspect-ratio: 1/1; */
}
/* Color Radio Buttons */
.color-radio input {
    display: none;
}
.color-radio .swatch {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    padding: 2px;
    background-clip: content-box;
}
.color-radio input:checked + .swatch {
    border-color: var(--text-dark);
}

/* Custom Nav Tabs for Logo Positions */
.nav-tabs-custom .nav-link {
    border: none;
    color: #888 !important;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    position: relative;
    background: transparent;
}

.nav-tabs-custom .nav-link:hover {
    color: var(--text-dark);
    border: none;
    text-decoration: none !important;
}

.nav-tabs-custom .nav-link.active {
    color: var(--text-dark) !important;
    border: none;
    background: var(--bg-color) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}



/* Logo Upload Area */
.logo-upload-box {
    border: 1px dashed black;
    transition: border-color 0.3s, background-color 0.3s;
}
.logo-upload-box:hover {
    border-color: var(--text-dark);
}
.tab-pane{
    border: 10px solid var(--bg-color);
}
.upload-btn{
    border: none;
    font-size: 1rem;
    font-weight: 500;
}
.upload-btn:hover{
    font-weight: 700;
}
/* Size Quantity Table Styles */
.size-qty-table {
    border-collapse: collapse;
    font-size: 0.85rem;
}
.discount-price{
    background: var(--brand-orange);
    padding: 8px 12px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.7rem;
}
.size-qty-table th, .size-qty-table td {
    padding: 0 !important;
    height: 45px;
    vertical-align: middle;
}

.qty-input {
    width: 100%;
    height: 100%;
    border: none;
    text-align: center;
    background: transparent;
    outline: none;
    padding: 5px;
}

.qty-input:focus {
    background-color: #fff;
    box-shadow: inset 0 0 0 2px var(--text-dark);
}
.config-section{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 20px;
    padding: 20px;
}

/* Pricing Table Hover */
.hover-bg-light:hover {
    background-color: #ffffff;
}
.hover-bg-light, .bg-color{
    background-color: var(--bg-color);
}
.btn-xs {
    font-size: 0.7rem;
    padding: 2px 8px;
}

/* Accordion Customization */
#single-product .accordion{
    border-top: 1px solid var(--deep-navy);
    border-bottom: 1px solid var(--deep-navy);
    
}
.accordion-button {
    padding: 20px 0;
    font-weight: 500;
    color: var(--text-dark);
    background-color: transparent !important;
    box-shadow: none !important;
    font-size: 1.3rem;
    border: none;
    text-align: left;
}

 .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
}
.accordion-item{
    border-bottom: 1px solid var(--deep-navy) !important;
}
.accordion-button:not(.collapsed) {
    color: var(--brand-orange) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 0 0 30px 0;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
}
.title{
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--deep-navy);
}
.faq-sec{
    background-color: var(--bg-color);
}
.subs-sec{
    background-color: var(--bg-color);
}
/* SECTION */
.full-sec {
    width: 100%;
}

/* ROW FIX (equal height) */
.full-sec .row {
    display: flex;
    align-items: stretch;
}

/* COLUMNS */
.text-col,
.feature-sec {
    display: flex;
}

/* TEXT SIDE */
.text-sec {
    width: 100%;
    padding: 60px;
    background: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* IMAGE SIDE */
.feature-sec {
    overflow: hidden;
}

.feature-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TYPOGRAPHY */
.title {
    font-size: 2rem;
    line-height: 1.4;
}
.feature-sec {
    align-items: center;
    justify-content: center;
}
/* SQUARE BOX */
.image-placeholder-sec {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1; /* makes it square */
    background: #f1f1f1;
    border: 2px dashed #ccc;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #aaa;
    font-weight: 600;
    font-size: 1.1rem;
}
/* MOBILE */


/* Product Card Improvements */

.product-card:hover img {
    transform: scale(1.05);
}
 .add-to-cart-sticky{
    position: sticky;
    bottom: 0;
    padding: 0 10px;
    z-index: 4;
    background-color: white;
 }

/* Sticky Mobile Footer */


/* Scroll Smoothing */
html {
    scroll-behavior: smooth;
}

/* ========================================================================= */
/* Header area */
.shop-header {
padding: 30px 0 20px 0;
}
.filter-topbar .form-check-label{
    color: white;
}
.filter-topbar .form-label{
    color: white;
}
/* Top Filter Bar */
.filter-topbar {
margin-bottom: 30px;
background: #fff;
position: sticky;
top: 0;
z-index: 1000;
}

.filter-item-dropdown {
margin-right: 25px;
}

.filter-trigger {
background: none;
border: none;
font-size: 0.9rem;
font-weight: 500;
padding: 10px 12px;
display: flex;
align-items: center;
color: var(--text-dark);
text-transform: capitalize;
}
.filter-trigger-end {
background: none;
font-size: 0.9rem;
border: none;
font-weight: 500;
padding: 10px 12px;
display: flex;
align-items: center;
color: var(--text-dark);
text-transform: capitalize;
}


.filter-item-dropdown.show .filter-trigger::after {
transform: rotate(180deg);
}

.filter-dropdown-menu {
border-radius: 0 !important;
border: 1px solid #c9c6c6;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
padding: 20px !important;
min-width: 250px !important;
margin-top: 10px !important;
}
.active>.page-link, .page-link.active{
    background-color: var(--bg-color) !important;
    color: black !important;
    border: 1px solid transparent !important;
}
.page-link{
    border: 1px solid transparent !important;
}
.page-link:hover{
    background-color: transparent !important;
    border: 1px solid var(--deep-navy) !important;
    
}
/* Product Card Styling */
.product-card {
border: none;
background: transparent;
margin-bottom: 40px;
height: 92%;
border-radius: 0;
text-decoration: none !important;
color: inherit;
display: block;
}

.product-image-container {
position: relative;
/* aspect-ratio: 3/4; */
background-color: var(--bg-color);
overflow: hidden;
margin-bottom: 15px;
}

.product-image-container img {
width: 100%;
height: 100%;
object-fit: cover;

transition: opacity 0.4s ease;
}

.product-image-hover {
position: absolute;
top: 0;
left: 0;
opacity: 0;
}

.product-card:hover .product-image-main {
opacity: 0;
}

.product-card:hover .product-image-hover {
opacity: 1;
}

.product-info {
padding: 5px 0;
text-align: start; /* Center align text as per reference image */
}

.product-name {
font-size: 0.95rem;
font-weight: 500;
margin-bottom: 4px;
display: block;
}

.product-price {
font-size: 0.9rem;
color: #666;
font-weight: 400;
}

/* Custom Scrollbar for dropdowns if they get long */
.filter-dropdown-menu .scroll-area {
max-height: 300px;
overflow-y: auto;
}

/* Mobile Adjustments */

/* ---------------------------- */
    .hover-orange:hover { color: var(--brand-orange) !important; }
    .transition-all { transition: all 0.3s ease; }
    
    .team-card {
        background: white;
        border: 1px solid #eaeaea;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    }

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        border-color: var(--brand-orange);
    }

    /* Custom Contact Form Styles */
    .form-container-custom {
        background-color: var(--bg-color);
    }
    .custom-contact-form .form-label {
        font-size: 0.95rem;
        color: #333;
    }
    .custom-contact-form .required-text {
        color: var(--brand-orange);
        font-style: italic;
        font-weight: normal;
        font-size: 0.9em;
    }
    .custom-contact-form .form-control, .custom-contact-form .form-select {
        background-color: #ffffff;
        box-shadow: none !important;
    }
    .custom-contact-form .form-control:focus, .custom-contact-form .form-select:focus {
        border: 1px solid #ccc !important;
    }

/* Swiper Custom Navigation Styles */
.mySlider {
    position: static !important;
}
.mySlider-wrapper {
    position: relative;
}

.mySlider-wrapper .custom-next,
.mySlider-wrapper .custom-prev {
    background-color: white;
    color: var(--deep-navy);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(174, 173, 173, 0.3);
    margin-top: 0;
    top: 35%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mySlider-wrapper .custom-next:hover,
.mySlider-wrapper .custom-prev:hover {
    
    box-shadow: 0 4px 12px rgba(10, 17, 40, 0.3);
}

.mySlider-wrapper .custom-next::after,
.mySlider-wrapper .custom-prev::after {
    font-size: 1.2rem;
    font-weight: 800;
}

.mySlider-wrapper .custom-prev {
    left: 30px;
}

.mySlider-wrapper .custom-next {
    right: 30px;
}



/* ================================================= News / Blog Cards */
.blog-card {
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.blog-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.blog-card-image-wrap {
    max-height: 250px;
    opacity: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blog-card-image-wrap img{
    height: 200px;
    object-fit: cover;
    object-position: top;
}

.blog-card:hover .blog-card-image-wrap {
    max-height: 0;
    opacity: 0;
}
.blog-card:hover .blog-read{
    color: var(--deep-navy);
    background-color: var(--light-blue);
}
.blog-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 1;
    background-color: var(--placeholder);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--placeholder-border);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    height: 200px;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    font-size: 0.7rem;
    color: var(--brand-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}
.blog-read{
    display: inline-block;
    background: var(--deep-navy);
    text-decoration: none;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    transition: 0.3s;  
}
.blog-read:hover{
    color: var(--deep-navy);
    background-color: var(--light-blue);
}
.blog-desc-wrap {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-desc-wrap {
    max-height: 300px;
    opacity: 1;
    margin-bottom: 25px;
}

.blog-desc {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.blog-read-more {
    margin-top: auto;
    align-self: flex-start;
}


        /* 2. Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            color: var(--text-light);
            text-align: left;
            padding: 0 5%;
            margin-top: 85px;
        }

        /* Cover Image */
        .hero-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            z-index: 1;
        }

        /* Dark Overlay */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 2;
        }

        /* Content */
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 650px;
        }



        .hero h1 {
            font-size: 4rem;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-primary {
            background: var(--brand-orange);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            width: fit-content;
            text-decoration: none;
        }
        .btn-primary:hover {
            background: white;
            color: var(--brand-orange);
        }
        .home-bg-sec {
            position: relative;
            overflow: hidden;
            padding: 20% 5%;
            text-align: center;
            color: var(--text-light);
        }

        /* Background Image */
        .home-bg-sec-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .video-sec {
    position: relative;
    height: 500px; /* Adjust as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-three-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.sec-three-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* Optional dark overlay */
    z-index: 2;
}

.video-box {
    position: relative;
    height: 100%; /* Adjust as needed */
    border-radius: 15px;
    overflow: hidden;
}

.image-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

        /* ----- */

        .sec-three {
            position: relative;
            overflow: hidden;
            padding: 10% 5%;
            text-align: center;
            color: var(--text-light);
        }

        /* Background Image */
        .sec-three-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        /* Overlay */
        .sec-three::before {
            content: "";
            position: absolute;
            inset: 0;
            /* background: rgba(0, 0, 0, 0.5); */
            z-index: 2;
        }

        /* Content */
        .sec-three-content {
            position: relative;
            z-index: 3;
            align-items: center;
            display: flex;
            flex-direction: column;
        }


        .sec-three p {
            font-size: 1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .product-carousel {
            /* overflow-x: auto; */
            padding: 20px 5%;
        }

        .carousel-track {
            display: flex;
            gap: 25px;
            flex-wrap: nowrap;
        }

        /* Card */
        .product-item {
            min-width: 250px;
            flex: 0 0 auto;
        }

        /* Image */
        .product-image {
            width: 100%;
            aspect-ratio: 1/1;
            border-radius: 15px;
            background: #ccc;
            margin-bottom: 12px;
        }

        /* Title */
        .product-item h4 {
            font-size: 15px;
            font-weight: 600;
            margin: 6px 0;
        }

        /* Subtitle */
        .product-item p {
            font-size: 13px;
            color: #777;
        }

        /* Split Banner */
        .split-banner {
            display: flex;
            min-height: 350px;
        }

        /* Left Content */
        .banner-content {
            width: 30%;
            background: #2f2f2f;
            color: white;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .banner-content h2 {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .banner-content p {
            font-size: 14px;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        /* Button */
        .btn-light {
            background: white;
            color: black;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            width: fit-content;
            cursor: pointer;
            font-weight: 600;
        }

        /* Right Image */
        .banner-image {
            width: 70%;
            background-color: #bbb;
            /* background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover no-repeat; */
        }

        .split-banner {
            padding: 0 !important;
        }

        /* CTA Section */
        .cta-section {
            background: var(--bg-color);
            text-align: center;
            padding: 60px 20px;
        }
        .cta-section h3{
            color: var(--deep-navy);
        }

        /* Description */
        .cta-section p {
            max-width: 600px;
            margin: 0 auto 25px;
            line-height: 1.6;
        }

        /* Button */
        .cta-btn {
            background: black;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
        }

        /* Value Strip */
        .value-strip {
            background: #000;
            color: white;
            display: flex;
            justify-content: space-between;
            padding: 40px 5%;
            gap: 80px;
        }

        /* Each item */
        .value-item {
            text-align: center;
            flex: 1;
        }

        /* Icon placeholder */
        .icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #444;
            /* placeholder */
        }

        /* Title */
        .value-item h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            text-align: left;
        }

        /* Link text */
        .value-item p {
            text-align: left !important;
            font-size: 15px;
            color: #bbb;
            cursor: pointer;

        }

        /* Section Styling */
        section {
            padding: 60px;
        }

        /* SECTION */
.grid-sec {
    padding: 60px 4%;
    text-align: center;
}


/* Description */
.section-desc {
    max-width: 600px;
    margin: 0 auto 40px;
}

/* GRID */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.grid-card {
    padding: 20px;
}

/* ICON */
.icon-box img{
    width: 80px;
    margin-bottom: 10px;
}

/* TITLE LINK */
.grid-title {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--deep-navy);
    text-decoration: none;
    margin-bottom: 10px;
    
    
}

.grid-title:hover {
    color: var(--brand-orange);
}

/* RESPONSIVE */

/* Tablet */


/* Mobile */


        /* 5. Featured Products */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }


        /* 6. Testimonials */
        .testimonials {
            background: var(--brand-orange);
            color: white;
            text-align: center;
        }

        /* 7. Latest News / Blog */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .news-item {
            height: 150px;
            border-left: 5px solid var(--brand-orange);
            padding-left: 20px;
        }

        


        .impact-section {
  background: var(--deep-navy);
  padding: 60px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* Item */
.impact-item {
  color: #fff;
}

/* Icon */
.impact-item i {
  font-size: 28px;
  color: var(--brand-orange);
  margin-bottom: 20px;
  display: block;
}

/* Heading */
.impact-item h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}

/* Text link */
.impact-item a {
  font-size: 14px;
  text-decoration: none;
  color: #ccc;
  margin: 0;
}

/* Responsive */





/* LEFT SIDE */
.home-cta-content {
  background: var(--deep-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-inner {
  padding: 60px;
}

.home-cta-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.home-cta-content p {
  font-size: 16px;
  color: #dcdcdc;
  margin-bottom: 25px;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

.hero-btn:hover {
  background: #ddd;
}

/* RIGHT IMAGE */
.home-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

/* 🔽 RESPONSIVE */

/* Tablet */


/* Mobile */


.image-placeholder {
  width: 100%;
  min-height: 500px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: 500;
  font-size: 18px;
}

/* RESPONSIVE */


/* Let Owl handle layout */
.review-slide {
    width: 100%;
    height: 100%;
}

.owl-stage {
    display: flex;
}

.owl-item {
    display: flex;
}

.review-card {
    background: #fff;
    padding: 30px;
    min-height: 470px;
    border: 1px solid #d7d7d7;
    width: 620px;
    display: flex;
    flex-direction: column;
}

        /* SECTION */
.review-section {
    background: #ececec;
    overflow: hidden;
    padding: 70px 0;
}


/* WRAPPER */
.review-wrapper {
    position: relative;
    width: 100%;
    padding: 0 60px;
}

/* SLIDER */
.review-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.review-slider::-webkit-scrollbar {
    display: none;
}

/* SLIDES */
.review-slide {
    flex: 0 0 calc(50% - 15px);
}



/* HEADER */
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.review-header span {
    font-size: 28px;
    font-weight: 400;
}

/* AVATAR */
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #d6dde0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* TEXT */
.review-card p {
    font-size: 1rem;
    margin-bottom: 18px;
}

.review-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.review-text {
    max-width: 85%;
    line-height: 1.7;
}

/* STARS */
.stars {
    color: #ff6b00;
    font-size: 34px;
    margin: 20px 0;
    letter-spacing: 3px;
}

/* FIT */
.fit-area {
    margin-top: 25px;
}

.fit-area span {
    display: block;
    margin-bottom: 12px;
}

.fit-bar {
    width: 100%;
    height: 5px;
    background: #cfcfcf;
    margin-bottom: 20px;
}

.progress-line {
    width: 55%;
    height: 100%;
    background: #000;
}

.date-wrap small {
    display: block;
    margin-bottom: 3px;
    font-size: 16px;
}

.date-wrap span {
    font-size: 18px;
}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* LARGE TABLET */


/* TABLET */


/* MOBILE */


        /* ================= STATS ================= */
        .stat-sec {
    padding: 0;
}

.stats-section {
    background: var(--deep-navy);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px 5%;
}

/* Card */
.stat-card {
    background: var(--bg-color);
    color: var(--deep-navy);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

/* Text */
.stat-card h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--deep-navy);
}

.stat-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--deep-navy);
}

/* Tablet */


/* Mobile */

        


      
.card-img-top {
  height: 260px;
  object-fit: cover;
}




/* ===========================================services Page================================== */
.services-row{
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
}

/* MOBILE RESPONSIVE */




    .section-wrapper-one {
      padding: 60px;
      background-color: var(--off-white);
    }
    .section-wrapper-two {
      padding: 60px;
      background-color: var(--deep-navy);
    }

    /* IMAGE BOX */
    /* PLACEHOLDER IMAGE BOX */
    .image-box {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .image-box img{
        object-fit: cover;
        height: 100%;
    }

    /* OVERLAY */
    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.75);
      opacity: 0;
      visibility: hidden;
      transition: 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      text-align: center;
    }

    .image-box.active .overlay {
      opacity: 1;
      visibility: visible;
    }

    .image-box.active img {
      filter: blur(2px);
    }

    /* BUTTONS */
    .open-btn {
      position: absolute;
      bottom: 15px;
      right: 15px;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      border: none;
      background: #fff;
      font-size: 20px;
      cursor: pointer;
    }

    .close-btn {
      position: absolute;
      bottom: 15px;
      right: 15px;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      border: none;
      background: #fff;
      font-size: 20px;
      cursor: pointer;
    }

    .overlay-content {
      color: #fff;
      max-width: 400px;
    }

    /* QUOTE CARD */
    .quote-card {
      background-color: var(--bg-color);
      border-radius: 15px;
      padding: 40px 0;
      height: 100%;
      padding: 25px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .quote-source {
      margin-top: 20px;
      font-size: 0.9rem;
      color: #555;
    }

    /* Responsive */
    

    /* MOBILE + TABLET */



/* ======================================ESG Page======================================== */
.placeholder-box {
  width: 100%;
  height: 350px;
  background-color: var(--placeholder);
  border-radius: 10px;
  color: #666;
  font-weight: 500;
  font-size: 16px;
}

.process-section {
  background: #f4f4f4;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #ccc;
  transform: translateX(-50%);
}

.circle {
  width: 50px;
  height: 50px;
  border: 2px solid #0A1128;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background: #fff;
  margin: auto;
}

.timeline-icon {
  font-size: 40px;
  color: #c58b5b; /* similar to your design */
}

.uniform-recycling{
    padding-right: 86px;
}

/* Mobile Fix */


.esg-stats {
  background: var(--deep-navy);
  color: white;
}

.onbrand-certification {
    background-color: var(--off-white);
}


    /* ===========================Single News========================================= */


    /* Large image placeholder */
    .placeholder-img-large {
      width: 100%;
      height: 350px;
      background: #e0e0e0;
      border-radius: 10px;
      margin: 20px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #777;
      font-weight: 500;
    }



    /* ===========================Contact Page========================================== */
    .contact-section {
      padding: 60px;
    }

    .contact-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .contact-box {
      padding: 30px;
      border-radius: 12px;
    }

    .form-control {
      height: 50px;
      border-radius: 8px;
    }

    textarea.form-control {
      height: 120px;
    }

    .btn-dark {
      height: 50px;
      border-radius: 8px;
    }

    .contact-info h6 {
      font-weight: 600;
    }

    .contact-info .link {
      text-decoration: none;
      color: var(--deep-navy);
      display: block;
      margin-bottom: 10px;
      transition: 0.3s;
    }

    .contact-info .link:hover {
      color: var(--brand-orange);
    }

    .live-chat-box {
      background: #e0e0e0;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      margin-top: 20px;
      font-weight: bold;
    }

/* =====================footer========================================== */
.footer {
  background: var(--deep-navy);
  padding: 20px 60px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text-light);
}

/* Top bar */
.footer-top {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.footer-top a {
  margin-left: 15px;
  color: var(--text-light);
  text-decoration: none;
}

.footer-top .underline {
  border-bottom: 1px dashed var(--text-light);
}

/* Main */
.footer-main {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
}

/* Footer column */
.footer-main .footer-column {
    width: 100%;
}


@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}
.footer-main h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-main ul {
  list-style: none;
  padding: 0;
}

.footer-main ul li {
  margin-bottom: 8px;
}

.footer-main ul li a {
  text-decoration: none;
  color: var(--text-light);
  transition: 0.2s;
}

.footer-main ul li a:hover {
  opacity: 0.6;
}

/* Bottom */
.footer-bottom {
  margin-top: 30px;
}

.certs {
  display: flex;
  align-items: center;
  gap: 25px;
}

.cert-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cert-box img {
  height: 90px !important;
}

/* Payments */
.payments span {
  margin-right: 10px;
  font-size: 13px;
}

.payments img {
  height: 24px;
  margin-left: 10px;
}

/* Responsive */





/* =======================slider========================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 40px 25px;
}

.view-all {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

/* Carousel */
.carousel-wrapper {
    position: relative;
}

.carousel-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    padding-left: 40px;   /* ✅ initial left margin */
    padding-right: 0;

    transition: padding 0.3s ease;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

/* Card */
.service-card {
    flex: 0 0 auto;
    width: 100%;
    background: #fff;
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.25s ease;
}

.service-card img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.service-card .card-body {
    margin-top: 15px;
    padding: 18px;
}

.service-card .card-title {
    font-size: 18px;
    font-weight: 600;
    height: 90px;
    color: var(--deep-navy);
    /* margin-bottom: 15px !important; */
}
.service-card .read-badge{
    position: relative;
    bottom: 0px;
}
.read-badge {
    display: inline-block;
    background: var(--deep-navy);
    text-decoration: none;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    transition: 0.3s;
}
.read-badge:hover{
    background: var(--light-blue);
    color: var(--deep-navy);
}

.size-guide-link{
    color: var(--deep-navy);
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: none;
    transition: 0.3s;
}

.size-guide-link:hover{
    text-decoration: underline;
    text-underline-offset: 2px;
}

#sizeGuideModal .modal-content{
    border: none;
    border-radius: 18px;
    overflow: hidden;
}

#sizeGuideModal .modal-header{
    background: var(--deep-navy);
    color: var(--text-light);
    padding: 1.2rem 1.5rem;
}

#sizeGuideModal .modal-title{
    font-weight: 600;
    color: white;
}

#sizeGuideModal .btn-close{
    filter: brightness(0) invert(1);
}

#sizeGuideModal .modal-body{
    padding: 2rem;
    background: #fff;
}

#sizeGuideModal h5{
    color: var(--deep-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.onbrand-size-guide-table{
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
}

.onbrand-size-guide-table thead{
    background: var(--deep-navy);
    color: #fff;
}

.onbrand-size-guide-table th{
    padding: 14px;
    border: none;
}

.onbrand-size-guide-table td{
    padding: 14px;
    vertical-align: middle;
    border-color: var(--bg-color);
}

.onbrand-size-guide-table tbody tr:nth-child(even){
    background: #f8f9fa;
}

.onbrand-size-guide-table tbody tr:hover{
    background: rgba(110,196,215,.08);
}

.size-guide-note{
    background: rgba(110,196,215,.12);
    border-left: 4px solid var(--light-blue);
    padding: 20px;
}

.size-guide-note strong{
    color: var(--deep-navy);
}

.size-guide-note ul{
    padding-left: 18px;
}

.size-guide-note li{
    margin-bottom: 8px;
}

@media (max-width:768px){

    #sizeGuideModal .modal-body{
        padding:1.2rem;
    }

    .onbrand-size-guide-table th,
    .onbrand-size-guide-table td{
        white-space: nowrap;
    }

}
/* =======================================WooCommerce ================= */

.woocommerce .woocommerce-ordering{
    margin-bottom: 0;
}
.orderby{
    border: none;
    font-size: 0.9rem;
}

/* Hide size row */
.onbrand-hidden-variation-form table.variations tr:not(:first-child) {
    display: none;
}

/* Hide WooCommerce quantity and add to basket inside variation form */
.onbrand-hidden-variation-form .woocommerce-variation-add-to-cart,
.onbrand-hidden-variation-form .single_variation_wrap,
.onbrand-hidden-variation-form .quantity {
    display: none !important;
}

/* Optional: hide labels/reset link */
.onbrand-hidden-variation-form table.variations th.label,
.onbrand-hidden-variation-form .reset_variations {
    display: none !important;
}

/* Make colour swatches look clean */
.onbrand-hidden-variation-form table.variations {
    margin-bottom: 0;
}

.onbrand-hidden-variation-form .variable-items-wrapper {
    gap: 10px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt{
    background-color: var(--deep-navy) !important; 
    color: white; 
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 1.1rem;
    transition: 0.3s;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover{
    background-color: var(--light-blue) !important;
    color: var(--deep-navy) !important;
    border-color: var(--light-blue) !important;
}
.form-control {
    height: 100%;
    border-radius: 0;
}


/* ==========================================================
   ONBRAND CART
========================================================== */
.wc-block-components-quantity-selector__button {
    display: none !important;
}

.wc-block-components-quantity-selector {
    border: 0 !important;
    width: auto !important;
}

.wc-block-components-quantity-selector__input {
    pointer-events: none !important;
    border: 0 !important;
    width: 40px !important;
    appearance: textfield;
}

.wc-block-components-quantity-selector__input::-webkit-inner-spin-button,
.wc-block-components-quantity-selector__input::-webkit-outer-spin-button {
    display: none;
}

.wc-block-components-quantity-selector {
    display: block;
    border: 0 !important;
    margin-top: 8px;
}

.wc-block-components-quantity-selector::before {
    content: "Total quantity: ";
    font-weight: 600;
    margin-right: 5px;
}

.wc-block-components-quantity-selector__input {
    display: inline;
    pointer-events: none !important;
    border: 0 !important;
    background: transparent !important;
    width: 30px !important;
    padding: 0;
    appearance: textfield;
}

.wc-block-cart{
    max-width: 1320px;
    margin: 80px auto;
}

/* Headings */

.wc-block-cart h2,
.wc-block-cart h3,
.wc-block-components-title{
    color: var(--deep-navy);
    font-weight: 700;
}

/* Product row */

.wc-block-cart-items__row{
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}


.wc-block-components-product-name{
    color: var(--deep-navy);
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    text-decoration: none;
}

.wc-block-components-product-name:hover{
    color: var(--brand-orange);
}
.wc-block-cart-item__quantity{
    justify-content: space-between;
    width: 100%;
}

/* Price */

.wc-block-components-product-price,
.wc-block-formatted-money-amount{
    color: var(--deep-navy);
    font-weight: 600;
}
.wc-block-components-product-details.wc-block-components-product-details {
    font-size: 0.8rem !important;
    color: var(--deep-navy);
    display: flex;
    flex-direction: column;
}


.wc-block-components-product-details li{
    margin-bottom: 6px;
}
.woocommerce-cart table.cart img{
    width: 50% !important;
}

/* ==========================================================
   Quantity
========================================================== */

.onbrand-size-table th {
    padding: 12px 18px;
    min-width: 60px;
    white-space: nowrap;
}

.onbrand-size-table .total-header {
    min-width: 80px;
}

.wc-block-components-quantity-selector{
    display:flex;
    align-items:center;
    gap:8px;
    border:none !important;
    margin-top:15px;
}

.wc-block-components-quantity-selector::before{
    content:"Total quantity:";
    font-weight:600;
    color:var(--deep-navy);
}

.wc-block-components-quantity-selector__button{
    display:none !important;
}

.wc-block-components-quantity-selector__input{
    border:none !important;
    background:transparent !important;
    pointer-events:none !important;
    width:35px !important;
    padding:0;
    font-weight:700;
    color:var(--brand-orange);
    appearance:textfield;
}

.wc-block-components-quantity-selector__input::-webkit-inner-spin-button,
.wc-block-components-quantity-selector__input::-webkit-outer-spin-button{
    display:none;
}

/* Remove button */

.wc-block-cart-item__remove-link{
    color:#999;
    transition:.3s;
}

.wc-block-cart-item__remove-link:hover{
    color:#dc3545;
}


/* ==========================================================
   Order Summary
========================================================== */

.wc-block-cart__sidebar{
    background: var(--bg-color);
    border:1px solid var(--deep-navy);
    padding:30px;
}
.wc-block-components-text-input input[type=text]:focus{
    border: 1px solid var(--deep-navy);
}
.wc-block-components-totals-wrapper{
    border:none;
}

.wc-block-components-totals-item{
    padding:15px 0;
}

.wc-block-components-totals-item__label{
    color:var(--deep-navy);
    font-weight:600;
}

.wc-block-components-totals-item__value{
    color:var(--brand-orange);
    font-weight:700;
}

/* Divider */

.wc-block-components-totals-item,
.wc-block-components-totals-footer-item{
    border-color:#ececec;
}

/* ==========================================================
   Checkout Button
========================================================== */
.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button{
    background:var(--deep-navy) !important;
    color:#fff !important;
    border-radius:50px !important;
    border:none !important;
    padding:10px 25px !important;
    font-size:1.05rem !important;
    font-weight:500 !important;
    transition:.3s;
}
.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover{
    background:var(--light-blue) !important;
    color:var(--deep-navy) !important;
}

/* ==========================================================
   Coupon
========================================================== */

.wc-block-components-panel{
    border-radius:12px;
    overflow:hidden;
    margin-bottom:25px;
}

.wc-block-components-panel__button{
    padding:18px;
    color:var(--deep-navy);
    font-weight:600;
}

.wc-block-components-text-input input{
    border:1px solid #ced4da;
    border-radius:8px;
}

.wc-block-components-button{
    border-radius:30px;
}
.wp-block-woocommerce-cart-items-block{
    background: white !important;
}
/* ------------------------------------ */
.onbrand-cart-icon{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.onbrand-cart-count{
    position:absolute;
    top:-8px;
    right:-10px;

    width:20px;
    height:20px;

    border-radius:50%;
    background:var(--brand-orange);
    color:#fff;

    font-size:11px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    line-height:1;
}

/* ==========================================================
   Checkout Layout
========================================================== */
.wc-block-components-sidebar-layout .wc-block-components-main{
    padding: 30px;
    background: var(--bg-color);
}
.wc-block-components-form .wc-block-components-text-input input, .wc-blocks-components-select .wc-blocks-components-select__select{
    border: none !important;
    border-bottom: 1px solid var(--placeholder-border) !important;
    background: transparent !important;
    border-radius: 0 !important;
}
.woocommerce-checkout .col2-set{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

    margin-bottom:50px;

}

.woocommerce-billing-fields,
.woocommerce-shipping-fields{

    padding-bottom:40px;
    margin-bottom:40px;

    border-bottom:1px solid var(--placeholder-border);

}

#order_review_heading{

    padding-bottom:25px;
    margin-bottom:30px;

    border-bottom:1px solid var(--placeholder-border);

}

.subscription-form form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.subscription-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    height: 48px;
    border-radius: 0;
    border: 0;
    padding: 0 15px;
}

.subscription-form input[type="submit"] {
    height: 48px;
    border: 0;
    padding: 0 30px;
    cursor: pointer;
}

/* =====================================
   WooCommerce Order Received Page
======================================*/

body.woocommerce-order-received{
    background: var(--bg-color);
}

/* Main container */

.woocommerce-order{
    margin:60px auto;
    background:#fff;
    border-radius:15px;
    padding:50px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

/* Thank You title */

.woocommerce-order h2,
.woocommerce-order h3{
    color:var(--deep-navy);
    font-weight:700;
}
.woocommerce ul.order_details::before {
    content: none !important;
}

/* Green Success Message */

.woocommerce-notice--success,
.woocommerce-thankyou-order-received{

    background: #f6e5e7cf;
    border-left:6px solid var(--brand-orange);
    color: var(--brand-orange);
    padding:18px 25px;
    font-size:20px;
    font-weight:600;
    margin-bottom:35px;

}

/* Order Overview */

.woocommerce-order-overview{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;

    list-style:none;
    padding:0;
    margin:40px 0;
}
.woocommerce-table .product-name{
    margin-bottom: 0;
    font-size: 1rem;
}

.woocommerce-order-overview li{

    padding:20px;
    border-radius:12px;
}

.woocommerce-order-overview strong{

    display:block;
    color:var(--deep-navy);
    margin-top:10px;
    font-weight: 600;

}

/* Order Details */

.woocommerce-table{

    width:100%;
    border-collapse:collapse;
    margin-top:25px;

}

.woocommerce-table th{

    background:var(--deep-navy);
    color:#fff;
    padding:16px;
    font-weight:600;

}

.woocommerce-table td{

    padding:16px;
    border-bottom:1px solid #ececec;

}

.woocommerce-table tfoot th{

    background:#f8f8f8;
    color:var(--deep-navy);

}

.woocommerce-table tfoot td{

    font-weight:600;
    color:var(--brand-orange);

}

/* Addresses */

.woocommerce-customer-details{
    padding-top: 0;
    margin-top:45px;

}
.woocommerce .woocommerce-order-details{
    padding-top: 0;
}

.woocommerce-column{

    background:#f9f9f9;
    padding:25px;
    border-radius:14px;
    border:1px solid #ececec;

}

/* Buttons */

.woocommerce-button,
.button{

    background:var(--brand-orange)!important;
    color:#fff!important;
    padding:14px 28px!important;
    border-radius:8px!important;
    border:none!important;
    transition:.3s;

}

.woocommerce-button:hover,
.button:hover{

    background:var(--deep-navy)!important;

}

/* Links */

.woocommerce a{

    text-decoration:none;
}

.woocommerce a:hover{

    color:var(--deep-navy);

}

/* Responsive */

@media(max-width:768px){

    .woocommerce-order{

        padding:25px;
        margin:20px;

    }

    .woocommerce-order-overview{

        grid-template-columns:1fr;

    }

}

/* ==========================================================
   Mobile
========================================================== */

@media(max-width:768px){

    .wc-block-cart{
        margin:40px auto;
    }

    .wc-block-cart__sidebar{
        margin-top:40px;
        padding:20px;
    }

    .wc-block-components-product-name{
        font-size:1rem;
    }

}

/* ========================================================================= */
/* RESPONSIVE STYLES */
/* ========================================================================= */

@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
      display: block;
    }

    .dropdown-submenu:hover > .dropdown-menu {
      display: block;
    }
}

@media (max-width: 1199px) {
    .review-card h4 {
        font-size: 38px;
    }

    .review-header span {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .grid-sec {
        padding: 50px 4%;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
    .content-inner {
    padding: 40px;
    text-align: center;
  }

  .home-cta-content h1 {
    font-size: 36px;
  }
    .stats-section {
        padding: 30px 4%;
        gap: 15px;
    }

    .stat-card h2 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .dropdown-submenu .dropdown-menu {
    position: static;
    margin-left: 1rem;
    border: none;
    box-shadow: none;
    display: none; /* hide by default */
  }

  .dropdown-submenu .dropdown-menu.show {
    display: block; /* show when toggled */
  }

     .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  } 
    .navbar-brand {
        margin-right: 0;
    }
    .env-strip-title {
        padding-right: 30px;
    }
    .env-strip-text {
        font-size: 1.1rem;
        padding-left: 30px;
    }
    .advantage-row, .advantage-row:nth-child(even) {
        flex-direction: column;
        padding: 60px 0;
    }
    .advantage-cont {
        padding: 40px 24px 0;
        text-align: center;
    }
    .advantage-hero h1 {
        font-size: 3rem;
    }
    .advantage-accent-bar {
        margin: 0 auto 20px;
    }
    .add-to-cart-sticky {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 15px;
        box-shadow: 0 -10px 20px rgba(0,0,0,0.05);
        z-index: 1050;
    }
    .review-wrapper {
        padding: 0 20px;
    }

    .review-slide {
        flex: 0 0 100%;
    }

    .review-card {
        min-height: auto;
    }

    .review-card h4 {
        font-size: 34px;
    }

    .review-text {
        max-width: 100%;
    }

    .arrow {
        width: 45px;
        height: 45px;
    }
    .row.align-items-stretch {
        display: flex;
        flex-direction: column;
    }

    /* Content First */
    .quote-card,
    .advantage-content {
        order: 1;
    }

    /* Image Second */
    .image-box,
    .image-card {
        order: 2;
    }

    .quote-card {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 100px;
        padding-right: 20px;
        text-align: left !important;
        margin-bottom: 60px;
    }
    
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        align-items: flex-start;
        padding-left: 60px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-number {
        left: 7.5px !important;
        right: auto !important;
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 768px) {
    .hero-title{
        font-size: 2.5rem;
    }
    .hero-section{
        height: 40vh !important;
        margin-top: 120px;
    }
    .hero{
        height: 55vh !important;
        margin-top: 120px;
    }
    .hero .hero-img{
        object-position: right;
    }
    .review-card {
        width: 100% !important;
    }
    .env-hero {
        padding: 120px 0 80px;
    }
    .env-intro {
        padding: 60px 20px;
    }
    .env-intro h2 {
        font-size: 1.6rem;
    }
    .env-strip-content {
        flex-direction: column;
        text-align: center;
    }
    .env-strip-title {
        text-align: center;
        border-right: none;
        border-bottom: 2px solid rgba(255,255,255,0.4);
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
        width: 100%;
    }
    .env-strip-text {
        padding-left: 0;
        text-align: center;
    }
    .login-form-container {
        padding: 40px 30px;
    }
    .about-hero h1 {
        font-size: 2.5rem;
    }
    .text-sec {
        padding: 30px;
    }

    .feature-sec img {
        height: 300px; /* fixed height for mobile */
    }
     .image-placeholder {
        max-width: 100%;
    }
    .filter-topbar .d-flex {
overflow-x: auto;
white-space: nowrap;
padding-bottom: 5px;
}
.filter-item-dropdown {
display: inline-block;
}
    .mySlider-wrapper .custom-next,
    .mySlider-wrapper .custom-prev {
        width: 35px;
        height: 35px;
    }
    .mySlider-wrapper .custom-next::after,
    .mySlider-wrapper .custom-prev::after {
        font-size: 1rem;
    }
    .home-cta-image img {
    min-height: 300px;
  }

    section, .section-wrapper-one, .section-wrapper-two {
        padding: 24px !important;
    }
  .content-inner, .impact-section, .sec-three {
    padding: 60px 24px !important;
  }

  .home-cta-content h1 {
    font-size: 28px;
  }
  #shop, #single-product{
    padding: 0 24px;
  }
  #single-product .title{
    font-size: 1.4rem;
  }
    .image-placeholder {
    min-height: 300px;
  }
    .advantage-row .container {
        flex-direction: column;
    }

    /* Show content first */
    .advantage-content {
        order: 1 !important;
        margin-bottom: 20px;
    }

    /* Show image second */
    .advantage-image-wrap {
        order: 2 !important;
    }

    .advantage-placeholder {
        width: 100%;
    }
    .quote-text {
        font-size: 1.4rem;
      }

      .quote-card {
        padding: 25px;
      }
    .timeline-line {
    left: 20px;
  }

  .circle {
    margin: 0;
  }

  .timeline-item {
    position: relative;
    padding-left: 40px;
  }
    .footer {
    padding: 20px;
  }

  .footer-top {
    text-align: center;
  }

  .footer-main {
    text-align: left;
  }

  .certs {
    justify-content: center;
  }

  .payments {
    text-align: center !important;
    margin-top: 10px;
  }
    .hero h1 {
        font-size: 2.5rem;
        padding-top: 30px;
    }
}

@media (max-width: 576px) {
    .grid-sec {
        padding: 40px 20px;
    }
    .dropdown-item{
        font-size: 14px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
    .impact-grid {
    grid-template-columns: 1fr;
  }
  .breadcrumb{
    padding: 0 24px !important;
  }
  .hero-section{
        height: 30vh !important;
        margin-top: 120px;
    }
    .hero-title{
        font-size: 2rem !important;
    }
    .review-section {
        padding: 50px 0;
    }
     .footer-main{
        flex-direction: column;
     }

    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
        padding: 0 30px;
    }

    .review-wrapper {
        padding: 0 15px;
    }

    .review-slider {
        gap: 20px;
    }

    .review-card {
        padding: 22px;
    }

    .review-header span {
        font-size: 20px;
    }

    .avatar {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .review-card p {
        font-size: 16px;
    }

    .review-card h4 {
        font-size: 28px;
    }

    .stars {
        font-size: 26px;
    }

    .arrow {
        display: none;
    }
    .stats-section {
        padding: 20px;
        grid-template-columns: 1fr;
    }

    .stat-card {
        text-align: center;
    }

    .stat-card h2 {
        font-size: 22px;
    }
    .section-padding {
        padding: 60px 24px;
    }
}

