

/* START: Index Custom Color Palette CSS */
.index-header {
    background-color: #ffffff;
}

.index-company-name {
    font-size: 1.15rem;
    letter-spacing: -0.3px;
}

.index-location {
    font-size: 0.75rem;
}

.index-contact-box {
    border-color: #dee2e6 !important;
    background-color: #f8f9fa !important;
}

.index-email-btn {
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.index-email-btn:hover {
    background: linear-gradient(135deg, #d445b2 0%, #c237a0 100%);
    transform: translateY(-1px);
}

.index-navbar {
    background-color: #212529 !important;
}

.index-nav-link {
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.index-nav-link:hover, .index-nav-link.active {
    color: #ffffff !important;
}

.index-search-form .index-search-input {
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    padding: 8px 12px;
}

.index-search-form .index-search-input:focus {
    box-shadow: none;
    background-color: #ffffff !important;
}

.index-search-form .index-search-btn {
    border-radius: 0 4px 4px 0;
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    border: none;
}

.index-banner-section {
    min-height: 550px;
    background: url('your-conveyor-image.jpg') no-repeat center center/cover;
    background-color: #212529;
}

.index-banner-overlay {
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.90) 0%, rgba(230, 83, 196, 0.75) 100%);
    z-index: 1;
}

.index-banner-section .container {
    z-index: 2;
}

.index-banner-badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.index-banner-title {
    font-size: 2.75rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.index-banner-subtitle {
    font-size: 1.25rem;
}

.index-btn-primary {
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.index-btn-primary:hover {
    background: linear-gradient(135deg, #d445b2 0%, #c237a0 100%);
    transform: translateY(-2px);
}

.index-btn-secondary {
    border-radius: 6px;
    border-width: 2px;
    transition: all 0.3s ease;
}

.index-btn-secondary:hover {
    background-color: #ffffff;
    color: #212529;
    transform: translateY(-2px);
}

.index-products-section {
    background-color: #f8f9fa;
}

.indexcontent {
    color: #e653c4 !important;
}

.index-products-title {
    font-size: 2.25rem;
    color: #212529;
    letter-spacing: -0.5px;
}

.index-title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    border-radius: 2px;
}

.index-products-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
}

.index-product-card {
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.index-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(230, 83, 196, 0.15) !important;
    border-color: rgba(230, 83, 196, 0.3) !important;
}

.index-img-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.index-product-img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.index-product-card:hover .index-product-img {
    transform: scale(1.05);
}

.index-product-name {
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .index-top-bar {
        padding: 10px 0;
    }
    
    .index-search-form {
        width: 100%;
        margin-top: 15px !important;
    }
    
    .index-search-form .input-group {
        width: 100%;
    }
    
    .index-banner-title {
        font-size: 2rem;
    }
    
    .index-banner-section {
        min-height: 450px;
    }
    
    .index-products-title {
        font-size: 1.75rem;
    }
}
/* END: Index Custom Color Palette CSS */


/* START: Index Footer Section CSS */
.index-footer-section {
    background-color: #212529;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.index-footer-heading {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #ffffff;
    position: relative;
    padding-bottom: 8px;
}

.index-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    border-radius: 2px;
}

.index-footer-links li a {
    font-size: 14px;
    transition: all 0.3s ease;
}

.index-footer-links li a:hover {
    color: #e653c4 !important;
    padding-left: 6px;
    opacity: 1 !important;
}

.index-footer-icon {
    color: #e653c4 !important;
}

.index-footer-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.02) 100%);
}

.index-footer-badge {
    border: 1px solid rgba(230, 83, 196, 0.3);
    transition: transform 0.3s ease;
}

.index-footer-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 83, 196, 0.15) !important;
}

@media (max-width: 991.98px) {
    .index-footer-section {
        text-align: center;
    }
    
    .index-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .index-footer-links li a:hover {
        padding-left: 0;
    }
}
/* END: Index Footer Section CSS */