﻿.active {
    background-color:#009688 !important;
}
.card-header{
    background-color:#009688 !important;
    color: #fff!important;
}
.card-title{
    margin-bottom: 0px!important;
}
.form-check-input:checked{
    background-color:#009688 !important;
    border-color:#009688 !important;
}
.text-primary{
    color:#009688 !important;
}
.btn-primary{
    background-color:#009688 !important;
    border-color:#009688!important;
}
.btn-outline-primary {
    color: #009688 !important;
    border-color: #009688 !important;
}
.btn-outline-primary:hover {
    color: #fff !important;
    background-color: #009688 !important;
    border-color: #009688 !important;
}
hr {
    border-top: 1px solid #b5b5b5 !important;
}
label{
    font-weight:normal!important;
}
.form-control:disabled, .form-control[readonly]{
    background-color: #f8f9fa!important;
}  

/*search panel style*/


.table-light tbody+tbody, .table-light td, .table-light th, .table-light thead th {
    border-color: #d3d3d373!important;
}

.page-item.active .page-link{    
    background-color:#009688 !important;
    border-color:#009688!important;
    z-index:0;
}

@media print {
        body {
            margin: 0;
            padding: 0;
        }

        #printArea {
            width: 100%;
            max-width: 780px;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }

        @page {
            size: auto;
            margin: 15mm;
        }
    }


/*
    print page button style 
*/
.action-btn {
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 5px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#btnExport {
    background-color: #4CAF50;
}

    #btnExport:hover {
        background-color: #45a049;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

#btnPrintInvoice {
    background-color: #007bff;
}

    #btnPrintInvoice:hover {
        background-color: #0069d9;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

.close-btn {
    background-color: #f44336;
}

    .close-btn:hover {
        background-color: #d32f2f;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }



/*ticketchatbox*/

    #chatContainer::-webkit-scrollbar {
        width: 6px;
    }

    #chatContainer::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 5px;
    }

    textarea:focus {
        border-color: #009688;
        box-shadow: 0 0 0 0.2rem rgba(63, 103, 145, 0.25);
    }


/* === Slider Section === */
.hero-slider {
    margin: 100px 0 0 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.carousel-item {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background image */
.slider-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;

    /* Add blur and opacity */
    filter: blur(4px);
    opacity: 0.4;

    /* Add smooth transitions */
    transition: filter 1s ease, opacity 1s ease, transform 1.2s ease;
    transform: scale(1);
}
.carousel-item.active .slider-bg {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1.05); /* Optional zoom effect */
}
 .slider-content {
    position: relative;
    z-index: 3;
    padding: 1rem 2rem;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Dark overlay */
.slider-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Text content */
.slider-content {
    position: relative;
    z-index: 3;
    padding: 1rem 2rem;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.slider-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.slider-desc {
    font-size: 1rem;
    color: #ddd;
}

@media (max-width: 768px) {
    .slider-title { font-size: 1.2rem; }
    .slider-desc { font-size: 0.85rem; }
}

.carousel-indicators [data-bs-target] {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-indicators {
    margin-bottom: 70px;
}

/* curve back*/

.custom-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
    overflow: hidden;
}

.custom-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

.hover-zoom {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .hover-zoom:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
            z-index: 2;
        }