/****** slider start *****/
/****** Enhanced Slider Styles *****/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --durawell-orange: #ffa621;
    --dark-color: #1A1A1A;
    --light-color: #FFFFFF;
    --accent-red: #FF5533;
    --light-gray: #f5f5f5;
    --medium-gray: #dddddd;
    --hover-orange: #e58f00;
}

body {
    overflow-x: hidden;
}

.slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    border-bottom: 4px solid var(--durawell-orange);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    padding: 0 60px;
    max-width: 650px;
    color: var(--light-color);
    z-index: 2;
    position: relative;
    transform: translateY(0);
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 45px; /* Increased for better spacing */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    position: relative;
    color: var(--light-color);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.slide-title::after {
    content: '';
    position: absolute;
    bottom: -22px; /* Adjusted for better spacing */
    left: 0;
    width: 100px;
    height: 5px;
    background-color: var(--durawell-orange);
    box-shadow: 0 2px 6px rgba(255, 166, 33, 0.4);
    border-radius: 3px;
}

/* Removed .slide-description as per requirement */

.slide-btn {
    display: inline-block;
    padding: 16px 32px;
    margin-top: 10px; /* Added for better spacing */
    background: linear-gradient(135deg, var(--durawell-orange) 0%, var(--hover-orange) 100%);
    color: var(--light-color);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    letter-spacing: 1px;
    font-size: 16px;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: left 0.6s;
}

