/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #0a1e3b;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eeff 100%);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #0a1e3b 0%, #1a3c7a 100%);
    /* REPLACED: Removed blur shadow with geometric pattern enhancement */
    box-shadow: 0 6px 25px rgba(192, 192, 192, 0.6), 
                /* Geometric glow pattern instead of blur */
                0 0 20px rgba(107, 156, 255, 0.2),
                /* Subtle pattern overlay */
                inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid rgba(192, 192, 192, 0.3);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    /* REPLACED: Geometric backdrop pattern instead of blur */
    background: linear-gradient(135deg, #0a1e3b 0%, #1a3c7a 100%),
                /* Geometric overlay pattern */
                radial-gradient(circle at 20% 20%, rgba(107, 156, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 108, 183, 0.08) 0%, transparent 50%);
    background-size: 100% 100%, 100px 100px, 100px 100px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.logo {
    height: 45px;
    transition: all 0.3s ease;
    /* REPLACED: Geometric drop shadow instead of blur */
    filter: drop-shadow(0 3px 6px rgba(192, 192, 192, 0.4)) 
            drop-shadow(0 0 10px rgba(107, 156, 255, 0.2)) brightness(1.3);
    max-width: 100%;
    width: auto;
}

    .logo:hover {
        transform: scale(1.04) rotate(2deg);
        /* ENHANCED: Geometric hover shadow */
        filter: drop-shadow(0 4px 8px rgba(192, 192, 192, 0.5)) 
                drop-shadow(0 0 15px rgba(107, 156, 255, 0.3)) brightness(1.4);
    }

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .logo-link:hover .logo {
        transform: scale(1.04) rotate(2deg);
        filter: drop-shadow(0 4px 8px rgba(192, 192, 192, 0.5)) 
                drop-shadow(0 0 15px rgba(107, 156, 255, 0.3)) brightness(1.4);
    }

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 14px;
    margin: 0 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
    /* REPLACED: Geometric background pattern */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(107, 156, 255, 0.05) 100%);
}

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        /* REPLACED: Geometric shine pattern */
        background: linear-gradient(90deg, 
            transparent, 
            radial-gradient(circle, rgba(107, 156, 255, 0.2) 0%, transparent 70%),
            transparent);
        transition: left 0.5s ease;
        z-index: -1;
        border-radius: 6px;
    }

    .nav-link:hover::before {
        left: 100%;
    }

    .nav-link:hover {
        color: #ffffff;
        /* REPLACED: Geometric hover background */
        background: linear-gradient(135deg, rgba(107, 156, 255, 0.15) 0%, rgba(59, 108, 183, 0.1) 100%);
        transform: translateY(-1px);
        /* ENHANCED: Geometric hover shadow */
        box-shadow: 0 4px 12px rgba(107, 156, 255, 0.3),
                    0 0 20px rgba(107, 156, 255, 0.2);
        text-decoration: none;
    }

/* Products Section */
.products {
    padding: 60px 0;
    background: linear-gradient(135deg, #f7f9fc 0%, #e8eeff 100%);
}

    .products h2 {
        text-align: center;
        margin-bottom: 50px;
        color: #0a1e3b;
        font-size: 2.2rem;
        font-weight: 700;
        position: relative;
    }

        .products h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0a1e3b, #3b6cb7);
            margin: 15px auto 0;
            border-radius: 2px;
        }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns for desktop */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Tile Styles */
.product-tile {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(192, 192, 192, 0.3);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

    .product-tile:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 50px rgba(192, 192, 192, 0.4);
    }

    .product-tile a {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: inherit;
    }

    /* Product Image Background */
    .product-tile .bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: blur(4px) brightness(0.9) saturate(0.8);
        z-index: 1;
        transition: all 0.4s ease-in-out;
    }

    /* Product Main Image */
    .product-tile .product-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 280px;
        height: auto;
        max-height: 70%;
        object-fit: contain;
        z-index: 2;
        filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
        transition: all 0.4s ease-in-out;
    }

    .product-tile:hover .product-image {
        transform: translate(-50%, -50%) scale(1.05);
        filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.2));
    }

    /* Text Container for Overlay - REDUCED HEIGHT */
    .product-tile .text-container {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(10, 30, 59, 0.9));
        color: white;
        padding: 20px 25px 18px; /* Reduced from 30px 25px 25px */
        z-index: 3;
        transform: translateY(15px); /* Reduced from 20px */
        transition: all 0.4s ease-in-out;
        backdrop-filter: blur(10px);
    }

    .product-tile:hover .text-container {
        transform: translateY(0);
        background: linear-gradient(rgba(10, 30, 59, 0.95), rgba(10, 30, 59, 0.95));
    }

    .product-tile h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 6px; /* Reduced from 8px */
        letter-spacing: 0.5px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .product-tile .product-subtitle {
        font-size: 0.95rem;
        font-weight: 400;
        opacity: 0.9;
        letter-spacing: 0.3px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        margin: 0;
    }

    /* Animation for product tiles */
    .product-tile[data-animate] {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        animation: slideInTile 0.6s ease-out forwards;
    }

