body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Global container max-width constraint for all pages */
.container {
    max-width: 1420px !important;
}

/* Alternative container class for pages that need the constraint */
.container-1420 {
    max-width: 1120px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

/* Global section container for consistent 1420px max-width */
.section-container {
    max-width: 1420px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

/* Responsive adjustments for global containers */
@media (max-width: 1440px) {
    .container,
    .container-1420,
    .section-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .container,
    .container-1420,
    .section-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #2c3e50;
}
.custom-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

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

  .text-overlay {
    position: absolute;
    left: 5%;
    bottom: 10%;
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 500px;
  }

  .text-overlay h5 {
    color: #a78b4b;
    letter-spacing: 1px;
    font-weight: 500;
  }
  
  .carousel {
    height: 100px;
  }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

#heroCarousel {
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: relative;
  z-index: 1;
  height: 80vh; /* Reduced height to prevent overlay */
}

/* Ensure carousel has proper height and accounts for navbar */
.carousel-item {
    height: 80vh !important;
    position: relative;
}

.carousel-slide-bg {
    height: 80vh !important;
    width: 100%;
    position: relative;
}

.carousel-box {
  background-color: red;
  transform: skew(-11deg);
  width: 100px;
  height: 100px;
}

/* Carousel content styling */
.carousel-content {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
    color: white;
    text-align: left;
    z-index: 10;
}

.carousel-main-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.carousel-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.carousel-btn {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: white;
    color: #333;
    text-decoration: none;
}

/* Carousel indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: auto;
    width: auto;
    display: flex;
    justify-content: flex-end;
    padding-left: 0;
    margin-right: 0;
    list-style: none;
}


.carousel-indicators [data-bs-target] {
    background-color: white;
    opacity: 0.7;
    margin: 0 4px;
}

.carousel-indicators .active {
    opacity: 1;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 100%;
    filter: invert(0);
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='m3.86 8.753 5.482 4.796c.646.566 1.658.106 1.658-.753V3.204a1 1 0 0 0-1.659-.753l-5.48 4.796a1 1 0 0 0 0 1.506z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/%3e%3c/svg%3e");
}

/* Solution Section Styles */
.solution-section {
    background-color: #f5f1e8;
    color: #1e3a5f;
}

.solution-title {
    font-size: 2rem;
    font-weight: 400;
    color: #1e3a5f;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.solution-description {
    
    line-height: 1.6;
    color: #1e3a5f;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.solution-icons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.solution-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.solution-icon-circle {
    width: 120px;
    height: 120px;
    background-color: #1e3a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-icon-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.3);
}

.solution-icon-label {
    font-size: 1rem;
    font-weight: 500;
    color: #1e3a5f;
    margin: 0;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .solution-icons-container {
        justify-content: center;
        gap: 2rem 1rem;
    }
    
    .solution-icon-item {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 576px) {
    .solution-title {
        font-size: 2rem;
    }
    
    .solution-description {
        font-size: 1rem;
    }
    
    .solution-icons-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .solution-icon-item {
        flex: none;
        max-width: none;
    }
    
    .solution-icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .solution-icon-circle svg {
        width: 50px;
        height: 50px;
    }
}

/* Product Categories Section Styles */
.product-categories-section {
    background-color: #ffffff;
    color: #333;
}

.product-categories-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.product-categories-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* New horizontal product card styles */
.product-card-horizontal {
    margin: auto;
    overflow: hidden;
    position: relative;
    min-height: 400px; /* Updated to requested height */
    width: 301px; /* Updated to requested width */
    display: flex;
    flex-direction: column;
    background: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image container - takes most of the card space */
.product-card-horizontal .product-card-image-container {
    position: relative;
    flex: 1;
    overflow: hidden;
    max-height: 380px;
    padding: 30px;
    
     /* Adjusted for new card height (378px - 80px footer) */
}

.product-card-horizontal .product-card-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Blue overlay - hidden by default, covers entire card on hover */
.product-card-horizontal .product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; /* Cover entire card including footer */
    background: #ff5252;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-card-horizontal:hover .product-card-overlay {
    opacity: 0.7; /* Reduced opacity for better visibility */
}

/* Overlay content */
.product-card-horizontal .product-card-overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 280px;
}

.product-card-horizontal .product-card-subtitle {
    
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: white;
}

.product-card-horizontal .product-card-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: transparent;
    text-transform: uppercase;
}