.slide-btn:hover {
    background: linear-gradient(135deg, var(--dark-color) 0%, rgba(45, 45, 45, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.slide-btn:hover::before {
    left: 100%;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    border: 2px solid transparent;
}

.slider-dot:hover {
    transform: scale(1.2);
}

.slider-dot.active {
    background-color: var(--durawell-orange);
    transform: scale(1.3);
    border-color: var(--light-color);
    box-shadow: 0 0 10px rgba(255, 166, 33, 0.5);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--dark-color) 0%, rgba(45, 45, 45, 1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    font-size: 26px;
    color: var(--light-color);
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    opacity: 0.85;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, var(--durawell-orange) 0%, var(--hover-orange) 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 1;
}

.prev-arrow {
    left: 25px;
}

.next-arrow {
    right: 25px;
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 46px;
        margin-bottom: 40px;
    }
    
    .slider {
        height: 550px;
    }
    
    .slide-content {
        padding: 0 50px;
        max-width: 600px;
    }
    
    .slide-title::after {
        bottom: -20px;
    }
}

@media (max-width: 1024px) {
    .slide-title {
        font-size: 40px;
        margin-bottom: 38px;
    }
    
    .slider {
        height: 500px;
    }
    
    .slide-content {
        padding: 0 40px;
    }
    
    .slide-title::after {
        bottom: -18px;
    }
}

@media (max-width: 768px) {
    .slider {
        height: 450px;
    }
    
    .slide-content {
        padding: 0 35px;
        max-width: 90%;
    }
    
    .slide-title {
        font-size: 34px;
        margin-bottom: 35px;
    }
    
    .slide-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .slide-title::after {
        bottom: -16px;
        width: 90px;
    }
}

@media (max-width: 576px) {
    .slider {
        height: 400px;
    }
    
    .slide-content {
        padding: 0 25px;
        max-width: 100%;
    }
    
    .slide-title {
        font-size: 30px;
        margin-bottom: 32px;
    }
    
    .slide-title::after {
        width: 80px;
        height: 4px;
        bottom: -15px;
    }
    
    .slide-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 350px;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .slide-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .slide-btn {
        padding: 10px 20px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
        opacity: 0.7;
    }
    
    .prev-arrow {
        left: 15px;
    }
    
    .next-arrow {
        right: 15px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-nav {
        bottom: 30px;
        gap: 10px;
    }
    
    .slide-title::after {
        bottom: -14px;
    }
}

@media (max-width: 380px) {
    .slider {
        height: 320px;
    }
    
    .slide-title {
        font-size: 24px;
        margin-bottom: 28px;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-title::after {
        width: 70px;
        bottom: -13px;
    }
}
/****   slider end    ****/

/**********     product start       **********/
body {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="%230099cc" opacity="0.05"/><path d="M20 70 L70 20 L120 70 L70 120 Z" fill="%23ffa500" opacity="0.05"/><path d="M30 40 L40 30 L50 40 L40 50 Z" fill="%230099cc" opacity="0.03"/><path d="M60 70 L70 60 L80 70 L70 80 Z" fill="%23ffa500" opacity="0.03"/></svg>'),
    linear-gradient(170deg, rgba(0,153,204,0.05) 0%, rgba(255,165,0,0.05) 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.dw-products-section {
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.dw-section-title-container {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 40px;
    position: relative;
}

.dw-section-title {
    color: #0099cc;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.dw-section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--durawell-blue), var(--durawell-orange));
    border-radius: 3px;
}

.dw-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.dw-product-box {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    height: 320px; /* Decreased from 350px */
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
    display: block;
    background: white;
}

.dw-product-box:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 30px rgba(0,153,204,0.2), 0 10px 15px rgba(255,165,0,0.1);
    border: 1px solid #0099cc;
}

.dw-product-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,153,204,0.05) 0%, rgba(255,165,0,0.05) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dw-product-box:hover::before {
    opacity: 1;
}

.dw-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease, transform 0.8s ease;
}

.dw-product-box:hover .dw-product-image {
    filter: brightness(18%);
    transform: scale(1.1);
}

.dw-product-title-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.dw-product-box:hover .dw-product-title-container {
    transform: translateY(10px);
    opacity: 0;
}

.dw-product-title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.dw-product-title::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0099cc, #ffa500);
    left: 0;
    top: 0;
    border-radius: 3px;
}

.dw-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Decreased from 25px */
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(20px);
    z-index: 2;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ffa500 rgba(255,255,255,0.1);
}

.dw-product-overlay::-webkit-scrollbar {
    width: 5px;
}

.dw-product-overlay::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.dw-product-overlay::-webkit-scrollbar-thumb {
    background: #ffa500;
    border-radius: 10px;
}

.dw-product-box:hover .dw-product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.dw-overlay-content {
    width: 100%;
    max-width: 100%;
    padding: 0 5px;
}

.dw-overlay-title {
    font-size: 22px; /* Decreased from 24px */
    font-weight: 700;
    margin-bottom: 14px; /* Decreased from 18px */
    color: #ffa500;
    text-align: center;
    position: relative;
    padding-bottom: 12px; /* Decreased from 15px */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.dw-overlay-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #0099cc;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.dw-overlay-qualities {
    text-align: left;
    font-size: 15px; /* Decreased from 16px */
    line-height: 1.5; /* Decreased from 1.6 */
    padding: 0;
    margin: 0 0 12px 0; /* Decreased from 15px */
}

.dw-overlay-qualities li {
    margin-bottom: 6px; /* Decreased from 8px */
    list-style-type: none;
    position: relative;
    padding-left: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dw-product-box:hover .dw-overlay-qualities li {
    opacity: 1;
    transform: translateX(0);
}

.dw-product-box:hover .dw-overlay-qualities li:nth-child(1) { transition-delay: 0.1s; }
.dw-product-box:hover .dw-overlay-qualities li:nth-child(2) { transition-delay: 0.2s; }
.dw-product-box:hover .dw-overlay-qualities li:nth-child(3) { transition-delay: 0.3s; }
.dw-product-box:hover .dw-overlay-qualities li:nth-child(4) { transition-delay: 0.4s; }
.dw-product-box:hover .dw-overlay-qualities li:nth-child(5) { transition-delay: 0.5s; }

.dw-overlay-qualities li:before {
    content: "•";
    color: #ffa500;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    text-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.dw-view-more-container {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0 15px;
}

.dw-view-more {
    background: linear-gradient(90deg, #0099cc, #0077aa);
    color: white;
    border: none;
    padding: 10px 25px; /* Decreased from 12px 28px */
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px; /* Decreased from 15px */
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.3);
    text-align: center;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.dw-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.dw-view-more:hover {
    background: linear-gradient(90deg, #ffa500, #ff8c00);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
    transform: translateY(-3px);
}

.dw-view-more:hover::before {
    left: 100%;
}

.dw-product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0099cc;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.2);
}

.dw-product-box:nth-child(even) .dw-product-tag {
    background: #ffa500;
}

/* Media Queries */
@media (max-width: 1024px) {
    .dw-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .dw-section-title {
        font-size: 32px;
    }
    
    .dw-product-box {
        height: 300px; /* Decreased from 320px */
    }
    
    .dw-overlay-title {
        font-size: 22px;
    }
    
    .dw-overlay-qualities {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .dw-section-title {
        font-size: 28px;
    }
    
    .dw-products-grid {
        gap: 20px;
    }
    
    .dw-product-box {
        height: 280px; /* Decreased from 300px */
    }
    
    .dw-overlay-qualities {
        font-size: 13px;
    }
    
    .dw-overlay-title {
        font-size: 19px;
        margin-bottom: 10px;
    }
    
    .dw-overlay-qualities li {
        margin-bottom: 5px;
    }
    
    .dw-product-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .dw-products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .dw-section-title {
        font-size: 24px;
    }
    
    .dw-product-box {
        height: 260px; /* Decreased from 280px */
    }
    
    .dw-overlay-qualities {
        margin-bottom: 10px;
    }
    
    .dw-product-overlay {
        padding: 20px;
    }
    
    .dw-product-title {
        font-size: 18px;
    }
}

/*********** transformation section start ************/
    /* DuraWELL Brand Colors */
    :root {
        --durawell-blue: #00a7d7;
        --durawell-orange: #ffb347;
        --light-blue: #e6f7fc;
        --light-orange: #fff3e0;
        --dark-text: #333333;
        --light-text: #ffffff;
        --background: #f9f9f9;
        --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        --hover-shadow: 0 15px 40px rgba(0, 167, 215, 0.15);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        background-color: white;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="%2300a7d7" opacity="0.05"/><path d="M20 70 L70 20 L120 70 L70 120 Z" fill="%23ffb347" opacity="0.05"/><path d="M30 40 L40 30 L50 40 L40 50 Z" fill="%2300a7d7" opacity="0.03"/><path d="M60 70 L70 60 L80 70 L70 80 Z" fill="%23ffb347" opacity="0.03"/></svg>'),
        linear-gradient(170deg, rgba(0,167,215,0.05) 0%, rgba(255,179,71,0.05) 100%);
        line-height: 1.6;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 50px 20px;
    }

    .page-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }

    .page-title h1 {
        font-size: 2.8rem;
        color: var(--durawell-blue);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        font-weight: 700;
        letter-spacing: -0.5px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
    }

    .page-title h1::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 5px;
        background: linear-gradient(90deg, var(--durawell-blue), var(--durawell-orange));
        border-radius: 3px;
    }

    .page-title p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 25px auto 0;
        color: #555;
        line-height: 1.7;
    }

    .category-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .category-tab {
        padding: 14px 28px;
        background-color: var(--light-blue);
        border: none;
        border-radius: 30px;
        color: var(--durawell-blue);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        outline: none;
        box-shadow: 0 3px 10px rgba(0, 167, 215, 0.1);
        font-size: 1.05rem;
    }

    .category-tab:hover {
        background-color: var(--durawell-blue);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 167, 215, 0.2);
    }

    .category-tab.active {
        background: linear-gradient(135deg, var(--durawell-blue), #0090ba);
        color: white;
        box-shadow: 0 5px 15px rgba(0, 167, 215, 0.25);
    }

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

    .comparison-card {
        background: white;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(0, 167, 215, 0.1);
        display: none; /* Hide by default */
    }

    .comparison-card.active {
        display: block; /* Show when active */
    }

    .comparison-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--hover-shadow);
    }

    .comparison-image {
        position: relative;
        height: 300px;
        overflow: hidden;
    }

    .comparison-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.5s ease;
    }

    .comparison-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.1));
        z-index: 1;
    }

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

    .transformation-label {
        position: absolute;
        bottom: 15px;
        left: 15px;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 0.9rem;
        z-index: 10;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
        color: var(--durawell-blue);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        border-left: 4px solid var(--durawell-orange);
        letter-spacing: 0.5px;
    }

    .comparison-details {
        padding: 30px;
        position: relative;
    }

    .comparison-details::before {
        content: '';
        position: absolute;
        top: 0;
        left: 25px;
        right: 25px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
    }

    .comparison-title {
        font-size: 1.5rem;
        color: var(--durawell-blue);
        margin-bottom: 15px;
        font-weight: 600;
    }

    .comparison-products {
        display: flex;
        margin: 15px 0;
        gap: 10px;
        flex-wrap: wrap;
    }

    .category-tag {
        background-color: var(--light-orange);
        color: #e69619;
        padding: 8px 18px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: bold;
        border: 1px solid rgba(255, 179, 71, 0.2);
        box-shadow: 0 2px 5px rgba(255, 179, 71, 0.1);
    }

    .comparison-description {
        margin: 20px 0;
        color: #555;
        line-height: 1.8;
        font-size: 1.05rem;
    }


    .technical-info {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        font-size: 0.95rem;
        background-color: rgba(0, 167, 215, 0.05);
        padding: 15px 20px;
        border-radius: 12px;
        box-shadow: inset 0 1px 3px rgba(0, 167, 215, 0.1);
    }

    .tech-item {
        color: #666;
    }

    .tech-item strong {
        color: var(--durawell-blue);
    }

    @media (max-width: 1024px) {
        .comparison-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .page-title h1 {
            font-size: 2.4rem;
        }
        
        .comparison-image {
            height: 250px;
        }
    }

    @media (max-width: 768px) {
        .comparison-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .page-title h1 {
            font-size: 2.2rem;
        }
        
        .category-tabs {
            flex-wrap: nowrap;
            overflow-x: auto;
            padding-bottom: 10px;
            justify-content: flex-start;
            scrollbar-width: thin;
        }
        
        .category-tab {
            white-space: nowrap;
            flex: 0 0 auto;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 30px 15px;
        }
        
        .page-title {
            margin-bottom: 30px;
        }
        
        .page-title h1 {
            font-size: 2rem;
        }
        
        .comparison-image {
            height: 200px;
        }
        
        .comparison-details {
            padding: 20px 15px;
        }
        
        .comparison-title {
            font-size: 1.3rem;
        }
        
        .technical-info {
            flex-direction: column;
            gap: 10px;
        }
    }
