/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #f3e5f5 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(231, 76, 60, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(52, 152, 219, 0.02) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(231, 76, 60, 0.02) 50%, transparent 52%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.logo h1 {
    color: #3498db;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #3498db 0%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.dropdown {
    position: relative;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu Active States */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.hero-text-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInLeft 1s ease-out;
}

.hero-text-box h1 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #2c3e50;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-features {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.hero-feature i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.hero-feature span {
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.hero-buttons .btn-secondary:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    border-color: rgba(52, 152, 219, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: #fff;
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #7f8c8d 0%, #6c7b7d 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(149, 165, 166, 0.4);
    border-color: rgba(149, 165, 166, 0.5);
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08), 0 6px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #e74c3c, #f39c12, #27ae60);
    background-size: 200% 100%;
    animation: gradientShift 4s ease-in-out infinite;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 10px 25px rgba(0,0,0,0.1);
    border-color: rgba(52, 152, 219, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3498db 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #3498db, #e74c3c, #f39c12, #27ae60, #9b59b6);
    border-radius: 3px;
    animation: gradientShift 3s ease-in-out infinite;
}

.section-header h2 {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 30%, #e74c3c 70%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Categories Section */
.categories {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.8) 0%, rgba(227, 242, 253, 0.6) 100%);
    position: relative;
    overflow: hidden;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(231, 76, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.categories::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-items: center;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* When there's only one category, limit its width */
.categories-grid:has(.category-card:only-child) {
    grid-template-columns: minmax(300px, 500px);
    justify-content: center;
}

/* Alternative approach for browsers that don't support :has() */
.categories-grid.single-item {
    grid-template-columns: minmax(300px, 500px);
    justify-content: center;
}

.category-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08), 0 6px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 350px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    backdrop-filter: blur(10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #e74c3c, #f39c12, #27ae60, #9b59b6);
    background-size: 200% 100%;
    animation: gradientShift 4s ease-in-out infinite;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 10px 25px rgba(0,0,0,0.1);
    border-color: rgba(52, 152, 219, 0.3);
}

.category-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #ffffff;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform-origin: center center;
}

.category-image .product-carousel {
    height: 100%;
    width: 100%;
}

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

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

.category-content {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,255,0.98) 100%);
    backdrop-filter: blur(10px);
}

.category-content h3 {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-content p {
    color: #555;
    margin-bottom: 1.75rem;
    line-height: 1.7;
    flex: 1;
    font-size: 1rem;
}

.category-content .btn {
    margin-top: auto;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.875rem 2rem;
}

/* Subcategories Section */
.subcategories {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, rgba(243, 245, 255, 0.7) 0%, rgba(236, 242, 255, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.subcategories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(243, 156, 18, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.subcategories::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Add subtle texture overlay to main sections */
.categories, .subcategories {
    position: relative;
}

.categories::before, .subcategories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.02) 50%, transparent 52%);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.category-section {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    position: relative;
}

.category-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #e74c3c, #f39c12, #27ae60);
    border-radius: 2px;
}

.category-header h3 {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.category-header p {
    color: #555;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    justify-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

/* When there's only one subcategory, limit its width */
.subcategories-grid:has(.subcategory-card:only-child) {
    grid-template-columns: minmax(280px, 400px);
    justify-content: center;
}

/* Alternative approach for browsers that don't support :has() */
.subcategories-grid.single-item {
    grid-template-columns: minmax(280px, 400px);
    justify-content: center;
}

.subcategory-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(52, 152, 219, 0.08);
    position: relative;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.subcategory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    opacity: 0.7;
}

.subcategory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12), 0 6px 20px rgba(0,0,0,0.08);
    border-color: rgba(52, 152, 219, 0.2);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { 
        transform: translate(-50%, -50%) translateY(0px);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) translateY(-20px);
        opacity: 0.8;
    }
}

.subcategory-image {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subcategory-image::before {
    display: none;
}

.subcategory-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    z-index: 1;
    position: relative;
}

.subcategory-card:hover .subcategory-image::before {
    display: none;
}

.subcategory-card:hover .subcategory-image img {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}

.subcategory-content {
    padding: 1.25rem 1.5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,255,0.95) 100%);
    backdrop-filter: blur(10px);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.subcategory-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.subcategory-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
    font-weight: 400;
    flex: 1;
}

.subcategory-content .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    background: #ffffff;
    border: 1.5px solid #3498db;
    color: #3498db;
    border-radius: 6px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    align-self: center;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.subcategory-content .btn:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.subcategory-content .btn::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: left 0.5s;
}

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