@keyframes slideInTile {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design for Product Tiles */
@media (max-width: 968px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 25px;
    }

    .product-tile {
        height: 320px;
    }

        .product-tile .product-image {
            width: 75%;
            max-width: 240px;
        }

        .product-tile .text-container {
            padding: 16px 20px 15px; /* Reduced from 25px 20px 20px */
        }

    .products h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 25px;
        max-width: 400px;
    }

    .product-tile {
        height: 300px;
        margin: 0 auto;
    }

        .product-tile .product-image {
            width: 70%;
            max-width: 220px;
        }

        .product-tile .text-container {
            padding: 15px 18px 14px; /* Reduced from 20px 18px 18px */
        }

        .product-tile h3 {
            font-size: 1.3rem;
        }

        .product-tile .product-subtitle {
            font-size: 0.9rem;
        }

    .products h2 {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        gap: 20px;
        max-width: 320px;
    }

    .product-tile {
        height: 280px;
    }

        .product-tile .product-image {
            width: 65%;
            max-width: 200px;
        }

        .product-tile .text-container {
            padding: 14px 15px 12px; /* Reduced from 18px 15px 15px */
        }

        .product-tile h3 {
            font-size: 1.2rem;
            margin-bottom: 4px; /* Reduced from 6px */
        }

        .product-tile .product-subtitle {
            font-size: 0.85rem;
        }

    .products {
        padding: 40px 0;
    }

        .products h2 {
            font-size: 1.6rem;
            margin-bottom: 30px;
        }

            .products h2::after {
                width: 60px;
                height: 3px;
            }
}

/* Product Banner */
.product-banner {
    padding: 10px 0;
    background: linear-gradient(135deg, #091a33 0%, #0e2447 50%, #20458a 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

    .product-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.25) 0%, transparent 25%), radial-gradient(circle at 90% 60%, rgba(107, 156, 255, 0.3) 0%, transparent 30%), radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 20%), radial-gradient(circle at 30% 40%, rgba(59, 108, 183, 0.2) 0%, transparent 25%);
        opacity: 0.65;
        animation: dynamicGlow 12s ease-in-out infinite alternate;
        z-index: 0;
        pointer-events: none;
    }

    .product-banner::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 20% 30%, rgba(107, 156, 255, 0.25) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 35%), radial-gradient(circle at 40% 20%, rgba(59, 108, 183, 0.2) 0%, transparent 30%), radial-gradient(circle at 60% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 25%);
        background-size: 700px 700px;
        opacity: 0.85;
        animation: fluidBluePulse 28s linear infinite;
        z-index: 0;
        pointer-events: none;
    }

@keyframes dynamicGlow {
    0% {
        opacity: 0.65;
        transform: scale(1) translate(0, 0) rotate(0deg);
    }

    25% {
        opacity: 0.85;
        transform: scale(1.1) translate(10px, -10px) rotate(2deg);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05) translate(-10px, 10px) rotate(-2deg);
    }

    75% {
        opacity: 0.8;
        transform: scale(1.08) translate(5px, -5px) rotate(1deg);
    }

    100% {
        opacity: 0.65;
        transform: scale(1) translate(0, 0) rotate(0deg);
    }
}