/***********  transformation end *************/

/********** Integrated section *************/
/* DuraWell Custom Styles - Completely unique prefixes */
:root {
    --durawl-blue: #0099cc;
    --durawl-orange: #ffa500;
    --durawl-blue-light: rgba(0, 153, 204, 0.1);
    --durawl-orange-light: rgba(255, 165, 0, 0.1);
    --durawl-dark: #333;
    --durawl-light: #f9f9f9;
    --durawl-transition: 0.4s;
}

/* Progress bar */
.durawl-progress-container {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.durawl-progress-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--durawl-blue) 0%, var(--durawl-orange) 100%);
    width: 0%;
}

/* Section Headers */
.durawl-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--durawl-dark);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 600;
}

.durawl-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--durawl-blue) 0%, var(--durawl-orange) 100%);
    border-radius: 2px;
}

/* Tabs Navigation */
.durawl-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.durawl-tab {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    background: white;
    color: var(--durawl-dark);
    cursor: pointer;
    transition: all var(--durawl-transition);
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.durawl-tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--durawl-blue) 0%, var(--durawl-orange) 100%);
    z-index: -1;
    transition: opacity var(--durawl-transition);
    opacity: 0;
}

.durawl-tab:hover::before {
    opacity: 1;
}

.durawl-tab:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.durawl-tab.active {
    color: white;
    background: linear-gradient(90deg, var(--durawl-blue) 0%, var(--durawl-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tab Content */
.durawl-tab-content {
    display: none;
    animation: durawl-fadeIn 0.6s ease-in-out;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.durawl-tab-content.active {
    display: block;
}

@keyframes durawl-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Feature Cards */
.durawl-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    transition: transform var(--durawl-transition);
    position: relative;
    border-top: 4px solid var(--durawl-blue);
    border-bottom: 4px solid var(--durawl-orange);
}

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

@media (min-width: 768px) {
    .durawl-card {
        flex-direction: row;
    }
}

.durawl-card-img {
    flex: 1;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

.durawl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.durawl-card:hover .durawl-card-img img {
    transform: scale(1.05);
}

.durawl-card-content {
    flex: 1;
    padding: 2rem;
    background: linear-gradient(170deg, rgba(0,153,204,0.03) 0%, rgba(255,165,0,0.03) 100%);
}

.durawl-card-title {
    color: var(--durawl-blue);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.durawl-card-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--durawl-orange);
    border-radius: 2px;
}

/* Condensed Timeline */
.durawl-timeline {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0;
}

.durawl-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--durawl-blue), var(--durawl-orange));
    top: 0;
    bottom: 0;
    left: 30px;
    border-radius: 2px;
}

