.page-list{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin:30px 0;
    padding:0;
    list-style:none;
}

.page-list li{
    list-style:none;
}

.page-list li a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:42px;
    padding:0 14px;
    border:1px solid #d9d9d9;
    border-radius:8px;
    background:#fff;
    color:#246c41;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
}

.page-list li a:hover{
    background:#246c41;
    border-color:#246c41;
    color:#fff;
    transform:translateY(-2px);
}

.page-list li a.active-page,
.page-list li.active a{
    background:#bda158;
    border-color:#bda158;
    color:#fff;
    box-shadow:0 4px 12px rgba(189,161,88,.35);
}

.page-list li span{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:42px;
    color:#246c41;
    font-weight:700;
}

.page-list .fa-chevron-left,
.page-list .fa-chevron-right{
    font-size:13px;
}

.page-list .has-arrow a{
    background:#246c41;
    color:#fff;
    border-color:#246c41;
}

.page-list .has-arrow a:hover{
    background:#bda158;
    border-color:#bda158;
    color:#fff;
}


.col-auto.position-relative .fa-search{
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#6c757d;
    z-index:10;
    pointer-events:none;
}

.searchInput{
    padding-left:45px !important;
}


.modal {
    z-index: 99999 !important;
}

.modal-backdrop {
    z-index: 99998 !important;
}

.modal-close-btn{
    position:absolute;
    top:15px;
    right:15px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#f5f5f5;
    cursor:pointer;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.modal-close-btn:hover{
    background: #fbe394;
    color:#fff;
}

.no-hover:hover{
    background: transparent !important;
    color: inherit !important;
    border-color: inherit !important;
}


  /* Toast Container */
#toast-container{
    position:fixed;
    top:20px;
    right:20px;
    z-index:99999;
    display:flex;
    flex-direction:column;
    gap:12px;
}

/* Toast Box */
.toast{
    min-width:320px;
    max-width:400px;
    padding:15px 45px 15px 20px;
    border-radius:10px;
    color:#fff;
    font-size:14px;
    font-weight:500;
    line-height:1.5;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
    position:relative;
    overflow:hidden;
    animation:slideIn .3s ease forwards;
}

/* Success */
.toast-success{
    background:#28a745;
}

/* Error */
.toast-error{
    background:#dc3545;
}

/* Warning */
.toast-warning{
    background:#ffc107;
    color:#212529;
}

/* Info */
.toast-info{
    background:#0dcaf0;
    color:#212529;
}

/* Close Button */
.close-btn{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    font-size:22px;
    cursor:pointer;
    opacity:.8;
    transition:.3s;
    user-select:none;
}

.close-btn:hover{
    opacity:1;
}

/* Hide Animation */
.toast.hide{
    animation:slideOut .3s ease forwards;
}

/* Toast Coming Animation */
@keyframes slideIn{
    from{
        opacity:0;
        transform:translateX(100%);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Toast Going Animation */
@keyframes slideOut{
    from{
        opacity:1;
        transform:translateX(0);
    }
    to{
        opacity:0;
        transform:translateX(100%);
    }
}

/* Responsive */
@media(max-width:576px){

    #toast-container{
        top:15px;
        right:15px;
        left:15px;
    }

    .toast{
        min-width:100%;
        max-width:100%;
    }

}

.hero-banner{
    position:relative;
    width:100%;
    overflow:hidden;
}

.single-banner img{
    width:100%;
    display:block;
}

@media(min-width:992px){
    .single-banner img{
        height:700px;
        object-fit:fill;
    }
}

/* Buttons */

.banner-prev,
.banner-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    z-index:999;
    background:#fff;
}

.banner-prev{
    left:25px;
}

.banner-next{
    right:25px;
}

.banner-prev:hover,
.banner-next:hover{

    opacity:.9;

}
.slick-dots {
  display: none!important;
}

   .available-on{
    padding:60px 0;
    background:#f8f8f8;
    overflow:hidden;
}

.section-title{
    text-align:center;
    margin-bottom:30px;
    font-weight:700;
}

.logo-slider{
    overflow:hidden;
    position:relative;
    width:100%;
}

.logo-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scrollLogo 20s linear infinite;
}

.logo-track img{
    width:140px;
    height:100px;
    object-fit:contain;
    background:#fff;
    padding:10px 20px;
    border-radius:10px;
    margin:0 20px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.logo-track img:hover{
    transform:scale(1.08);
}

@keyframes scrollLogo{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
        .top-marquee {
    width: 100%;
    overflow: hidden;
    background: #000;
    color: #fff;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.top-marquee:hover .marquee-content {
    animation-play-state: paused;
}


.whatsapp-btn,
.call-btn {
    position: fixed;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.whatsapp-btn {
    bottom: 90px;
    background: #25D366;
}

.call-btn {
    bottom: 20px;
    background: #007bff;
}

.whatsapp-btn:hover,
.call-btn:hover {
    transform: scale(1.1);
    color: #fff;
}


.certifications-section{
    padding:80px 0;
    background:#f8f9fa;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

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

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.certification-logos{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:10px;
    align-items:center;
}

.certification-item{
    height: 120px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: .3s;

    display: flex;
    align-items: center;      /* Vertical center */
    justify-content: center;  /* Horizontal center */
}
.certification-item:hover{
    transform:translateY(-5px);
}

.certification-item img{
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}