@keyframes fluidBluePulse {
    0% {
        transform: scale(1) rotate(0deg) translate(0, 0);
        opacity: 0.85;
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }

    25% {
        transform: scale(1.1) rotate(2deg) translate(20px, -20px);
        opacity: 0.95;
        background-position: 20% 30%, -20% 70%, 10% -10%, -10% 40%;
    }

    50% {
        transform: scale(1.05) rotate(-3deg) translate(-15px, 15px);
        opacity: 0.9;
        background-position: -30% -20%, 30% 80%, -20% 10%, 20% -30%;
    }

    75% {
        transform: scale(1.1) rotate(1deg) translate(10px, -10px);
        opacity: 0.95;
        background-position: 15% 25%, -25% 65%, 5% -5%, -5% 35%;
    }

    100% {
        transform: scale(1) rotate(0deg) translate(0, 0);
        opacity: 0.85;
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.banner-image {
    flex: 1;
    max-width: 60%;
    text-align: center;
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

    .banner-image[data-animate] {
        opacity: 0;
        transform: translateY(30px) rotate(2deg);
        animation: fadeInImage 1.2s ease-out forwards;
    }

@keyframes fadeInImage {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95) rotate(2deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

.banner-features {
    flex: 1;
    max-width: 50%;
    padding: 20px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

    .banner-features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, #6b9cff, transparent);
        animation: linePulse 3s infinite;
    }

@keyframes linePulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.banner-features[data-animate] {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInFeatures 1.2s ease-out forwards;
}

@keyframes slideInFeatures {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-features h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 12px;
    font-family: Arial, sans-serif;
}

    .banner-features h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 150px;
        height: 3px;
        background: linear-gradient(90deg, #6b9cff, #ffffff);
        border-radius: 2px;
    }

.banner-features ul {
    list-style: none;
    padding: 0;
}

.banner-features li {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 550;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    color: #e0e0e0;
    padding: 5px 9px;
    border-radius: 6px;
    font-family: Arial, sans-serif;
}

    .banner-features li:hover {
        transform: translateX(8px);
        color: #ffffff;
        background: rgba(107, 156, 255, 0.2);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.feature-icon {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #6b9cff;
    min-width: 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.banner-features li:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    color: #ffffff;
}

/* MRP Styles - Compact Single Line */
.product-mrp {
    margin: 15px auto 0 0;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(107, 156, 255, 0.2);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.2);
    text-align: center;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    width: 150px;
    align-self: flex-start;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

    .product-mrp::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #6b9cff, #ffffff, #6b9cff);
        animation: priceLineGlow 3s ease-in-out infinite alternate;
    }

@keyframes priceLineGlow {
    0% {
        opacity: 0.7;
        transform: scaleX(0.9);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.mrp-label {
    font-size: 1.0rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.mrp-price {
    font-size: 1.0rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(217, 83, 79, 0.2);
    margin: 0;
    white-space: nowrap;
}

    .mrp-price::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 1px;
        background: linear-gradient(90deg, #d9534f, #ff6b6b);
        border-radius: 1px;
        animation: pricePulse 2s ease-in-out infinite;
    }

@keyframes pricePulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }

    50% {
        opacity: 0.7;
        transform: translateX(-50%) scaleX(1.1);
    }
}

.product-mrp:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.3);
}

/* Banner Slider Styles */
.banner-slider, .banner-slider-main {
    margin-top: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 500px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.banner-slider-inner {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
    height: 100%;
}

.banner-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .banner-slide-item img {
        max-width: 95%;
        max-height: 95%;
        object-fit: contain;
        border-radius: 8px;
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
        transition: all 0.4s ease-in-out;
    }

    .banner-slide-item:hover img {
        transform: scale(1.05);
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background-color: #ffffff;
        box-shadow: 0 0 8px rgba(107, 156, 255, 0.7);
        transform: scale(1.2);
    }

/* Product Info */
.product-info {
    padding: 48px 0;
    background: linear-gradient(135deg, #f7f9fc 0%, #e8eeff 100%);
}

    .product-info h2 {
        text-align: center;
        margin-bottom: 36px;
        color: #0a1e3b;
        font-size: 2rem;
        font-weight: 700;
    }

        .product-info h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #0a1e3b, #3b6cb7);
            margin: 12px auto 0;
            border-radius: 2px;
        }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.info-item {
    background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
    border-radius: 14px;
    padding: 20px 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(192, 192, 192, 0.3);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

    .info-item:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 10px 25px rgba(192, 192, 192, 0.4);
    }

    .info-item img {
        height: 48px;
        margin-bottom: 10px;
        transition: all 0.3s ease-in-out;
    }

    .info-item:hover img {
        transform: scale(1.1);
    }

    .info-item p {
        font-weight: 600;
        color: #3b6cb7;
        font-size: 0.95rem;
    }

.product-description {
    max-width: 1000px;
    margin: 30px auto 20px;
    text-align: justify;
}

    .product-description p {
        font-size: 1.1rem;
        color: #0a1e3b;
        line-height: 1.8;
        font-weight: 400;
        background: linear-gradient(135deg, #eaf2ff 0%, #d4e2f9 100%);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(192, 192, 192, 0.3);
        border: 1px solid rgba(192, 192, 192, 0.2);
    }

/* Image Carousel */
.image-description {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f7f9fc 0%, #ffffff 100%);
}

    .image-description h2 {
        text-align: center;
        margin-bottom: 40px;
        color: #0a1e3b;
        font-size: 2.2rem;
        font-weight: 700;
    }

        .image-description h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #0a1e3b, #3b6cb7);
            margin: 15px auto 0;
            border-radius: 2px;
        }

.image-carousel {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 2s ease-in-out;
    width: fit-content;
}

.image-description-item {
    flex: 0 0 100%;
    max-width: 100%;
    height: 700px;
    padding: 5px;
    background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
    transition: all 0.3s ease-in-out;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}

    .image-description-item img {
        width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(192, 192, 192, 0.2);
    }

    .image-description-item[data-animate] {
        opacity: 0;
        transform: translateY(30px);
        animation: slideInTile 0.6s ease-out forwards;
    }

    .image-description-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .image-description-item:nth-child(3) {
        animation-delay: 0.4s;
    }

    .image-description-item:nth-child(4) {
        animation-delay: 0.6s;
    }

    .image-description-item:nth-child(5) {
        animation-delay: 0.8s;
    }

    .image-description-item:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 40px rgba(192, 192, 192, 0.4);
    }

        .image-description-item:hover img {
            transform: scale(1.05);
        }

    .image-description-item p {
        display: none;
    }

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(10, 30, 59, 0.8), rgba(107, 156, 255, 0.6));
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 10;
}

    .carousel-arrow:disabled {
        background: rgba(192, 192, 192, 0.5);
        cursor: not-allowed;
    }

    .carousel-arrow:hover:not(:disabled) {
        background: linear-gradient(135deg, rgba(10, 30, 59, 1), rgba(107, 156, 255, 0.8));
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .carousel-arrow.left {
        left: 10px;
    }

    .carousel-arrow.right {
        right: 10px;
    }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
    margin: 5% auto;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(192, 192, 192, 0.3);
    width: 90%;
    max-width: 700px;
    position: relative;
}

#datasheet .modal-content, #manual .modal-content {
    max-width: 1000px;
}

