.ceo-message {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.ceo-message .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/home/pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.ceo-image-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.ceo-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.ceo-image:hover {
    transform: translateY(-10px);
}

.ceo-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #fff;
    border-radius: 20px;
    opacity: 0.5;
    z-index: 1;
}

.ceo-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.experience-badge .years {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}

.ceo-content {
    padding-left: 30px;
}

.ceo-content .subtitle {
    color: #007bff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.ceo-content .title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.ceo-content .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #007bff, #0056b3);
}

.ceo-content .message {
    color: #555;
    line-height: 1.8;
}

.ceo-content .message .lead {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.ceo-content .ceo-quote {
    font-style: italic;
    font-size: 18px;
    color: #666;
    border-left: 4px solid #007bff;
    padding: 20px;
    margin: 30px 0;
    background-color: rgba(255,255,255,0.5);
    border-radius: 0 10px 10px 0;
}

.ceo-signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ceo-signature .signature-img {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
}

.ceo-signature .signature-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.ceo-signature .designation {
    color: #666;
    font-size: 14px;
}

@media (max-width: 991px) {
    .ceo-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .ceo-content .title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ceo-signature {
        flex-direction: column;
        text-align: center;
    }

    .experience-badge {
        right: 50%;
        transform: translateX(50%);
    }
}

/* Product Slider Styles */
.product-slider {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 10px 0;
    position: relative;
}

.theme-title-one {
    margin-bottom: 50px;
}

.theme-title-one .main-title {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: #007bff;
    margin: 0 auto 20px;
}

.theme-title-one .subtitle {
    color: #666;
    font-size: 1.2em;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    color: #fff;
    font-size: 24px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card:hover .view-details {
    transform: translateY(0);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.product-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.product-meta span {
    color: #666;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-meta i {
    color: #007bff;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qr-button {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-button:hover {
    background: #007bff;
    color: #fff;
}

/* QR Modal Styles */
.qr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.qr-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    max-width: 300px;
    width: 90%;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.qr-modal h4 {
    margin-bottom: 20px;
    color: #333;
}

.qr-info {
    margin-top: 15px;
    color: #666;
}

/* Owl Carousel Custom Navigation */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
}

.owl-nav button:hover {
    background: #007bff !important;
}

.owl-nav button i {
    font-size: 20px;
    color: #333;
    transition: color 0.3s ease;
}

.owl-nav button:hover i {
    color: #fff;
}

.owl-prev {
    left: -25px;
}

.owl-next {
    right: -25px;
}

.owl-dots {
    margin-top: 30px;
    text-align: center;
}

.owl-dot span {
    width: 12px !important;
    height: 12px !important;
    margin: 5px 7px !important;
    background: #d6d6d6 !important;
    transition: all 0.3s ease !important;
}

.owl-dot.active span,
.owl-dot:hover span {
    background: #007bff !important;
}