.durawl-timeline-item {
    padding: 0 0 30px 60px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.durawl-timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.durawl-timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--durawl-blue);
    border-radius: 50%;
    top: 5px;
    left: 22px;
    z-index: 1;
    transition: all 0.3s ease;
}

.durawl-timeline-item:nth-child(even)::after {
    border-color: var(--durawl-orange);
}

.durawl-timeline-item:hover::after {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 153, 204, 0.5);
}

.durawl-timeline-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--durawl-blue);
}

.durawl-timeline-item:nth-child(even) .durawl-timeline-content {
    border-left-color: var(--durawl-orange);
}

.durawl-timeline-item:hover .durawl-timeline-content {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.durawl-timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background: var(--durawl-blue);
    color: white;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.durawl-timeline-item:nth-child(even) .durawl-timeline-date {
    background: var(--durawl-orange);
}

.durawl-timeline-content h4 {
    margin: 0 0 10px 0;
    color: var(--durawl-dark);
    font-size: 1.2rem;
}

/* Timeline Grid for larger screens */
@media (min-width: 992px) {
    .durawl-timeline::before {
        left: 50%;
    }
    
    .durawl-timeline-item {
        width: 50%;
        padding: 0 40px 30px;
    }
    
    .durawl-timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }
    
    .durawl-timeline-item:nth-child(odd)::after {
        right: -10px;
        left: auto;
    }
    
    .durawl-timeline-item:nth-child(even) {
        left: 50%;
        text-align: left;
    }
    
    .durawl-timeline-item:nth-child(even)::after {
        left: -10px;
    }
    
    .durawl-timeline-item:nth-child(odd) .durawl-timeline-content {
        border-left: none;
        border-right: 4px solid var(--durawl-blue);
    }
}