/* Full-Screen Modal for PDFs */
.full-screen-modal {
    width: 95% !important;
    max-width: 95vw !important;
    height: 90vh !important;
    max-height: 90vh !important;
    margin: 2.5% auto !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 12px !important;
}

#datasheet .full-screen-modal,
#manual .full-screen-modal {
    background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

/* Adjust iframe height for full-screen modals */
#datasheet .modal-body iframe,
#manual .modal-body iframe {
    height: 85vh !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 20px rgba(192, 192, 192, 0.2);
}

/* Close button positioning for full-screen */
.full-screen-modal .close {
    position: fixed !important;
    right: 25px !important;
    top: 25px !important;
    z-index: 2001 !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .full-screen-modal .close:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

/* Modal title positioning */
.full-screen-modal h2 {
    position: fixed !important;
    top: 25px !important;
    left: 25px !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px !important;
    border-radius: 8px;
    z-index: 2001 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

/* Adjust modal body for full-screen */
.full-screen-modal .modal-body {
    margin-top: 0 !important;
    padding-top: 80px !important; /* Space for fixed title */
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* Download button positioning */
.full-screen-modal .download-btn {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    z-index: 2001 !important;
    margin-top: 0 !important;
    padding: 12px 24px !important;
    background: linear-gradient(135deg, #0a1e3b 0%, #3b6cb7 100%) !important;
    border-radius: 25px !important;
    font-size: 0.95rem !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

    .full-screen-modal .download-btn:hover {
        transform: translateY(-2px) scale(1.05) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
    }

#techspecs .modal-content, #warranty .modal-content {
    background: linear-gradient(135deg, #e8eeff 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(192, 192, 192, 0.4);
    border: 1px solid rgba(107, 156, 255, 0.2);
}

.close {
    color: #c0c0c0;
    float: right;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .close:hover,
    .close:focus {
        color: #0a1e3b;
        transform: scale(1.2);
    }

.modal h2 {
    color: #0a1e3b;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
    position: relative;
    padding-bottom: 10px;
}

    .modal h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #0a1e3b, #3b6cb7);
        border-radius: 2px;
    }

.modal-body {
    margin-top: 20px;
    line-height: 1.8;
    color: #0a1e3b;
    font-size: 1.1rem;
}

/* Warranty Modal - Simplified Static Design */
#warranty .warranty-section {
    margin-bottom: 4px; /* Reduced from 25px */
    padding: 9px; /* Reduced from 15px */
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px; /* Reduced from 8px */
    border-left: 3px solid #6b9cff; /* Reduced from 4px */
    font-size: 1.0rem;
}

    #warranty .warranty-section h3 {
        color: #0a1e3b;
        margin-bottom: 8px; /* Reduced from 12px */
        font-size: 1.1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px; /* Reduced from 8px */
        padding: 0; /* Remove padding */
    }

#warranty .warranty-exclusions,
#warranty .warranty-steps {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0; /* Reduced margin */
}

    #warranty .warranty-exclusions li,
    #warranty .warranty-steps li {
        padding: 4px 6px; /* Reduced from 8px 12px */
        margin-bottom: 3px; /* Reduced from 8px */
        background: transparent; /* Remove background */
        border-radius: 0; /* Remove border radius */
        display: flex;
        align-items: center;
        transition: none; /* Remove transition */
        border-left: 2px solid #e0e0e0;
        padding-left: 12px;
        font-size: 1.0rem;
    }

#warranty .warranty-note {
    margin-top: 5px; /* Reduced from 15px */
    padding: 7px; /* Reduced from 10px */
    background: rgba(192, 192, 192, 0.05); /* Subtle background */
    border-radius: 3px; /* Reduced from 6px */
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 0.9rem; /* Slightly smaller */
}