/* Responsive adjustments for subcategories */
@media (max-width: 768px) {
    .subcategories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .category-header h3 {
        font-size: 1.75rem;
    }
    
    .subcategory-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .subcategories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
    }
}

/* Features Section */
.features {
    background: #fff;
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    background: #f8f9fa;
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.about-feature i {
    color: #3498db;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 500;
    color: #333;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3498db;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

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

.contact-info .contact-item i {
    color: #3498db;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-info .contact-item span {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumbs li {
    color: #666;
}

.breadcrumbs li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumbs a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

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

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform-origin: center center;
}

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

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-content .model {
    color: #3498db;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Page Headers */
.page-header {
    background: linear-gradient(45deg, #3498db 0%, #2c3e50 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Subcategory Navigation */
.subcategory-nav {
    background: #fff;
    padding: 2rem 0;
    border-bottom: 1px solid #e1e8ed;
}

.subcategory-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.subcategory-nav a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.subcategory-nav a:hover,
.subcategory-nav a.active {
    background: #3498db;
    color: #fff;
}

/* Product Sections */
.product-section {
    padding: 4rem 0;
}

.product-section:nth-child(even) {
    background: #f8f9fa;
}

/* About Page Styles */
.about-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-text .lead {
    font-size: 1.3rem;
    color: #3498db;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-hero-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform-origin: center center;
}

.about-hero-image img:hover {
    transform: scale(1.02);
}

/* Mission Vision Section */
.mission-vision {
    padding: 5rem 0;
    background: #fff;
}

.mission-vision-merged {
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.mission-vision-merged::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.mission-content,
.vision-content {
    flex: 1;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.mission-content {
    border-right: 1px solid #dee2e6;
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.mission-icon i,
.vision-icon i {
    font-size: 2rem;
    color: #fff;
}

.mission-content h3,
.vision-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.mission-content p,
.vision-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.values {
    background: #f8f9fa;
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.3);
    position: relative;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon::before {
    opacity: 0.6;
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.value-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

/* Manufacturing Section */
.manufacturing {
    background: #fff;
    padding: 5rem 0;
}

.manufacturing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.manufacturing-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manufacturing-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.manufacturing-features {
    display: grid;
    gap: 2rem;
}

.manufacturing-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.manufacturing-features .feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.manufacturing-features .feature i {
    color: #3498db;
    font-size: 1.8rem;
    margin-top: 0.2rem;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.manufacturing-features .feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.manufacturing-features .feature p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.manufacturing-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.manufacturing-image img:hover {
    transform: scale(1.02);
}

/* Team Section */
.team {
    background: #fff;
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

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

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.member-info p {
    color: #666;
    line-height: 1.6;
}

/* Certifications Section */
.certifications {
    background: #f8f9fa;
    padding: 5rem 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.certification-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-icon i {
    font-size: 2rem;
    color: #fff;
}

.certification-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.certification-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-section {
    display: flex;
    justify-content: center;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
}

.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-details .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details .contact-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.contact-details .contact-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-details .contact-text p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.contact-details .contact-text p a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin: 0.2rem 0;
}

.contact-details .contact-text p a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.map-section {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 10px;
}

/* Location Features */
.location-features {
    display: grid;
    gap: 1rem;
}

.location-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-features .feature i {
    color: #3498db;
    font-size: 1.2rem;
}

.location-features .feature span {
    font-weight: 500;
    color: #333;
}

.map-placeholder {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    border: 2px dashed #e1e8ed;
}

.map-content i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.map-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.showroom-address {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    margin-top: 1rem;
}

.showroom-address p {
    margin: 0;
    color: #495057;
    line-height: 1.5;
}

.showroom-address strong {
    color: #212529;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Enquiry Page Styles */
.enquiry-section {
    padding: 4rem 0;
}

.enquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.enquiry-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.enquiry-features {
    display: grid;
    gap: 2rem;
}

.enquiry-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.enquiry-features .feature i {
    color: #3498db;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.enquiry-features .feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.enquiry-features .feature p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.enquiry-form-container {
    display: flex;
    justify-content: center;
}

/* Additional Info Section */
.additional-info {
    background: #f8f9fa;
    padding: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon i {
    font-size: 2rem;
    color: #fff;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats & Features Section */
.stats-features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.stats-features .section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stats-features .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
}

.stats-features .section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-features .stats-grid {
    margin-bottom: 4rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.stats-features .stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-features .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.stats-features .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stats-features .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stats-features .stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-features .features-grid {
    margin-top: 0;
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.stats-features .feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.stats-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stats-features .feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.stats-features .feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.stats-features .feature-item:hover .feature-icon::before {
    opacity: 0.6;
    transform: scale(1.1);
}

.stats-features .feature-icon i {
    font-size: 2.5rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stats-features .feature-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.stats-features .feature-item p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Unified Stats & Features Grid */
.stats-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stats-features-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.stats-features-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.stats-features-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Stats Items */
.stats-features-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stats-features-item .stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Items */
.stats-features-item .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.stats-features-item .feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.stats-features-item:hover .feature-icon::before {
    opacity: 0.6;
    transform: scale(1.1);
}

.stats-features-item .feature-icon i {
    font-size: 2rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stats-features-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.stats-features-item p {
    color: #6c757d;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Zoom Popup Modal Styles */
.zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.zoom-modal-content {
    position: relative;
    max-width: min(80vw, 700px);
    max-height: 75vh;
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
    min-width: 400px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

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

.zoom-modal-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    flex: 1;
    min-height: 200px;
    max-height: calc(75vh - 120px);
    padding: 20px;
    overflow: hidden;
}

.zoom-modal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    width: auto;
    height: auto;
}

.zoom-modal-controls {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.zoom-control-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.zoom-control-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.zoom-control-btn:active {
    transform: scale(0.95);
}

.zoom-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.zoom-close-btn:hover {
    background: #ff4757;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.zoom-close-btn:active {
    transform: scale(0.95);
}

.zoom-zoom-in-btn,
.zoom-zoom-out-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.zoom-zoom-in-btn:hover,
.zoom-zoom-out-btn:hover {
    background: #3498db;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.zoom-zoom-in-btn:active,
.zoom-zoom-out-btn:active {
    transform: scale(0.95);
}

.zoom-zoom-in-btn:disabled,
.zoom-zoom-out-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.zoom-zoom-in-btn:disabled:hover,
.zoom-zoom-out-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.zoom-modal-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px 20px;
    backdrop-filter: blur(10px);
}

.zoom-modal-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #fff;
}

.zoom-modal-info .model {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Product image cursor pointer */
.product-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.02);
}

/* WhatsApp Share Button */
.whatsapp-share-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.whatsapp-share-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-share-btn:active {
    transform: translateY(0);
}

.whatsapp-share-btn .enquire-text {
    font-weight: 600;
}

.whatsapp-share-btn i {
    font-size: 1.1rem;
}

.whatsapp-share-btn:hover i {
    transform: scale(1.1);
}



.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* Error Pages */
.error-page {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.error-icon {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.error-content h1 {
    font-size: 3rem;
    color: #343a40;
    margin-bottom: 1rem;
    font-weight: 700;
}

.error-content p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-actions .btn {
    min-width: 150px;
}

.error-suggestions {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.error-suggestions h3 {
    color: #343a40;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-suggestions li {
    margin-bottom: 0.5rem;
}

.error-suggestions a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-suggestions a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 1rem;
        flex-direction: column;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .subcategory-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .enquiry-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .manufacturing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .enquiry-form {
        padding: 2rem;
    }
} 

 

/* Multi-Column Dropdown Styles */
.dropdown-menu.multi-column {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem;
    min-width: 800px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 70vh;
    overflow-y: auto;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dropdown:hover .dropdown-menu.multi-column {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-column {
    flex: 1;
    min-width: 160px;
    max-width: 180px;
}

.dropdown-column li {
    list-style: none;
    margin-bottom: 0.2rem;
}

.dropdown-column a {
    display: block;
    padding: 0.4rem 0.6rem;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 0.85rem;
    border-radius: 4px;
}

.dropdown-column a:hover {
    background: #f8f9fa;
    color: #3498db;
}

/* Category Headers in Multi-Column Dropdown */
.dropdown-column .category-header {
    padding: 0.6rem 0.6rem 0.2rem 0.6rem !important;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
}

.dropdown-column .category-header strong {
    color: #2c3e50;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 800px;
    max-width: 85vw;
    max-height: 70vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Adjust positioning to prevent right-side cropping */
@media (min-width: 1200px) {
    .mega-menu {
        left: auto;
        right: 0;
        transform: translateY(-10px);
    }
    
    .dropdown:hover .mega-menu {
        transform: translateY(0);
    }
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Override for larger screens */
@media (min-width: 1200px) {
    .dropdown:hover .mega-menu {
        transform: translateY(0);
    }
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.mega-menu-column {
    min-width: 140px;
}

.mega-menu-category {
    margin: 0 0 0.8rem 0;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #3498db;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-subcategories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-subcategories li {
    margin-bottom: 0.3rem;
}

.mega-menu-subcategories a {
    display: block;
    padding: 0.4rem 0.6rem;
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mega-menu-subcategories a:hover {
    background: #f8f9fa;
    color: #3498db;
    transform: translateX(5px);
}

/* Mobile responsive for multi-column dropdown */
@media (max-width: 768px) {
    .dropdown-menu.multi-column {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-left: 20px;
        border-radius: 0;
        border-left: 2px solid #3498db;
        max-height: 60vh;
        overflow-y: auto;
        display: block;
        min-width: auto;
        padding: 0.8rem;
        gap: 0;
    }
    
    .dropdown-column {
        min-width: auto;
        max-width: none;
        margin-bottom: 0.8rem;
    }
    
    .dropdown-column a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .dropdown-column .category-header {
        padding: 8px 12px 4px 12px !important;
        font-size: 0.75rem;
        border-bottom: 1px solid #dee2e6;
    }
    
    /* Mobile responsive for mega menu */
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-left: 20px;
        border-radius: 0;
        border-left: 2px solid #3498db;
        min-width: auto;
        max-width: none;
        padding: 0.8rem;
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .mega-menu-content {
        display: block;
        gap: 0;
    }
    
    .mega-menu-column {
        min-width: auto;
        margin-bottom: 1rem;
    }
    
    .mega-menu-category {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.2rem;
    }
    
    .mega-menu-subcategories a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Tablet responsive for mega menu */
@media (max-width: 1024px) and (min-width: 769px) {
    .mega-menu {
        min-width: 600px;
        max-width: 85vw;
        left: 0;
        transform: translateX(0) translateY(-10px);
        max-height: 65vh;
        overflow-y: auto;
    }
    
    .dropdown:hover .mega-menu {
        transform: translateX(0) translateY(0);
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .mega-menu-column {
        min-width: 130px;
    }
}

/* Small desktop responsive for mega menu */
@media (max-width: 1200px) and (min-width: 1025px) {
    .mega-menu {
        min-width: 700px;
        max-width: 80vw;
        left: auto;
        right: 0;
        transform: translateY(-10px);
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .dropdown:hover .mega-menu {
        transform: translateY(0);
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .mega-menu-column {
        min-width: 150px;
    }
}

/* Large desktop responsive for mega menu */
@media (min-width: 1400px) {
    .mega-menu {
        min-width: 900px;
        max-width: 75vw;
        left: auto;
        right: 0;
        transform: translateY(-10px);
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .dropdown:hover .mega-menu {
        transform: translateY(0);
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
    
    .mega-menu-column {
        min-width: 160px;
    }
}

/* Product Carousel Styles */
.product-carousel {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    background: 
        linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0,0,0,0.01) 10px,
            rgba(0,0,0,0.01) 20px
        );
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    animation: subtleFloat 20s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.subcategory-card:hover .product-carousel {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    background: #f8f9fa;
    border-radius: 8px;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide:not(.active) {
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    background: 
        linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%),
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(231, 76, 60, 0.03) 0%, transparent 50%);
    transition: transform 0.3s ease;
    padding: 8px;
    border: 1px solid rgba(0,0,0,0.05);
}

.subcategory-card:hover .carousel-slide img {
    transform: scale(1.02);
}

/* Loading state for carousel images */
.carousel-slide img {
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background-color: #3498db;
    border-color: #3498db;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive carousel */
@media (max-width: 768px) {
    .product-carousel {
        height: 200px;
    }
    
    .carousel-indicators {
        bottom: 8px;
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }
}

@media (max-width: 480px) {
    .product-carousel {
        height: 200px;
    }
    
             .btn-whatsapp {
             padding: 0.8rem 1.5rem;
             font-size: 0.9rem;
         }
}

/* Responsive styles for mission-vision */
@media (max-width: 768px) {
    .mission-vision-merged {
        flex-direction: column;
    }
    
    .mission-content {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }
    
    .mission-content,
    .vision-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .mission-content,
    .vision-content {
        padding: 1.5rem 1rem;
    }
    
    .mission-content h3,
    .vision-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .mission-content p,
    .vision-content p {
        font-size: 1rem;
    }
}

/* SEO Links Section */
.seo-links-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.seo-links-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #3498db;
    text-align: center;
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.seo-links-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-links-category h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ecf0f1;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.seo-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.seo-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    border-radius: 5px;
    padding-left: 0.5rem;
}

.seo-links a:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    transform: translateX(5px);
}

/* Responsive styles for SEO links */
@media (max-width: 768px) {
    .seo-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .seo-links-category {
        padding: 1rem;
    }
    
    .seo-links-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .seo-links-category h4 {
        font-size: 1rem;
    }
    
    .seo-links a {
        font-size: 0.85rem;
    }
}