/* Facility Grid */
.durawl-facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.durawl-facility-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform var(--durawl-transition);
    border-top: 3px solid var(--durawl-blue);
}

.durawl-facility-item:nth-child(even) {
    border-top-color: var(--durawl-orange);
}

.durawl-facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.durawl-facility-img {
    height: 200px;
    overflow: hidden;
}

.durawl-facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.durawl-facility-item:hover .durawl-facility-img img {
    transform: scale(1.05);
}

.durawl-facility-content {
    padding: 1.5rem;
    background: linear-gradient(170deg, rgba(0,153,204,0.03) 0%, rgba(255,165,0,0.03) 100%);
}

.durawl-facility-title {
    color: var(--durawl-blue);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.durawl-facility-item:nth-child(even) .durawl-facility-title {
    color: var(--durawl-orange);
}

.durawl-facility-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--durawl-orange);
    border-radius: 1px;
}

.durawl-facility-item:nth-child(even) .durawl-facility-title::after {
    background: var(--durawl-blue);
}

/* Vision Cards */
.durawl-vision-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.durawl-vision-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--durawl-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-bottom: 4px solid var(--durawl-orange);
}

.durawl-vision-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--durawl-blue-light) 0%, var(--durawl-orange-light) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--durawl-transition);
}