/* Remove hover effects */
#warranty .warranty-exclusions li:hover,
#warranty .warranty-steps li:hover {
    background: transparent;
    transform: none;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0a1e3b 0%, #3b6cb7 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.3);
}

    .download-btn:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 25px rgba(192, 192, 192, 0.4);
    }

#datasheet .download-btn, #manual .download-btn {
    display: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a1e3b 0%, #1a3c7a 100%);
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    box-shadow: 0 -4px 20px rgba(192, 192, 192, 0.4);
}

    footer p {
        font-size: 1.1rem;
        color: #ffffff;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    }

        footer p a {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            footer p a:hover {
                text-decoration: underline;
                color: #e0e0e0;
            }

/* Back to Top Button */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #C71585 10%, #4B0082 70%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

    .back-to-top.visible {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .back-to-top:hover {
        background: linear-gradient(135deg, #DB4BA9 0%, #6A0DAD 100%);
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

/* Contact Us Button */
.contact-btn {
    display: block;
    margin: 30px auto 0;
    background: linear-gradient(135deg, #0a1e3b 0%, #3b6cb7 100%);
    color: white;
    padding: 20px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 550;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.3);
    max-width: 220px;
    white-space: nowrap;
}

    .contact-btn:hover {
        background: linear-gradient(135deg, #3b6cb7 0%, #6b9cff 100%);
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 25px rgba(192, 192, 192, 0.4);
    }

/* Mobile Header Adjustments */
@media (max-width: 768px) {
    /* Header fixes for mobile */
    header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 12px;
        margin: 2px;
    }
    
    /* Prevent horizontal scrolling on mobile */
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
}

/* Full-screen mobile modals for PDFs */
@media (max-width: 768px) {
    #datasheet .modal-content, 
    #manual .modal-content {
        width: 95% !important;
        height: 90vh !important;
        margin: 5% auto !important;
        padding: 15px !important;
    }
    
    #datasheet .modal-body iframe,
    #manual .modal-body iframe {
        height: 85vh !important;
        width: 100% !important;
    }
    
    /* FIXED: Technical specs and warranty modals - INCREASED HEIGHT & SCROLLING */
    #techspecs .modal-content,
    #warranty .modal-content {
        max-height: 95vh !important; /* INCREASED: from 100vh to 95vh for better fit */
        height: 95vh !important; /* ADDED: Fixed height for full utilization */
        overflow-y: auto !important; /* CHANGED: from visible to auto for scrolling */
        margin: 2.5% auto !important; /* ADDED: Better centering */
        padding: 20px !important; /* INCREASED: More breathing room */
        box-sizing: border-box !important; /* ADDED: Include padding in height */
    }
    
    #techspecs .modal-body,
    #warranty .modal-body {
        max-height: 85vh !important; /* INCREASED: from 70vh to 85vh */
        height: 85vh !important; /* ADDED: Fixed height for content */
        overflow-y: auto !important; /* CHANGED: Allow vertical scrolling */
        padding-right: 10px !important; /* ADDED: Space for scrollbar */
        box-sizing: border-box !important; /* ADDED: Include padding */
    }
    
    /* Ensure modal content doesn't overflow */
    #techspecs .modal-content ul,
    #warranty .modal-content ul,
    #techspecs .modal-content ol,
    #warranty .modal-content ol {
        max-height: 75vh !important; /* INCREASED: More space for lists */
        overflow-y: auto !important;
        padding-right: 8px !important;
    }
    
    /* Adjust warranty sections for better mobile viewing */
    #warranty .warranty-section {
        margin-bottom: 15px;
        padding: 12px;
        /* ADDED: Prevent overflow in sections */
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    #warranty .warranty-exclusions,
    #warranty .warranty-steps {
        max-height: none !important; /* REMOVED: Allow full height */
        overflow: visible !important; /* CHANGED: Let content flow naturally */
        padding-left: 15px !important; /* ADDED: Better indentation */
    }
    
    /* Mobile-specific list styling */
    #techspecs .modal-body li,
    #warranty .modal-body li {
        margin-bottom: 8px !important;
        padding: 8px 12px !important;
        line-height: 1.4 !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }
    
    /* Ensure modal titles don't cause overflow */
    #techspecs .modal h2,
    #warranty .modal h2 {
        font-size: 1.4rem !important; /* REDUCED: Smaller title on mobile */
        margin-bottom: 15px !important;
        word-break: break-word !important;
    }
}

