/* Navigation Styles */
.nav-underline .nav-item.show .nav-link,
.nav-underline .nav-link.active {
    color: #25589C !important;
    border: none !important;
    position: relative;
    transition: all ease-in-out 0.3s;
}

.nav-underline .active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px !important;
    background-color: #b9492b;
    transition: all ease-in-out 0.3s;
}


.nav-link:hover {
    border: none !important;
}

/* Portfolio Navigation Spacing */
.nav-underline {
    gap: 4px;
}

.nav-underline .nav-link {
    margin: 0 3px;
    padding: 10px 8px;
    white-space: nowrap;
    color: #25589C;
    font-weight: 500 !important;
    font-size: 26px !important;
    font-family: "Oswald", sans-serif !important;
}

/* Card Styles */
.card-heading {
    display: flex;
    align-items: center;
}

.card-heading::before {
    content: "";
    display: block;
    width: 4px;
    height: 40px;
    background-color: #b9492b;
    margin-right: 12px !important;
    flex-shrink: 0;
}

.hover-effect:hover {
    color: #25589C;
}

/* Interactive Elements */
.cursor {
    cursor: pointer;
}

/* Portfolio Detail Page Styles */

/* Typography */
.cardTitle {
    font-size: 20px;
    font-weight: bold;
    padding: 5px 0;
}

.product-title {
    font-size: 50px;
    font-weight: bolder;
    text-transform: uppercase;
}

/* Buttons */
.try-btn {
    background-color: #f54f29;
    color: white;
    padding: 10px 20px;
    border: 2px solid #f54f29;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
}

.try-btn:hover {
    background-color: black;
    color: #f54f29;
    border: 2px solid #f54f29;
    transition: all ease-in-out 0.3s;
}

.yt-btn:hover {
    background-color: rgb(219, 46, 46) !important;
}

.c-btn:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Divider */
.divider {
    border-top: 1px solid #f54f29;
}

/* Product Image & Carousel */
.product-img {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 550px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.prd-img {
    border-radius: 10px !important;
    filter: drop-shadow(rgba(99, 99, 99, 0.2) 0px 2px 8px 0px) !important;
}

.carousel-item {
    height: 550px;
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Custom Carousel Controls */
.custom-carousel-control {
    width: 50px;
    opacity: 1;
}

.custom-carousel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    transition: all 0.3s ease;
}

.custom-carousel-icon i {
    color: rgba(42, 86, 153, 0.9);
    font-size: 24px;
    transition: color 0.3s ease;
}

.custom-carousel-control:hover .custom-carousel-icon {
    transform: scale(1.2);
}

.custom-carousel-control:hover .custom-carousel-icon i {
    color: rgba(245, 79, 41, 0.95);
}

.custom-prev-icon {
    margin-left: 10px;
}

.custom-next-icon {
    margin-right: 10px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -40px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #2a5699;
    transform: scale(1.2);
}

#slideshowSection {
    padding-bottom: 60px !important;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .nav-link {
        color: #25589C;
        font-weight: 500 !important;
        font-size: 20px !important;
        font-family: "Oswald", sans-serif !important;
        margin: 0 2px !important;
        padding: 6px 6px !important;
    }
    
    .nav-underline {
        gap: 3px;
    }
    
    .nav-underline .nav-link {
        margin: 0 2px;
        padding: 8px 6px;
    }
    
    .product-img {
        height: 300px !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .product-img img {
        width: 100%;
        height: auto;
        object-fit: contain;
        padding: 15px;
    }
    
    .carousel-item {
        height: 300px !important;
    }
    
    .custom-carousel-icon {
        width: 35px;
        height: 35px;
    }
    
    .custom-carousel-icon i {
        font-size: 14px;
    }
    
    .carousel-indicators {
        bottom: -35px;
    }
}