.durawl-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.durawl-vision-card:hover::before {
    opacity: 1;
}

.durawl-vision-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--durawl-blue) 0%, var(--durawl-orange) 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    transition: transform var(--durawl-transition);
}

.durawl-vision-card:hover .durawl-vision-icon {
    transform: rotateY(360deg);
}

.durawl-vision-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--durawl-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .durawl-section-title {
        font-size: 1.8rem;
    }
    
    .durawl-timeline-item {
        padding-left: 60px;
    }
}
/********* integrated end **************/

/******* application section **********/
/******* application section **********/
        /* Namespaced classes to avoid conflicts with other sections */
        .durawell-products-section {
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .durawell-triangle-1 {
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background-color: #00a0d2; /* DuraWELL blue */
            clip-path: polygon(0 0, 0% 100%, 100% 0);
        }
        
        .durawell-triangle-2 {
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background-color: #ffa726; /* DuraWELL orange */
            clip-path: polygon(100% 100%, 0% 100%, 100% 0);
        }

        .durawell-circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: #00a0d2;
            position: absolute;
            opacity: 0.05;
            top: 30%;
            left: 15%;
        }
        
        .durawell-diagonal {
            position: absolute;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, #00a0d2, #ffa726);
            opacity: 0.2;
            transform: rotate(-5deg);
            top: 60%;
            left: 0;
        }

        .durawell-section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .durawell-section-header h2 {
            color: #00a0d2; /* DuraWELL blue */
            font-size: 2.8rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .durawell-section-header h2:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--durawell-blue), var(--durawell-orange));
            border-radius: 3px;
        }

        .durawell-section-header p {
            color: #555;
            font-size: 1.2rem;
            margin-top: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .durawell-products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 35px;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .durawell-product-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            height: 320px;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 160, 210, 0.1);
        }

        .durawell-product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
            border-color: rgba(0, 160, 210, 0.3);
        }

        .durawell-card-image-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
            border-bottom: 4px solid #ffa726;
            flex-shrink: 0;
        }

        .durawell-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        .durawell-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 160, 210, 0.95), rgba(0, 160, 210, 0.6), transparent);
            padding: 25px;
            color: white;
            transition: all 0.4s ease;
        }

        .durawell-product-card:hover .durawell-card-overlay {
            background: linear-gradient(to top, rgba(0, 160, 210, 1), rgba(0, 160, 210, 0.8), rgba(0, 160, 210, 0.4));
            padding-bottom: 35px;
        }

        .durawell-card-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            position: relative;
            font-weight: 600;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }

        .durawell-card-overlay h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffa726;
            transition: width 0.4s ease;
        }

        .durawell-product-card:hover .durawell-card-overlay h3::after {
            width: 60%;
        }

        .durawell-preview-text {
            font-size: 1rem;
            opacity: 0.9;
            line-height: 1.4;
        }

        .durawell-card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ffa726, #ff9800);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
            z-index: 2;
            box-shadow: 0 3px 8px rgba(255, 167, 38, 0.3);
        }

        .durawell-product-card:hover .durawell-card-badge {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal styles */
        .durawell-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            overflow-y: auto;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .durawell-modal.active {
            display: flex;
            opacity: 1;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .durawell-modal-content {
            background-color: white;
            width: 90%;
            max-width: 950px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            display: flex;
            flex-direction: column;
            transform: scale(0.8);
            transition: transform 0.4s ease;
            max-height: 90vh;
            margin: 20px;
            position: relative;
            border: 1px solid rgba(0, 160, 210, 0.2);
        }

        .durawell-modal.active .durawell-modal-content {
            transform: scale(1);
        }

        .durawell-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            background: linear-gradient(to right, #00a0d2, #0088b5);
            color: white;
            position: relative;
        }

        .durawell-modal-header h3 {
            font-size: 1.8rem;
            margin: 0;
            flex-grow: 1;
            padding-right: 40px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        .durawell-close-button {
            background: linear-gradient(to right, #ffa726, #ff9800);
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
        }

        .durawell-close-button:hover {
            background: linear-gradient(to right, #ff9800, #ff8f00);
            transform: translateY(-50%) rotate(90deg);
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.5);
        }

        .durawell-modal-body {
            display: flex;
            flex-direction: column;
            max-height: calc(90vh - 60px);
            overflow: auto;
        }

        .durawell-modal-image-container {
            width: 100%;
            height: 280px;
            position: relative;
            overflow: hidden;
            border-bottom: 4px solid #ffa726;
        }

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

        .durawell-modal-description {
            padding: 30px;
            font-size: 1rem;
            line-height: 1.6;
            color: #333;
            flex-grow: 1;
            overflow-y: auto;
        }

        .durawell-modal-description h4 {
            color: #00a0d2;
            margin-bottom: 15px;
            font-size: 1.4rem;
            position: relative;
            display: inline-block;
        }
        
        .durawell-modal-description h4:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: linear-gradient(to right, #00a0d2, #ffa726);
            bottom: -8px;
            left: 0;
        }

        .durawell-modal-description p {
            margin-bottom: 20px;
        }

        .durawell-application-features {
            margin-top: 25px;
        }

        .durawell-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
            background-color: #e0f7ff;
            padding: 15px;
            border-radius: 10px;
            border-left: 3px solid #00a0d2;
        }

        .durawell-feature-item:hover {
            transform: translateX(5px);
            background-color: #d0f0ff;
            box-shadow: 0 4px 8px rgba(0, 160, 210, 0.1);
        }

        .durawell-feature-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #ffa726, #ff9800);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            font-weight: bold;
            box-shadow: 0 3px 6px rgba(255, 167, 38, 0.3);
            flex-shrink: 0;
        }

        .durawell-cta-button {
            display: inline-block;
            margin-top: 25px;
            padding: 14px 28px;
            background: linear-gradient(to right, #ffa726, #ff9800);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 5px 15px rgba(255, 167, 38, 0.3);
        }

        .durawell-cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, #ff9800, #ffa726);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .durawell-cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 167, 38, 0.5);
        }

        .durawell-cta-button:hover:before {
            left: 0;
        }

        /* Animation for cards */
        @keyframes durawell-fade-in-up {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .durawell-product-card {
            animation: durawell-fade-in-up 0.7s ease forwards;
            opacity: 0;
        }

        .durawell-product-card:nth-child(1) { animation-delay: 0.1s; }
        .durawell-product-card:nth-child(2) { animation-delay: 0.2s; }
        .durawell-product-card:nth-child(3) { animation-delay: 0.3s; }
        .durawell-product-card:nth-child(4) { animation-delay: 0.4s; }
        .durawell-product-card:nth-child(5) { animation-delay: 0.5s; }
        .durawell-product-card:nth-child(6) { animation-delay: 0.6s; }

        /* Media Queries */
        @media (min-width: 768px) {
            .durawell-modal-body {
                flex-direction: row;
            }

            .durawell-modal-image-container {
                width: 40%;
                height: auto;
                min-height: 400px;
            }

            .durawell-modal-description {
                width: 60%;
            }
        }

        @media (max-width: 1200px) {
            .durawell-products-grid {
                padding: 0 20px;
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .durawell-section-header h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .durawell-products-section {
                padding: 60px 15px;
            }
            
            .durawell-section-header h2 {
                font-size: 2.2rem;
            }
            
            .durawell-section-header p {
                font-size: 1.1rem;
            }
            
            .durawell-products-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 25px;
            }
            
            .durawell-modal-content {
                width: 95%;
                margin: 10px;
                max-height: 85vh;
            }
            
            .durawell-modal-image-container {
                height: 220px;
            }

            .durawell-modal-header h3 {
                font-size: 1.6rem;
                padding-right: 30px;
            }

            .durawell-close-button {
                width: 32px;
                height: 32px;
                font-size: 1.3rem;
            }
            
            /* Fix for card overlay text in mobile */
            .durawell-card-overlay {
                padding: 15px;
            }
            
            .durawell-card-overlay h3 {
                font-size: 1.3rem;
                margin-bottom: 5px;
            }
            
            .durawell-preview-text {
                font-size: 0.9rem;
                line-height: 1.3;
                /* Ensure text doesn't overflow */
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }

        @media (max-width: 480px) {
            .durawell-products-section {
                padding: 50px 10px;
            }
            
            .durawell-section-header h2 {
                font-size: 1.9rem;
            }
            
            .durawell-section-header p {
                font-size: 1rem;
            }
            
            .durawell-products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .durawell-product-card {
                height: auto;
                min-height: 280px;
            }
            
            .durawell-card-image-container {
                height: 180px;
            }
            
            .durawell-card-overlay {
                padding: 12px;
            }
            
            .durawell-card-overlay h3 {
                font-size: 1.2rem;
            }
            
            .durawell-preview-text {
                font-size: 0.85rem;
                -webkit-line-clamp: 2;
            }
            
            .durawell-modal-description {
                padding: 20px;
            }
            
            .durawell-feature-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 15px;
            }
            
            .durawell-feature-icon {
                margin-bottom: 10px;
            }
            
            .durawell-close-button {
                top: 15px;
                right: 15px;
                transform: none;
            }
            
            .durawell-modal-header {
                padding-right: 50px;
                text-align: left;
            }
        }
/******** application end ***********/

/**********     testimonial section     *****/
:root {
    --dura-blue: #00a7d7; /* Matches the blue in the logo */
    --dura-orange: #f7a823; /* Matches the orange in the logo */
    --dark-text: #333333;
    --light-text: #ffffff;
    --bg-light: #ffffff; /* Changed to white */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.testimonial-section {
    padding: 40px 20px;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dura-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--durawell-blue), var(--durawell-orange));
    border-radius: 3px;
}

.section-title p {
    color: var(--dark-text);
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 350px;
}

.testimonial-slider {
    position: relative;
    min-height: 350px;
}

.testimonial-card {
    padding: 25px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--dura-blue);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
    visibility: hidden;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    z-index: 1;
}