/* Extra small devices specific fixes */
@media (max-width: 480px) {
    /* Even more compact header */
    .header-nav {
        gap: 5px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    /* ENHANCED: Full-screen modals with more height */
    #datasheet .modal-content, 
    #manual .modal-content {
        width: 98% !important;
        height: 95vh !important; /* INCREASED: More vertical space */
        margin: 2% auto !important;
        padding: 10px !important;
    }
    
    #datasheet .modal-body iframe,
    #manual .modal-body iframe {
        height: 90vh !important; /* INCREASED: Full utilization */
    }
    
    /* FIXED: Tech specs and warranty - MAXIMUM HEIGHT FOR TINY SCREENS */
    #techspecs .modal-content,
    #warranty .modal-content {
        max-height: 98vh !important; /* INCREASED: Almost full screen */
        height: 98vh !important; /* FIXED: Full height utilization */
        margin: 1% auto !important; /* ADJUSTED: Minimal margin */
        padding: 15px !important; /* REDUCED: More content space */
    }
    
    #techspecs .modal-body,
    #warranty .modal-body {
        max-height: 88vh !important; /* INCREASED: More content space */
        height: 88vh !important; /* FIXED: Full height */
        padding-right: 8px !important; /* ADJUSTED: Less scrollbar space */
    }
    
    /* TINY SCREEN LIST OPTIMIZATION */
    #techspecs .modal-body li,
    #warranty .modal-body li {
        margin-bottom: 6px !important; /* REDUCED: Tighter spacing */
        padding: 6px 10px !important; /* REDUCED: Compact padding */
        font-size: 0.9rem !important; /* REDUCED: Smaller text */
        line-height: 1.3 !important; /* TIGHTER: Line height */
    }
    
    /* TINY SCREEN TITLES */
    #techspecs .modal h2,
    #warranty .modal h2 {
        font-size: 1.3rem !important; /* REDUCED: Smaller title */
        margin-bottom: 12px !important; /* REDUCED: Less margin */
        padding-bottom: 8px !important; /* ADDED: Compact underline space */
    }
    
    /* Warranty sections for tiny screens */
    #warranty .warranty-section {
        margin-bottom: 12px !important; /* REDUCED: Tighter spacing */
        padding: 10px !important; /* REDUCED: Compact padding */
        font-size: 0.9rem !important; /* REDUCED: Smaller text */
    }
    
    #warranty .warranty-section h3 {
        font-size: 1.1rem !important; /* REDUCED: Smaller section titles */
        margin-bottom: 6px !important; /* REDUCED: Tighter spacing */
    }
    
    /* Prevent any horizontal scrolling */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix for product grid potentially causing overflow */
    .product-grid {
        width: 100%;
        margin: 0 auto;
        padding: 0 5px; /* ADDED: Small padding for safety */
    }
    
    /* Modal close button positioning for tiny screens */
    .close {
        font-size: 28px !important; /* REDUCED: Smaller close button */
        right: 15px !important;
        top: 15px !important;
    }
}

