.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff6600; /* CoreOne orange */
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 1000;
    text-decoration: none;
    animation: pulseGlow 1.5s infinite ease-in-out;
    transition: all 0.3s ease;
}

/* Default pulse glow animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 102, 0, 0.6),
                    0 0 10px rgba(255, 102, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 102, 0, 0.9),
                    0 0 30px rgba(255, 102, 0, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 102, 0, 0.6),
                    0 0 10px rgba(255, 102, 0, 0.4);
    }
}

.floating-btn:hover {
    background-color: #e65c00;
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 0 20px rgba(255, 102, 0, 1),
                0 0 40px rgba(255, 102, 0, 0.8);
}

.main-menu ul li.active a, .sticky-wrapper.is-sticky .top-header-area .main-menu ul li.active a {
    color: #ff6f00!important;
}

.about-image, .about-jombites-image {
    border-radius: 15px;
}

.about-jombites-image {
    border: 1px solid #ff6f00;
}

.product-highlight-section {
    margin: 0px 0px;
    padding: 100px 0px;
}

.section-subtitle {
    font-size: 20px;
    color: #999;
}

.product-image-float {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-info-box {
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 35px;
    font-weight: 700;
    color: #ff6f00;
}

.product-description {
    font-size: 18px;
    color: #555;
}

.product-price {
    font-size: 20px;
}

.btn-learn-more {
    background-color: #ff6f00;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-learn-more:hover {
    background-color: #ff6f00;
    color: #093943;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.orange-text, .swiper-button-next, .swiper-button-prev {
    color: #ff6f00;
}

.description-text {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
}

.certificate-desc {
    font-size: 16px;
    color: #555;
}

.certificate-item {
    text-align: center;
    padding: 10px 20px;
    position: relative; /* Important for stacking context */
    overflow: visible;   /* Allow the shadow to extend */
}

.certificate-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.certificate-item:hover img {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.4);
}

.latest-news .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-info i {
  color: #ff6f00; /* orange-text */
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Jombites Page */
.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #ff6f00;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #fff;
    border: 3px solid #ff6f00;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::before {
    left: -10px;
}

.timeline-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.timeline-content h4 {
    margin-bottom: 10px;
    font-weight: bold;
}

.timeline-content h4 i {
    margin-right: 8px;
    color: #ff6f00; /* same as your orange-text */
    font-size: 1.2em;
}


@media (max-width: 768px) {
    .product-info-box {
        padding: 40px 20px;
    }

    .product-title {
        font-size: 26px;
    }

    .product-description {
        font-size: 16px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.right::before {
        left: 10px;
    }

    .timeline-item::before {
        left: 10px;
    }
}