:root {
    --primary-red: #d32f2f;
    --dark-red: #b71c1c;
    --light-red: #ff6659;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --medium-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    font-size: 32px;
}

.navbar-toggler {
    border: none;
    padding: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28211, 47, 47, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--white);
    background-color: var(--primary-red);
}

.header-btn {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.header-btn:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    padding: 50px 0;
    background-color: var(--light-gray);
    overflow: hidden;
}

.hero-left {
    padding-right: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--primary-red);
}

.hero-text {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-btns .btn {
    padding: 12px 30px;
    font-weight: 500;
    margin-right: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary-custom {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--dark-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.btn-outline-custom {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background-color: transparent;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-right {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.machine-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.machine-slide.active {
    opacity: 1;
}

.machine-slide i {
    font-size: 100px;
    color: #9e9e9e;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: -20px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--primary-red);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--medium-gray);
    font-size: 18px;
    margin-top: 20px;
}

.section-title-left {
    text-align: left;
    margin-bottom: 30px;
}

.section-title-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-left h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--primary-red);
    bottom: -10px;
    left: 0;
}

/* Trusted Brands Section */
.trusted-brands {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.brands-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.brands-track {
    display: flex;
    width: 300%;
}

.brand-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin: 0 15px;
    width: 280px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.brand-logo {
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo i {
    font-size: 40px;
    color: var(--primary-red);
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.brand-intro {
    color: var(--medium-gray);
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

.blur-left, .blur-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.blur-left {
    left: 0;
    background: linear-gradient(to right, var(--white) 20%, transparent);
}

.blur-right {
    right: 0;
    background: linear-gradient(to left, var(--white) 20%, transparent);
}

/* Dealers Section */
.dealers-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.dealers-map {
    height: 100%;
}

.map-placeholder {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder i {
    font-size: 80px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.dealer-info {
    padding-left: 40px;
}

.dealer-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.dealer-info p {
    color: var(--medium-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.dealer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.dealer-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.dealer-features li i {
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 18px;
}

/* Quality Machines Section */
.quality-machines {
    padding: 80px 0;
    background-color: var(--white);
}

.machine-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.machine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.machine-img {
    height: 220px;
    overflow: hidden;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.machine-img i {
    font-size: 80px;
    color: #9e9e9e;
}

.machine-info {
    padding: 25px;
}

.machine-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.machine-desc {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.machine-price {
    color: var(--primary-red);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Recommended Section */
.recommended-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.recommended-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.form-control-custom {
    height: 50px;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.form-control-custom:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25);
    outline: none;
}

textarea.form-control-custom {
    height: 120px;
    resize: none;
}

.product-flow {
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-flow i {
    font-size: 80px;
    color: var(--primary-red);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white);
}

.feature-box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-red);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-red);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background-color: var(--light-gray);
    padding: 100px 0 60px;
    margin-top: -20px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-gray);
}

.page-header p {
    font-size: 18px;
    color: var(--medium-gray);
}

/* Page Content */
.page-content {
    padding: 80px 0;
}

/* About Page */
.about-section {
    margin-bottom: 60px;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 18px;
}

.stats {
    margin-top: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.stat-box h3 {
    font-size: 36px;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--medium-gray);
    font-size: 14px;
}

.value-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 32px;
    color: var(--primary-red);
}

.value-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
}

.team-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-img {
    height: 250px;
    overflow: hidden;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-red);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-desc {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Products Page */
.products-section {
    padding: 20px 0;
    background-color: var(--light-gray);
}

.product-filter {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background-color: var(--white);
    border: 1px solid #ddd;
    color: var(--dark-gray);
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.product-search {
    margin-bottom: 10px;
    margin-top: -40px;
}

.search-box {
    position: relative;
    border: solid red 2px;
}

.search-box input {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 10px 15px 10px 45px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25);
    outline: none;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.no-results i {
    font-size: 60px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Gallery Page */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

/* Premium Filter Styles */
.premium-filter-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid rgba(211, 47, 47, 0.1);
}

.filter-toolbar {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.filter-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-category {
    flex: 1;
    min-width: 250px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(211, 47, 47, 0.1);
}

.filter-label i {
    color: var(--primary-red);
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.filter-label span {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-chip:hover {
    border-color: var(--primary-red);
    background: rgba(211, 47, 47, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.1);
}

.filter-chip.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
}

.filter-chip i {
    font-size: 12px;
}

.filter-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
}

.filter-chip:not(.active) .filter-badge {
    background: #e9ecef;
    color: #666;
}

.new-badge {
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-clear {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #dc3545;
    color: #dc3545;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-clear:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(211, 47, 47, 0.1);
    color: var(--primary-red);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.filter-tag i {
    cursor: pointer;
    font-size: 11px;
    opacity: 0.7;
}

.filter-tag i:hover {
    opacity: 1;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

/* Premium Filter Styles for Products */
.premium-filter-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid rgba(211, 47, 47, 0.1);
}

.filter-toolbar {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.filter-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-category {
    flex: 1;
    min-width: 250px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(211, 47, 47, 0.1);
}

.filter-label i {
    color: var(--primary-red);
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.filter-label span {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-chip:hover {
    border-color: var(--primary-red);
    background: rgba(211, 47, 47, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.1);
}

.filter-chip.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
}

.filter-chip i {
    font-size: 12px;
}

.filter-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 4px;
}

.filter-chip:not(.active) .filter-badge {
    background: #e9ecef;
    color: #666;
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-clear {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #dc3545;
    color: #dc3545;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-clear:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(211, 47, 47, 0.1);
    color: var(--primary-red);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: default;
}

.filter-tag i {
    cursor: pointer;
    font-size: 11px;
    opacity: 0.7;
}

.filter-tag i:hover {
    opacity: 1;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

.gallery-filter {
    margin-bottom: 40px;
}

.gallery-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-btn {
    background-color: var(--white);
    border: 1px solid #ddd;
    color: var(--dark-gray);
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.gallery-btn.active, .gallery-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    height: 250px;
    overflow: hidden;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img i {
    font-size: 80px;
    color: #9e9e9e;
}

.gallery-info {
    padding: 20px;
}

.gallery-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-info p {
    color: var(--medium-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.gallery-type {
    color: var(--primary-red);
    font-weight: 500;
    font-size: 14px;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-info-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 20px;
    color: var(--primary-red);
}

.contact-info-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-content p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

/* Footer */
.footer {
    background-color: #222;
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}

.footer-about {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
}

.footer-heading:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
    bottom: -8px;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    color: var(--primary-red);
    margin-right: 10px;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--primary-red);
    transform: translateY(-5px);
}


.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 14px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Products Page Specific Styles */
.product-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-img {
    height: 220px;
    overflow: hidden;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img i {
    font-size: 80px;
    color: #9e9e9e;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.product-desc {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    height: 60px;
    overflow: hidden;
}

.product-specs {
    font-size: 13px;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.product-price {
    color: var(--primary-red);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-red);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.features-list p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-list i {
    margin-right: 10px;
}

/* Gallery Page Additional Styles */
.video-showcase {
    background-color: var(--light-gray);
}

.video-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    height: 200px;
    background-color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.video-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.video-placeholder p {
    margin: 0;
    font-size: 16px;
}

.video-info {
    padding: 20px;
}

.video-info h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.video-info p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
}

.info-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    background-color: rgba(211, 47, 47, 0.05);
}

.info-item h5 {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-item h5 i {
    margin-right: 10px;
}

.info-item p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.year-filter, .purpose-filter {
    margin-bottom: 40px;
}

.year-buttons, .purpose-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.year-btn, .purpose-btn {
    background-color: var(--white);
    border: 1px solid #ddd;
    color: var(--dark-gray);
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.year-btn.active, .year-btn:hover,
.purpose-btn.active, .purpose-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Contact Page Additional Styles */
.quick-contact-option {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.quick-contact-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--primary-red);
}

.quick-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.quick-contact-option h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.quick-contact-option p {
    color: var(--medium-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.map-container {
    margin-bottom: -50px;
}

.map-placeholder-large {
    height: 400px;
    background-color: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.map-content i {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.map-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.location-info {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.location-info h5 {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-info h5 i {
    margin-right: 10px;
    color: var(--primary-red);
}

.location-info p {
    color: var(--medium-gray);
    font-size: 14px;
    margin: 0;
}

.faq-section {
    margin-top: 60px;
}

.accordion-button {
    font-weight: 500;
    color: var(--dark-gray);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(211, 47, 47, 0.1);
    color: var(--primary-red);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(211, 47, 47, 0.25);
    border-color: var(--primary-red);
}

.accordion-body {
    color: var(--medium-gray);
    line-height: 1.7;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.highlight-form {
    animation: highlight-pulse 2s ease-in-out;
}

@keyframes highlight-pulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

/* Trusted Brands Section */
.trusted-brands {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Brands Container */
.brands-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
    overflow: hidden;
}

.blur-left, .blur-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.blur-left {
    left: 0;
    background: linear-gradient(90deg, #f8fafc, transparent);
}

.blur-right {
    right: 0;
    background: linear-gradient(90deg, transparent, #f8fafc);
}

/* Brands Track */
.brands-track {
    display: flex;
    gap: 30px;
    animation: scrollBrands 30s linear infinite;
    padding: 20px 0;
}

.brand-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.brand-name {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 600;
    padding-bottom: 12px;
}

.brand-intro {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Brand Summary */
.brand-summary {
    background: #1e293b;
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.brand-summary strong {
    color: #60a5fa;
    font-size: 1.1rem;
}

/* Manufacturing Section */
.manufacturing-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 4px solid #10b981;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.manufacturing-section h3 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.manufacturing-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.material-quality {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
}

/* Delivery Partners */
.delivery-partners {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.delivery-partners h3 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 40px;
    font-size: 1.5rem;
}

/* Partners Container with Gradient Edges */
.partners-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
}

.partners-fade-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(90deg, #f8fafc 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.partners-fade-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(90deg, transparent 0%, #f8fafc 100%);
    z-index: 10;
    pointer-events: none;
}

/* Partners Track (Right-to-Left Scroll) */
.partners-track {
    display: flex;
    gap: 30px;
    padding: 10px 0;
    animation: scrollPartners 10s linear infinite;
    will-change: transform;
}

/* Reverse animation direction for RTL */
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

/* Alternative: Infinite scroll with duplicate content */
.partners-track.infinite {
    animation: scrollPartnersInfinite 10s linear infinite;
}

@keyframes scrollPartnersInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Partner Logo Items */
.partner-logo {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 140px;
}

.partner-logo:hover {
    border-color: #3b82f6;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
    transform: translateY(-3px);
}

.partner-logo svg {
    width: 40px;
    height: 40px;
    color: #3b82f6;
}

.partner-logo span {
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
}

/* Pause animation on hover */
.partners-container:hover .partners-track {
    animation-play-state: paused;
}

/* Alternative Style: Cards with subtle gradient */
.partner-logo.gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
}

.partner-logo.shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive Design */
@media (max-width: 768px) {
    .delivery-partners {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .partners-container {
        padding: 10px 0;
    }
    
    .partners-fade-left,
    .partners-fade-right {
        width: 40px;
    }
    
    .partner-logo {
        flex: 0 0 150px;
        padding: 20px 15px;
        min-height: 120px;
    }
    
    .partner-logo svg {
        width: 32px;
        height: 32px;
    }
    
    .partner-logo span {
        font-size: 0.9rem;
    }
    
    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 15px));
        }
    }
}

/* Optional: Add play/pause controls */
.partners-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.play-pause-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.play-pause-btn:hover {
    background: #2563eb;
}


/* Machine Card Image Styling */
.machine-img {
    height: 220px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.machine-card:hover .product-image {
    transform: scale(1.05);
}

/* Category Badge */
.table-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Machine Card Layout */
.machine-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.machine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Features List */
.product-features {
    margin: 15px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.feature-item i {
    color: #28a745;
    font-size: 0.8rem;
}

/* Price Styling */
.machine-price {
    margin: 20px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

        .gallery-img {
            height: 220px;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            border-radius: 8px;
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-card:hover .gallery-image {
            transform: scale(1.05);
        }
        
        
        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(211, 47, 47, 0.9);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .video-play-btn:hover {
            background: #b71c1c;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .gallery-type-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(211, 47, 47, 0.9);
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            z-index: 2;
        }
        
        .gallery-brand-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-red);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            z-index: 2;
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            border-radius: 8px;
        }
        
        .gallery-card:hover .image-overlay {
            opacity: 1;
        }
        
        .quick-view-btn {
            background: var(--white);
            color: var(--primary-red);
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .quick-view-btn:hover {
            background: var(--primary-red);
            color: white;
            transform: scale(1.05);
        }
        
        .category-tag {
            display: inline-block;
            background: rgba(211, 47, 47, 0.1);
            color: var(--primary-red);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 10px;
            align-self: flex-start;
        }
        
        .product-specs {
            font-size: 12px;
            color: #666;
            margin-bottom: 15px;
            background: #f8f9fa;
            padding: 10px 12px;
            border-radius: 6px;
            border-left: 3px solid var(--primary-red);
        }
        
        .product-specs i {
            color: var(--primary-red);
            margin-right: 8px;
        }
        
        
        
        /* Filter Styles */
        .filter-container {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .filter-btn {
            padding: 8px 20px;
            margin: 5px;
            border: 2px solid var(--primary-red);
            background: transparent;
            color: var(--primary-red);
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--primary-red);
            color: white;
        }
        
        .search-box {
            position: relative;
            margin-bottom: 20px;
        }
        
        .search-box i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }
        
        .search-box input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .search-box input:focus {
            outline: none;
            border-color: var(--primary-red);
        }
        
        /* SEO Content */
        .seo-content-section {
            background: #f8f9fa;
            padding: 40px 0;
            margin-top: 60px;
            border-top: 1px solid #e9ecef;
        }
        
        .faq-section {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 40px;
        }
        
        .keyword-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        
        .keyword-badge {
            background: #e9ecef;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            color: #495057;
        }

        /* Remove default video controls and styling */
.gallery-video::-webkit-media-controls {
    display: none !important;
}

.gallery-video::-webkit-media-controls-panel {
    display: none !important;
}

.gallery-video::-webkit-media-controls-play-button {
    display: none !important;
}

.gallery-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.gallery-video {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Video container styles */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 2;
}

/* Play button styles */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(211, 47, 47, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: #b71c1c;
    transform: translate(-50%, -50%) scale(1.1);
}


   /* Product Card Additional Styles */
        .product-img {
            height: 220px;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        .brand-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255,255,255,0.9);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            color: var(--primary-red);
            z-index: 2;
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .product-card:hover .image-overlay {
            opacity: 1;
        }
        
        .quick-view-btn {
            background: var(--white);
            color: var(--primary-red);
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .quick-view-btn:hover {
            background: var(--primary-red);
            color: white;
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-red);
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }
        
        .featured-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #ffc107;
            color: #000;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }
        
        .featured-badge i {
            margin-right: 5px;
        }
        
        .category-tag {
            display: inline-block;
            background: rgba(211, 47, 47, 0.1);
            color: var(--primary-red);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 10px;
            align-self: flex-start;
        }
        
        .product-brand {
            font-size: 14px;
            color: #666;
            margin-bottom: 12px;
        }
        
        .product-brand strong {
            color: var(--primary-red);
        }
        
        .product-specs {
            font-size: 12px;
            color: #666;
            margin-bottom: 15px;
            background: #f8f9fa;
            padding: 10px 12px;
            border-radius: 6px;
            border-left: 3px solid var(--primary-red);
        }
        
        .product-specs i {
            color: var(--primary-red);
            margin-right: 8px;
        }
        
        /* SEO Section Styles */
        .seo-content-section {
            background: #f8f9fa;
            padding: 40px 0;
            margin-top: 60px;
            border-top: 1px solid #e9ecef;
        }
        
        .faq-section {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 40px;
        }
        
        .keyword-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        
        .keyword-badge {
            background: #e9ecef;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            color: #495057;
        }
        
        /* Schema Markup Helper */
        .schema-helper {
            display: none;
        }