.product-card-horizontal .product-card-btn:hover {
    background: white;
    color: #4a6fa5;
    text-decoration: none;
}

/* Footer with title - always visible */
.product-card-horizontal .product-card-footer {
    position: relative;
    padding: 1rem 1.5rem;
    text-align: center;
    background: white;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Lower z-index so overlay can cover it */
}

.product-card-horizontal .product-card-title {
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10; /* Much higher z-index to stay above overlay */
}

/* Title color change on hover - make it white and bold for better visibility */
.product-card-horizontal:hover .product-card-title {
    color: white;
    /* Removed font-size change to prevent growing effect */
}

/* About Us Section Styles */
.about-us-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #f5f1e8;
}

.about-us-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-us-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.7);
}

.about-us-text-overlay {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-us-title {
    color: #1e3a5f;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-us-subtitle {
    color: #a78b4b;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-us-description {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify;
}

.about-us-btn {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #1e3a5f;
    text-decoration: none;
    border: 2px solid #1e3a5f;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.about-us-btn:hover {
    background: #1e3a5f;
    color: white;
    text-decoration: none;
}

/* Features Section Styles */
.features-section {
    background-color: #f5f1e8;
    color: #1e3a5f;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1e3a5f;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.features-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: translateY(-5px);
}

.feature-icon svg {
    width: 80px;
    height: 80px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1e3a5f;
    margin: 0;
    text-align: center;
}

/* Additional styles for horizontal product cards section */
.product-categories-section {
  
    background-color: #ffffff;
}

.product-categories-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-categories-description {
    font-size: 0.9rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.product-card-horizontal {
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
    margin-bottom: 20px;
}

.product-card-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-horizontal:hover .product-card-main-image {
    transform: scale(1.1);
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}



.product-card-overlay-content {
    text-align: center;
    padding: 1.5rem;
    color: white;
}

.product-card-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-card-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.product-card-btn:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
}

.product-card-footer {
    padding: 1.5rem;
    text-align: center;
}


/* Responsive adjustments for features section */
@media (max-width: 1200px) {
    .features-container {
        justify-content: center;
        gap: 2rem 1.5rem;
    }
    
    .feature-item {
        flex: 0 0 calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .product-categories-title {
        font-size: 2.2rem;
    }
    
    .product-categories-description {
        font-size: 1rem;
    }
    
    .product-card-horizontal {
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .features-title {
        font-size: 2rem;
    }
    
    .features-container {
        gap: 2rem 1rem;
    }
    
    .feature-item {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .features-title {
        font-size: 1.8rem;
    }
    
    .features-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .feature-item {
        flex: none;
        max-width: none;
        min-width: auto;
    }
    
    .feature-title {
        
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

/* Process Steps Section Styles */
.process-steps-section {
    background-color: #ffffff;
    color: #1e3a5f;
}

.process-steps-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1e3a5f;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.process-steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 180px;
    position: relative;
}

.process-step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: #a78b4b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
}

.process-step-icon {
    width: 100px;
    height: 100px;
    background-color: #f5f1e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e0e0e0;
}

.process-step-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.15);
}

.process-step-icon svg {
    width: 60px;
    height: 60px;
}

.process-step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-step-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
    text-align: center;
    max-width: 160px;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    margin-top: 50px;
}

.process-arrow svg {
    opacity: 0.7;
}

/* Responsive adjustments for process steps section */
@media (max-width: 1200px) {
    .process-steps-container {
        gap: 0.5rem;
    }
    
    .process-step-item {
        flex: 0 0 160px;
    }
    
    .process-step-description {
        max-width: 140px;
    }
}

@media (max-width: 992px) {
    .process-steps-title {
        font-size: 2rem;
    }
    
    .process-steps-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .process-step-item {
        flex: none;
    }
    
    .process-step-icon {
        width: 80px;
        height: 80px;
    }
    
    .process-step-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .process-steps-title {
        font-size: 1.8rem;
    }
    
    .process-step-title {
        font-size: 1.2rem;
    }
    
    .process-step-description {
        font-size: 0.9rem;
        max-width: 200px;
    }
    
    .process-step-number {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
}

/* Responsive adjustments for about us section */
@media (max-width: 992px) {
    .about-us-section {
        height: 80vh;
    }
    
    .about-us-image-container {
        width: 55%;
    }
    
    .about-us-text-overlay {
        max-width: 450px;
        padding: 2.5rem;
    }
    
    .about-us-title {
        font-size: 2rem;
    }
    
    .about-us-subtitle {
        font-size: 1.2rem;
    }
}

/* Notre Expertise Page Styles */
.expertise-hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 100px 0 80px 0;
    text-align: center;
}

.expertise-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.expertise-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.expertise-about-section {
    background-color: #ffffff;
}

.expertise-section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1e3a5f;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.expertise-section-description {
    
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.expertise-text {
    
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.expertise-features-section {
    background-color: #ffffff;
}

.expertise-feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.expertise-feature-icon {
    width: 80px;
    height: 80px;
    background-color: #f5f1e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: transform 0.3s ease;
}

.expertise-feature-card:hover .expertise-feature-icon {
    transform: scale(1.1);
}

.expertise-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.expertise-feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.expertise-cta-section {
    background: linear-gradient(135deg, #a78b4b 0%, #8b7355 100%);
    color: white;
}

.expertise-cta-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.expertise-cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.expertise-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #a78b4b;
    text-decoration: none;
    border-radius: 5px;
    
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.expertise-cta-btn:hover {
    background-color: transparent;
    color: white;
    text-decoration: none;
}

/* Responsive adjustments for expertise page */
@media (max-width: 992px) {
    .expertise-hero-title {
        font-size: 2rem;
    }
    
    .expertise-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .expertise-section-title {
        font-size: 2rem;
    }
    
    .expertise-feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .expertise-hero-section {
        padding: 80px 0 60px 0;
    }
    
    .expertise-hero-title {
        font-size: 2.2rem;
    }
    
    .expertise-hero-subtitle {
        
    }
    
    .expertise-section-title {
        font-size: 1.8rem;
    }
    
    .expertise-text {
        font-size: 1rem;
    }
    
    .expertise-cta-title {
        font-size: 2rem;
    }
    
    .expertise-cta-description {
        
    }
}

@media (max-width: 768px) {
    .about-us-section {
        height: auto;
        min-height: 70vh;
        flex-direction: column;
        position: relative;
    }
    
    .about-us-image-container {
        position: relative;
        width: 100%;
        height: 40vh;
        order: 1;
    }
    
    .about-us-text-overlay {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        max-width: none;
        width: 100%;
        margin: -50px 0 0 0;
        padding: 2rem;
        order: 2;
        z-index: 10;
    }
    
    .about-us-title {
        font-size: 1.8rem;
    }
    
    .about-us-subtitle {
        
    }
    
    .about-us-description {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .about-us-section {
        min-height: 60vh;
    }
    
    .about-us-image-container {
        height: 35vh;
    }
    
    .about-us-text-overlay {
        padding: 1.5rem;
        margin: -30px 1rem 0 1rem;
    }
    
    .about-us-title {
        font-size: 1.6rem;
    }
    
    .about-us-subtitle {
        font-size: 1rem;
    }
    
    .about-us-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .about-us-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Responsive adjustments for product categories */
@media (max-width: 992px) {
    .product-categories-title {
        font-size: 2rem;
    }
    
    .product-card-horizontal {
        height: 260px;
    }
    
    .product-card-horizontal .product-card-image-container {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .product-categories-title {
        font-size: 1.8rem;
    }
    
    .product-categories-description {
        font-size: 1rem;
    }
    
    .product-card-horizontal {
        height: 240px;
        margin-bottom: 2rem;
    }
    
    .product-card-horizontal .product-card-image-container {
        height: 160px;
    }
    
    .product-card-horizontal .product-card-overlay-content {
        padding: 1.5rem;
    }
    
    .product-card-horizontal .product-card-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .product-card-horizontal .product-card-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
}

@media (max-width: 576px) {
    .product-card-horizontal {
        height: 220px;
    }
    
    .product-card-horizontal .product-card-image-container {
        height: 140px;
    }
    
    .product-card-horizontal .product-card-footer {
        height: 80px;
        padding: 0.8rem 1rem;
    }
}

/* WIESHEU Product Page Styles */
.breadcrumb-section {
    padding: 2rem 0;
    background-color: #fff;
}

.wiesheu-breadcrumb .breadcrumb {
    margin-bottom: 0;
    font-size: 0.9rem;
    padding: 0;
    background: transparent;
}

.wiesheu-breadcrumb .breadcrumb-item {
    color: #6c757d;
    font-size: 0.9rem;
}

.wiesheu-breadcrumb .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.wiesheu-breadcrumb .breadcrumb-item a:hover {
    color: #6c757d;
    text-decoration: none;
}

.wiesheu-breadcrumb .breadcrumb-item.active {
    color: #000;
    font-weight: 500;
}

.wiesheu-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 0.75rem;
    color: #6c757d;
}

.product-main-section {
    padding: 2rem 0 4rem 0;
}

.product-image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.product-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-details-section {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-main-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    font-weight: 200;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.product-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.product-features-list {
    margin-bottom: 2rem;
}

.feature-item {
    
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-checkmark {
    color: #4A6FA5;
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.5;
}

.feature-text {
    color: #333;
}

.product-description-text {
    
    color: #555;
    line-height: 1.6;
    margin-top: 3rem;
}

.product-secondary-features {
    margin-top: 3rem;
}

.secondary-features-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Produits Page Styles */
.produits-hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 100px 0 80px 0;
    text-align: center;
}

.produits-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.produits-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.produits-categories-section {
    background-color: #ffffff;
}

.produits-category-card {
    background: white;
 
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.produits-category-image {
    height: 200px;
    overflow: hidden;
}

.produits-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produits-category-card:hover .produits-category-image img {
    transform: scale(1.05);
}

.produits-category-content {
    padding: 2rem;
}

.produits-category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.produits-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.produits-category-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.produits-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.produits-category-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.produits-category-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #a78b4b;
    font-weight: bold;
}

.produits-category-list li:last-child {
    border-bottom: none;
}

.produits-distribution-section {
     background-color: #ffffff;
}

.produits-section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1e3a5f;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.produits-text {
    
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.produits-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.produits-feature-list li {
    padding: 0.75rem 0;
    color: #555;
    
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.produits-feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a78b4b;
    font-weight: bold;
    font-size: 1.2rem;
}

.produits-feature-list li:last-child {
    border-bottom: none;
}

.produits-cta-section {
    background: linear-gradient(135deg, #a78b4b 0%, #8b7355 100%);
    color: white;
}

.produits-cta-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.produits-cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.produits-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #a78b4b;
    text-decoration: none;
    border-radius: 5px;
    
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.produits-cta-btn:hover {
    background-color: transparent;
    color: white;
    text-decoration: none;
}

/* Responsive adjustments for produits page */
@media (max-width: 992px) {
    .produits-hero-title {
        font-size: 2rem;
    }
    
    .produits-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .produits-section-title {
        font-size: 2rem;
    }
    
    .produits-category-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .produits-hero-section {
        padding: 80px 0 60px 0;
    }
    
    .produits-hero-title {
        font-size: 2.2rem;
    }
    
    .produits-hero-subtitle {
        
    }
    
    .produits-section-title {
        font-size: 1.8rem;
    }
    
    .produits-text {
        font-size: 1rem;
    }
    
    .produits-cta-title {
        font-size: 2rem;
    }
    
    .produits-cta-description {
 
    }
    
    .produits-category-image {
        height: 150px;
    }
}


.product-hero-breadcrumb .breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.product-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.6);
    padding: 0 0.5rem;
}

/* Legacy breadcrumb styles for other pages */
.breadcrumb-nav {
    padding: 1rem 0;
    background-color: #f8f8f8;
}

.breadcrumb {
    margin-bottom: 0;
    font-size: 0.9rem;

}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #6c757d;
    text-decoration: none;
}

.page-container {
    max-width: 80%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}