.testimonial-card:before {
    display: none; /* Removed the left gradient border */
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #eee;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--dura-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    font-size: 24px;
    font-weight: bold;
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--dura-blue);
    margin-bottom: 5px;
}

.client-company {
    font-size: 14px;
    color: var(--dark-text);
    font-weight: 600;
}

.client-position {
    font-size: 13px;
    color: #777;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 60px;
    color: var(--dura-orange);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.rating {
    display: flex;
    margin-top: 15px;
}

.star {
    color: var(--dura-orange);
    font-size: 18px;
    margin-right: 3px;
}

.product-used {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(0, 167, 215, 0.1);
    color: var(--dura-blue);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--dura-blue);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-btn:hover {
    background-color: var(--dura-orange);
    border-color: var(--dura-orange);
    transform: scale(1.1);
}

.nav-btn:hover svg path {
    fill: white;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    z-index: 2;
    position: relative;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--dura-orange);
    transform: scale(1.3);
}

.featured-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--dura-blue), var(--dura-orange));
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

/* Improved Media Queries for Better Responsiveness */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .testimonial-container {
        min-height: 400px;
    }
    
    .testimonial-slider {
        min-height: 400px;
    }
    
    .testimonial-card {
        padding: 20px;
        position: relative;
        opacity: 0;
        display: none;
    }
    
    .testimonial-card.active {
        display: block;
        opacity: 1;
    }
    
    .client-avatar {
        width: 60px;
        height: 60px;
    }
    
    .client-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 24px;
    }
    
    .testimonial-section {
        padding: 40px 15px;
    }
    
    .testimonial-container {
        min-height: 450px;
    }
    
    .testimonial-slider {
        min-height: 450px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-right: 15px;
    }
    
    .client-name {
        font-size: 15px;
    }
    
    .client-company {
        font-size: 13px;
    }
    
    .client-position {
        font-size: 12px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
}
/*******    testimonial end     ********/