

/* Contain products */

#all-pro {
    background-color: white;
    position: relative;


}

.navbar-pro {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.btn-toggle {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 150px;
}

.btn-toggle:hover {
    background-color: #0056b3;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}


/* WIFI */

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    border: 0;
}

.product-section {
    margin-bottom: 40px;
}

.product-section h3 {
    margin-top: 20px;
}

.product-section ul {
    list-style-type: none;
    padding: 0;
}

.product-section ul li {
    margin-bottom: 10px;
}



#Product-intro {
    position: relative;
    width: 100%;
    background-color: #ffffff00;
    padding: 50px;
}

.product-intro-img {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;

}

.product-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.heading-product h1 {
    font-size: 32px;
    text-align: center;
    padding-bottom: 20px;
}

.heading-product p {
    font-weight: normal;
    text-align: justify;
    position: relative;
}


/* Product Item */

#product-item {
    position: relative;
    background-color: white;
    padding-bottom: 100px;
    
}

.cust-card-pro {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.cust-card-pro:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

.cust-title-pro {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.cust-text-pro {
    font-size: 16px;
    color: #555;
    text-align: center;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-img-top:hover {
    opacity: 0.8;
}


.product-item-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.product-item-img img {
    position: relative;
    object-fit: cover;
    object-position: center;
    width: 70%;
    height: 60%;
}

.cust-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: white;
    margin: 10px;
    /* Space between buttons */
    transition: background-color 0.3s, transform 0.3s;
}

.cust-btn:hover {
    background-color: #0056b3;
}

/* Optional: Add a subtle hover effect */
.cust-btn:hover {
    transform: scale(1.05);
}

.cust-btn .i-pro {
    font-size: 20px;
    /* Adjust the icon size */
    transition: color 0.3s;
    /* Smooth transition for color change */

}

.cust-btn .i-pro {
    color: blue;
    /* Icon color for primary button */
}

.cust-btn:hover .i-pro {
    color: red;
    /* Change icon color on hover */
}

.btn-secondary .i-pro {
    color: white;
    /* Icon color for secondary button */
}

.btn-secondary:hover .i-pro {
    color: red;
    /* Change icon color on hover */
}