/* Ultra-tiny screen fixes (< 360px) */
@media (max-width: 360px) {
    /* MAXIMUM MODAL SPACE FOR TINY SCREENS */
    #techspecs .modal-content,
    #warranty .modal-content {
        height: 99vh !important; /* ALMOST FULL SCREEN */
        margin: 0.5% auto !important; /* MINIMAL MARGIN */
        padding: 12px !important; /* COMPACT PADDING */
    }
    
    #techspecs .modal-body,
    #warranty .modal-body {
        height: 89vh !important; /* MAXIMUM CONTENT SPACE */
        padding-right: 6px !important; /* MINIMAL SCROLLBAR SPACE */
    }
    
    /* ULTRA-COMPACT CONTENT */
    #techspecs .modal h2,
    #warranty .modal h2 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
    
    #techspecs .modal-body li,
    #warranty .modal-body li {
        font-size: 0.85rem !important;
        padding: 5px 8px !important;
        margin-bottom: 5px !important;
        line-height: 1.25 !important;
    }
    
    #warranty .warranty-section {
        padding: 8px !important;
        margin-bottom: 10px !important;
    }
    
    #warranty .warranty-section h3 {
        font-size: 1.0rem !important;
        margin-bottom: 5px !important;
    }
    
    /* Close button for ultra-tiny screens */
    .close {
        font-size: 24px !important;
        right: 12px !important;
        top: 12px !important;
        width: 35px !important;
        height: 35px !important;
    }
}

/* Landscape mobile modal adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    /* Landscape modals get more width, less height */
    #techspecs .modal-content,
    #warranty .modal-content {
        width: 90% !important;
        height: 85vh !important;
        margin: 7.5% auto !important;
        padding: 18px !important;
    }
    
    #techspecs .modal-body,
    #warranty .modal-body {
        height: 75vh !important;
        padding-right: 12px !important;
    }
    
    #techspecs .modal h2,
    #warranty .modal h2 {
        font-size: 1.3rem !important;
    }
    
    #techspecs .modal-body li,
    #warranty .modal-body li {
        padding: 7px 10px !important;
        font-size: 0.9rem !important;
    }
}

/* High DPI mobile devices (iPhone Retina, etc.) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Ensure crisp rendering for high DPI screens */
    #techspecs .modal-content,
    #warranty .modal-content {
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        image-rendering: -webkit-optimize-contrast !important;
    }
    
    #techspecs .modal-body li,
    #warranty .modal-body li {
        border-radius: 4px !important; /* Crisp borders on retina */
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important; /* Subtle shadows */
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .products:first-of-type .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products h2 {
        font-size: 2rem;
    }

    .banner-content {
        flex-direction: column;
        gap: 40px;
    }

    .banner-image, .banner-features {
        max-width: 100%;
        animation: none;
    }

    .banner-features {
        text-align: center;
    }

    .banner-slider, .banner-slider-main {
        height: 350px;
    }

    .image-description-item {
        height: 300px;
        padding: 10px;
    }

        .image-description-item img {
            max-height: 100%;
        }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .product-mrp {
        width: 180px;
        margin: 15px auto;
    }

    .mrp-price {
        font-size: 1.6rem;
    }

    /* Responsive adjustments for full-screen modals */
    .full-screen-modal {
        width: 98% !important;
        max-width: 98vw !important;
        height: 95vh !important;
        max-height: 95vh !important;
        margin: 1% auto !important;
        padding: 15px !important;
    }

    #datasheet .modal-body iframe,
    #manual .modal-body iframe {
        height: 80vh !important;
    }
}

@media (max-width: 768px) {
    .products:first-of-type .product-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-tile {
        height: 340px;
    }

        .product-tile h3 {
            font-size: 1.6rem;
        }

        .product-tile .product-subtitle {
            font-size: 1rem;
        }

    .banner-slider, .banner-slider-main {
        height: 300px;
    }

    .banner-features {
        padding: 15px;
    }

        .banner-features h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
        }

            .banner-features h3::after {
                width: 40px;
            }

        .banner-features li {
            font-size: 0.9rem;
            margin-bottom: 8px;
            padding: 5px 8px;
        }

    .feature-icon {
        font-size: 1.1rem;
        margin-right: 8px;
        min-width: 20px;
    }

    .image-description-item {
        height: 250px;
        padding: 8px;
    }

        .image-description-item img {
            max-height: 100%;
        }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-description p {
        font-size: 1rem;
        padding: 15px;
    }

    .modal-content {
        margin: 10% auto;
        padding: 25px;
    }

    #datasheet .modal-content, #manual .modal-content {
        max-width: 90%;
    }

    #techspecs .modal-content, #warranty .modal-content {
        padding: 30px;
    }

    .modal-body iframe {
        height: 500px;
    }

    .back-to-top {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .contact-btn {
        padding: 8px 25px;
        font-size: 0.9rem;
        max-width: 200px;
        white-space: nowrap;
    }

    footer {
        margin-top: 20px;
    }

    .product-mrp {
        width: 200px; /* Smaller on mobile */
        margin: 10px auto; /* Center on mobile */
        padding: 8px 12px;
    }

    .mrp-price {
        font-size: 1.4rem;
    }

    .mrp-label {
        font-size: 0.85rem;
    }

    .full-screen-modal .close {
        right: 15px !important;
        top: 15px !important;
        width: 35px;
        height: 35px;
        font-size: 20px !important;
    }

    .full-screen-modal h2 {
        top: 15px !important;
        left: 15px !important;
        padding: 8px 15px !important;
        font-size: 1.3rem !important;
    }

    .full-screen-modal .download-btn {
        bottom: 15px !important;
        right: 15px !important;
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }

    .full-screen-modal .modal-body {
        padding-top: 70px !important;
    }

    #warranty .warranty-section {
        margin-bottom: 12px;
        padding: 10px;
    }

        #warranty .warranty-section h3 {
            font-size: 1rem;
            margin-bottom: 6px;
            gap: 5px;
        }

    #warranty .warranty-exclusions li,
    #warranty .warranty-steps li {
        padding: 5px 8px;
        margin-bottom: 3px;
        padding-left: 10px;
    }

    #warranty .warranty-note {
        margin-top: 8px;
        padding: 6px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .product-tile {
        height: 300px;
    }

        .product-tile h3 {
            font-size: 1.4rem;
        }

        .product-tile .product-subtitle {
            font-size: 0.9rem;
        }

    .products h2 {
        font-size: 1.8rem;
    }

    .banner-slider, .banner-slider-main {
        height: 250px;
    }

    .banner-features {
        padding: 10px;
    }

        .banner-features h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            padding-bottom: 8px;
        }

            .banner-features h3::after {
                width: 35px;
            }

        .banner-features li {
            font-size: 0.85rem;
            margin-bottom: 6px;
            padding: 4px 6px;
        }

    .feature-icon {
        font-size: 1rem;
        margin-right: 6px;
        min-width: 18px;
    }

    .image-description-item {
        height: 200px;
        padding: 5px;
    }

        .image-description-item img {
            max-height: 100%;
        }

    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .product-description p {
        font-size: 0.9rem;
        padding: 12px;
    }

    .modal-content {
        padding: 20px;
    }

    #datasheet .modal-content, #manual .modal-content {
        max-width: 95%;
    }

    #techspecs .modal-content, #warranty .modal-content {
        padding: 20px;
    }

    .modal-body iframe {
        height: 400px;
    }

    .modal h2 {
        font-size: 1.6rem;
    }

    .modal-body {
        font-size: 1rem;
    }

    #techspecs .modal-body li, #warranty .modal-body li {
        padding: 10px 12px;
        margin-bottom: 8px;
    }

    #warranty .modal-body p {
        font-size: 1rem;
        padding: 8px 12px;
    }

    .logo {
        height: 40px;
    }

    .back-to-top {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .contact-btn {
        padding: 6px 20px;
        font-size: 0.8rem;
        max-width: 180px;
        white-space: nowrap;
    }

    footer {
        margin-top: 10px;
    }

    .product-mrp {
        width: 200px;
        padding: 8px 12px;
        margin: 10px auto;
    }

    .mrp-label {
        font-size: 0.8rem;
    }

    .mrp-price {
        font-size: 1.3rem;
    }

    .full-screen-modal {
        width: 100% !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important;
        padding: 10px !important;
        border-radius: 0 !important;
    }

    #datasheet .modal-body iframe,
    #manual .modal-body iframe {
        height: 75vh !important;
        border-radius: 0 !important;
    }

    .full-screen-modal .close {
        right: 10px !important;
        top: 10px !important;
        width: 30px;
        height: 30px;
        font-size: 18px !important;
    }

    .full-screen-modal h2 {
        top: 10px !important;
        left: 10px !important;
        padding: 6px 12px !important;
        font-size: 1.1rem !important;
    }

    .full-screen-modal .download-btn {
        bottom: 10px !important;
        right: 10px !important;
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }

    .full-screen-modal .modal-body {
        padding-top: 60px !important;
    }
}