
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}


        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
        }

        .whatsapp-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            transition: transform 0.2s ease-in-out;
        }

        .whatsapp-icon:hover {
            transform: scale(1.1);
        }

        /* Ride Card Styles */
        .ride-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
        }

        .ride-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border-color: rgba(255,193,7,0.5);
        }

        .ride-card .card-header {
            background: rgba(0,0,0,0.3);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 1rem;
        }

        .price-tag {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffc107;
        }

        .seats-badge {
            background: rgba(255,193,7,0.2);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
        }

        .location-icon {
            width: 30px;
            height: 30px;
            background: rgba(255,193,7,0.2);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }

        .driver-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .route-dot {
            width: 8px;
            height: 8px;
            background: #ffc107;
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .btn-book {
            animation: pulse 2s infinite;
        }

        .filter-tag {
            background: rgba(255,193,7,0.2);
            color: #ffc107;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .filter-tag .remove-filter {
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .filter-tag .remove-filter:hover {
            opacity: 1;
        }


.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


.seats-icon {
        position: relative;
        display: inline-block;
    }

    .seats-badge {
        top: -8px;
        right: -8px;
        font-size: 10px;
        padding: 0.25rem 0.5rem;
        min-width: 22px;
    }

    .ride-features .badge {
        font-weight: normal;
        font-size: 0.75rem;
    }

    .hover-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .flight-icon {
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-3px); }
    }

    .city-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 auto 8px;
    }

    .bg-glow {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
    }

    .btn-glow {
        transition: all 0.3s ease;
    }

    .btn-glow:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    }

    .price-number {
        font-size: 1.5rem;
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .price-number {
            font-size: 1.2rem;
        }
    }


        .location-badge {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.5);
        }

        .driver-avatar {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid #ffc107;
        }

        .preference-card {
            background: rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }

        .preference-card:hover {
            background: rgba(255,193,7,0.1);
            transform: translateY(-3px);
        }



/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 11px;
    border: 0;
    transition: .5s;
    opacity: 1;
}



        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
        }

        .whatsapp-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            transition: transform 0.2s ease-in-out;
        }

        .whatsapp-icon:hover {
            transform: scale(1.1);
        }

        .filter-tag {
            background: rgba(255,193,7,0.2);
            color: #ffc107;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .filter-tag .remove-filter {
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .filter-tag .remove-filter:hover {
            opacity: 1;
        }

        .btn-glow {
            transition: all 0.3s ease;
        }

        .btn-glow:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }

        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .seats-icon {
            position: relative;
            display: inline-block;
        }

        .seats-badge {
            top: -8px;
            right: -8px;
            font-size: 10px;
            padding: 0.25rem 0.5rem;
            min-width: 22px;
        }

        .city-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 auto 8px;
        }

        .flight-icon {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        .toast-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            min-width: 300px;
        }

        .sort-active {
            background-color: rgba(255, 193, 7, 0.2) !important;
            border-color: #ffc107 !important;
        }

        .pagination {
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .page-item.active .page-link {
            background-color: #ffc107;
            border-color: #ffc107;
            color: #000;
        }

        .page-link {
            background-color: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            color: #fff;
        }

        .page-link:hover {
            background-color: rgba(255,193,7,0.2);
            border-color: #ffc107;
            color: #ffc107;
        }


/*** Topbar End ***/




  .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
    }

    .whatsapp-icon {
        width: 60px;      /* Adjust size */
        height: 60px;     /* Keep it square */
        border-radius: 50%; /* Make it round */
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        transition: transform 0.2s ease-in-out;
    }

    .whatsapp-icon:hover {
        transform: scale(1.1);
    }




    /* CSS Variables for consistent theming */
    :root {
        --brand-color: #ffc107;
        --brand-color-rgb: 255, 193, 7;
        --glass-bg-light: rgba(255, 255, 255, 0.98);
        --glass-bg-dark: rgba(0, 0, 0, 0.92);
        --glass-blur: 12px;
        --topbar-height: 45px;
    }

    /* Topbar Glass Effect */
    .glass-topbar {
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        transition: all 0.3s ease;
    }

    /* Topbar Links */
    .topbar-link {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.875rem;
    }

    .topbar-link:hover {
        color: var(--brand-color);
        transform: translateY(-1px);
    }

    /* Navbar Base Styles */
    .transition-nav {
        background: var(--glass-bg-light);
        backdrop-filter: blur(var(--glass-blur));
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        top: var(--topbar-height);
        transition: all 0.3s ease;
    }

    /* Scrolled State (Dark Glass) */
    .transition-nav.scrolled {
        background: var(--glass-bg-dark);
        backdrop-filter: blur(var(--glass-blur));
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* When topbar is hidden on scroll, adjust navbar position */
    .topbar-hidden .transition-nav {
        top: 0;
    }

    /* Navbar Brand Color Transition */
    .transition-nav .navbar-brand h1 {
        transition: color 0.3s ease;
    }

    .transition-nav.scrolled .navbar-brand h1 {
        color: #ffc107 !important;
    }

    /* Navbar Toggler Styling */
    .navbar-toggler {
        border: none;
        background: rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .transition-nav.scrolled .navbar-toggler {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    /* Navigation Links Styling */
    .navbar-nav .nav-link {
        font-weight: 500;
        margin: 0 0.5rem;
        padding: 0.5rem 1rem;
        transition: all 0.3s ease;
        position: relative;
        color: #333;
    }

    .transition-nav.scrolled .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.9);
    }

    .navbar-nav .nav-link:hover {
        color: var(--brand-color) !important;
        transform: translateY(-2px);
    }

    .transition-nav.scrolled .navbar-nav .nav-link:hover {
        color: var(--brand-color) !important;
    }

    /* Active Link Styling */
    .navbar-nav .nav-link.active {
        color: var(--brand-color) !important;
    }

    .transition-nav.scrolled .navbar-nav .nav-link.active {
        color: var(--brand-color) !important;
    }

    .navbar-nav .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: var(--brand-color);
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 40px;
    }

    /* Button Styling */
    .btn-primary {
        background: linear-gradient(135deg, #ffc107, #ff9f00);
        border: none;
        color: #000;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
        color: #000;
    }

    .btn-outline-primary {
        border: 2px solid #ffc107;
        color: #ffc107;
        background: transparent;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-outline-primary:hover {
        background: #ffc107;
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    }

    .transition-nav.scrolled .btn-outline-primary {
        border-color: #ffc107;
        color: #ffc107;
    }

    .transition-nav.scrolled .btn-outline-primary:hover {
        background: #ffc107;
        color: #000;
    }

    /* Adjust body padding to account for fixed header */
    body {
        padding-top: calc(var(--topbar-height) + 76px);
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        :root {
            --topbar-height: 0px;
        }

        .glass-topbar {
            display: none !important;
        }

        body {
            padding-top: 76px;
        }

        .transition-nav {
            top: 0;
        }

        .transition-nav {
            background: var(--glass-bg-light);
        }

        .transition-nav.scrolled {
            background: var(--glass-bg-dark);
        }

        .navbar-nav {
            padding: 1rem 0;
        }

        .navbar-nav .nav-link {
            margin: 0.25rem 0;
            text-align: center;
        }

        .navbar-nav .nav-link.active::after {
            display: none;
        }

        .btn-primary, .btn-outline-primary {
            width: 100%;
            margin: 0.5rem 0 !important;
            text-align: center;
        }

        .navbar-collapse {
            max-height: calc(100vh - 80px);
            overflow-y: auto;
        }
    }

    /* Desktop specific adjustments */
    @media (min-width: 992px) {
        .glass-topbar {
            display: block !important;
        }
    }

    /* Animation for scroll */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .transition-nav {
        animation: fadeInDown 0.5s ease;
    }

    /* Optional: Add backdrop blur support for older browsers */
    @supports not (backdrop-filter: blur(12px)) {
        .glass-topbar {
            background: rgba(0, 0, 0, 0.95);
        }

        .transition-nav {
            background: rgba(255, 255, 255, 0.98);
        }

        .transition-nav.scrolled {
            background: rgba(0, 0, 0, 0.95);
        }
    }

    /* Custom scrollbar for mobile menu */
    .navbar-collapse::-webkit-scrollbar {
        width: 4px;
    }

    .navbar-collapse::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
    }

    .navbar-collapse::-webkit-scrollbar-thumb {
        background: var(--brand-color);
        border-radius: 4px;
    }


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
        height: 700px;
}


.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background:#000000;
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 30px;
    margin-left: 90px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }


    .header-carousel .owl-nav .owl-next {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}


.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(https://www.shutterstock.com/image-vector/cartoon-old-senior-couple-character-600nw-1524991622.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    background: #2f6e45;
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}
/*** Service End ***/


/*** Features Start ***/
.feature .feature-item {
    text-align: center;
    border-radius: 10px;
    background: #2f6e45;
    border: 1px solid transparent;
    transition: 0.5s;
}

.feature .feature-item:hover {
    border: 1px solid var(--bs-primary);
}

.feature .feature-item .feature-icon {
    background: var(--bs-white);
    border-radius: 10px;
    display: inline-block;
}
/*** Features End ***/

/*** Offer Start ***/
.offer-section .nav a.accordion-link {
    width: 100%;
    border-radius: 10px;
    display: flex;
    background: var(--bs-white);
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.offer-section .nav a.accordion-link h5 {
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h5 {
    color: var(--bs-white);
}
/*** Offer End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: var(--bs-primary);
}

.blog .blog-item .blog-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
    color: var(--bs-white);
    background: var(--bs-primary);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
    color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-secondary);
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
}
/*** FAQs End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    padding: 0 25px 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--bs-primary);
}

.team .team-item .team-img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid var(--bs-primary);
    border-style: dotted;
    padding: 4px;
    background: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 4px solid var(--bs-white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--bs-white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
    color: var(--bs-primary);
    background: var(--bs-dark);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0 25px 25px 25px;
}

.testimonial .testimonial-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #2f6e45;
    z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 5px solid var(--bs-light);
    border-style: double;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-text {
    padding: 25px 0;
    text-align: center;
}

.testimonial .testimonial-item .testimonial-title {
    display: flex;
    justify-content: space-between;
}

.testimonial .testimonial-item  .testimonial-quote-left {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 20px;
    left: 25px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item  .testimonial-quote-right {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -30px;
    right: 25px;
    margin-top: -5px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/


    /* Glass Footer Styles */
    .glass-footer,
    .glass-copyright {
        transition: all 0.3s ease;
    }

    .glass-footer:hover,
    .glass-copyright:hover {
        background: rgba(0, 0, 0, 0.7) !important;
        border-color: rgba(255, 193, 7, 0.3) !important;
    }

    /* Hover Effects for Links */
    .hover-glow:hover {
        color: #ffc107 !important;
        transform: translateX(5px);
        text-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
    }

    .hover-warning:hover {
        color: #ffc107 !important;
        transition: color 0.3s ease;
    }

    /* App Store & Google Play Buttons Hover */
    .btn-app-store:hover,
    .btn-google-play:hover {
        background: rgba(255, 193, 7, 0.2) !important;
        border-color: #ffc107 !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
    }

    /* Social Media Buttons Hover */
    .btn-social:hover {
        background: rgba(255, 193, 7, 0.2) !important;
        border-color: #ffc107 !important;
        transform: translateY(-3px);
        box-shadow: 0 3px 10px rgba(255, 193, 7, 0.2);
    }

    .btn-social:hover i {
        color: #ffc107 !important;
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    /* WhatsApp Button Hover */
    .whatsapp-float:hover .whatsapp-icon {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .glass-footer {
            padding: 1.5rem !important;
        }

        .copyright p {
            font-size: 0.9rem;
        }

        .btn-app-store,
        .btn-google-play {
            width: 100%;
            justify-content: center;
        }

        .btn-app-store .ms-3,
        .btn-google-play .ms-3 {
            margin-left: 1rem !important;
        }
    }

    /* Animation for footer */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .wow {
        animation-name: fadeInUp;
        animation-duration: 1s;
    }

    /* Custom Scrollbar for footer (optional) */
    .footer-item::-webkit-scrollbar {
        width: 5px;
    }

    .footer-item::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .footer-item::-webkit-scrollbar-thumb {
        background: #ffc107;
        border-radius: 10px;
    }

    /* Decorative Elements */
    .glass-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.5), transparent);
    }

    .glass-copyright::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
    }

    /* Position relative for pseudo-elements */
    .glass-footer,
    .glass-copyright {
        position: relative;
        overflow: hidden;
    }



    .service-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .service-img {
        overflow: hidden;
        position: relative;
    }

    .hover-scale {
        transition: transform 0.5s ease;
    }

    .service-card:hover .hover-scale {
        transform: scale(1.1);
    }

    .service-overlay {
        transition: opacity 0.3s ease;
        opacity: 0.7;
    }

    .service-card:hover .service-overlay {
        opacity: 0.9;
    }

    .service-icon {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }

    .btn-glow {
        transition: all 0.3s ease;
        background: linear-gradient(135deg, #ffc107, #ff9f00);
        border: none;
        color: #000;
        font-weight: 500;
    }

    .btn-glow:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
        color: #000;
    }

    .glass-container {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pulse-effect {
        animation: pulseText 2s infinite;
    }

    @keyframes pulseText {
        0% {
            opacity: 0.7;
        }
        50% {
            opacity: 1;
            text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
        }
        100% {
            opacity: 0.7;
        }
    }



    .settings-section {
        min-height: 100vh;
        background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    }

    .settings-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .settings-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    }

    .toggle-switch {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 34px;
    }

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #2d3748;
        transition: .4s;
        border-radius: 34px;
    }

    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

    input:checked + .toggle-slider {
        background-color: var(--bs-success);
    }

    input:checked + .toggle-slider:before {
        transform: translateX(26px);
    }

    .contact-item {
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }

    .contact-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .primary-contact {
        border: 2px solid #ffd700;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }

    .safety-tips-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .tip-card {
        padding: 20px;
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .tip-card:hover {
        transform: translateY(-3px);
    }

    .device-card {
        padding: 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .device-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .test-button {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        transition: all 0.3s ease;
    }

    .test-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    }

    .save-button {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        border: none;
        transition: all 0.3s ease;
    }

    .save-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
    }





:root {
    --wallet-primary: #4361ee;
    --wallet-secondary: #3a0ca3;
    --wallet-success: #06d6a0;
    --wallet-warning: #ffd166;
    --wallet-danger: #ef476f;
    --wallet-dark: #1a1a2e;
    --wallet-light: #f8f9fa;
}

.wallet-card {
    background: linear-gradient(135deg, var(--wallet-primary) 0%, var(--wallet-secondary) 100%);
    border: none;
    border-radius: 20px;
    color: white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
}

.wallet-card .card-body {
    padding: 2rem;
}

.balance-display {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.currency-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.stats-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.transaction-item {
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.transaction-item:hover {
    background: rgba(67, 97, 238, 0.1);
    border-left-color: var(--wallet-primary);
}

.transaction-credit {
    border-left-color: var(--wallet-success);
}

.transaction-debit {
    border-left-color: var(--wallet-danger);
}

.action-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.payment-method-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    border-color: var(--wallet-primary);
    transform: translateY(-3px);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.pin-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.pin-enabled {
    background-color: var(--wallet-success);
    box-shadow: 0 0 10px var(--wallet-success);
}

.pin-disabled {
    background-color: var(--wallet-danger);
    box-shadow: 0 0 10px var(--wallet-danger);
}

.limit-progress {
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.limit-progress-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.currency-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.exchange-rate-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.rate-change {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.rate-up {
    background: rgba(6, 214, 160, 0.2);
    color: var(--wallet-success);
}

.rate-down {
    background: rgba(239, 71, 111, 0.2);
    color: var(--wallet-danger);
}

.wallet-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-active {
    background: rgba(6, 214, 160, 0.2);
    color: var(--wallet-success);
    border: 1px solid var(--wallet-success);
}

.status-locked {
    background: rgba(239, 71, 111, 0.2);
    color: var(--wallet-danger);
    border: 1px solid var(--wallet-danger);
}

.warning-banner {
    background: linear-gradient(135deg, #ffd166 0%, #ff9e00 100%);
    color: #000;
    border-radius: 12px;
    padding: 1rem;
    border-left: 6px solid #ff9e00;
}



    .emergency-dashboard {
        min-height: 100vh;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }

    .panic-button {
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 0 60px rgba(255, 65, 108, 0.4);
        animation: pulse 2s infinite;
        border: none;
    }

    .panic-button:hover {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(255, 65, 108, 0.6);
    }

    .panic-button:active {
        transform: scale(0.95);
        box-shadow: 0 0 100px rgba(255, 65, 108, 0.8);
    }

    @keyframes pulse {
        0% { box-shadow: 0 0 60px rgba(255, 65, 108, 0.4); }
        50% { box-shadow: 0 0 80px rgba(255, 65, 108, 0.6); }
        100% { box-shadow: 0 0 60px rgba(255, 65, 108, 0.4); }
    }

    .emergency-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .emergency-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .alert-type-badge {
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .safety-meter {
        height: 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        overflow: hidden;
        position: relative;
    }

    .safety-fill {
        height: 100%;
        border-radius: 5px;
        transition: width 1s ease;
    }

    .quick-action-btn {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .quick-action-btn:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .contact-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .primary-contact {
        border: 2px solid #ffd700;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }

    .emergency-services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .service-card {
        padding: 15px;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-3px);
    }

    .countdown-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .countdown-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .countdown-number {
        font-size: 10rem;
        font-weight: bold;
        color: #ff416c;
        animation: countdownPulse 1s infinite;
    }

    @keyframes countdownPulse {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.1); opacity: 0.8; }
        100% { transform: scale(1); opacity: 1; }
    }

    .location-indicator {
        display: inline-flex;
        align-items: center;
        padding: 5px 10px;
        background: rgba(0, 123, 255, 0.2);
        border-radius: 20px;
        font-size: 0.9rem;
    }

    .location-indicator.active {
        background: rgba(40, 167, 69, 0.2);
        color: #28a745;
    }

    .location-indicator.inactive {
        background: rgba(108, 117, 125, 0.2);
        color: #6c757d;
    }




    .alert-history-section {
        min-height: 100vh;

    }

    .alert-type-filter .badge {
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .alert-type-filter .badge:hover {
        transform: translateY(-2px);
    }

    .alert-card {
        border-left: 4px solid;
        transition: all 0.3s ease;
    }

    .alert-card:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .alert-type-sos { border-left-color: #ff416c; }
    .alert-type-accident { border-left-color: #ff4b2b; }
    .alert-type-harassment { border-left-color: #ffc107; }
    .alert-type-safety_concern { border-left-color: #17a2b8; }
    .alert-type-medical { border-left-color: #28a745; }
    .alert-type-other { border-left-color: #6c757d; }

    .status-badge {
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .map-preview {
        height: 150px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .map-marker {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        background: #ff416c;
        border-radius: 50%;
        border: 3px solid white;
        box-shadow: 0 0 20px rgba(255, 65, 108, 0.5);
    }

    .stats-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .stats-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    }

    .timeline {
        position: relative;
        padding-left: 30px;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, #667eea, #764ba2);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 30px;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -36px;
        top: 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #667eea;
        border: 3px solid white;
    }

    .export-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        transition: all 0.3s ease;
    }

    .export-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    }



    .alert-details-section {
        min-height: 100vh;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }

    .alert-header {
        background: linear-gradient(135deg, rgba(255, 65, 108, 0.2) 0%, rgba(255, 75, 43, 0.2) 100%);
        border-radius: 20px;
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .status-indicator {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        display: inline-block;
        margin-right: 10px;
        animation: statusPulse 2s infinite;
    }

    .status-active { background: #ff416c; }
    .status-resolved { background: #28a745; }
    .status-false_alarm { background: #6c757d; }
    .status-cancelled { background: #ffc107; }

    @keyframes statusPulse {
        0% { opacity: 1; }
        50% { opacity: 0.5; }
        100% { opacity: 1; }
    }

    .info-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    }

    .map-container {
        height: 300px;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
    }

    .emergency-services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .service-item {
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .service-item:hover {
        transform: translateY(-3px);
    }

    .action-timeline {
        position: relative;
        padding-left: 40px;
    }

    .action-timeline::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, #667eea, #764ba2);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 25px;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -26px;
        top: 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #667eea;
        border: 3px solid #1a1a2e;
    }

    .contact-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
    }

    .resolution-card {
        border-left: 4px solid #28a745;
        background: rgba(40, 167, 69, 0.1);
    }

    .call-button {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        border: none;
        transition: all 0.3s ease;
    }

    .call-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
    }







  
    .knowledge-base-section {
        background: linear-gradient(135deg, var(--bs-dark) 0%, #1a1a2e 100%);
        min-height: 100vh;
    }

    .glass-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .glass-container {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    /* Article Cards */
    .article-card {
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .article-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.08);
    }

    .article-title {
        line-height: 1.4;
        min-height: 3.5rem;
    }

    .article-tags {
        min-height: 2rem;
    }

    /* Featured Article Card */
    .featured-article-card {
        position: relative;
        transition: all 0.3s ease;
    }

    .featured-article-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.08);
    }

    .featured-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .article-icon {
        text-align: center;
        margin-bottom: 1rem;
    }

    /* Popular Article Card */
    .popular-article-link {
        display: block;
    }

    .popular-article-card {
        transition: all 0.3s ease;
    }

    .popular-article-card:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .popular-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        transition: all 0.3s ease;
    }

    .popular-article-card:hover .popular-icon {
        background: rgba(var(--bs-primary-rgb), 0.2);
        transform: scale(1.1);
    }

    /* Category Cards */
    .category-link {
        display: block;
    }

    .category-card {
        transition: all 0.3s ease;
    }

    .category-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .category-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        transition: all 0.3s ease;
    }

    .category-card:hover .category-icon {
        transform: scale(1.1);
    }

    /* Empty State */
    .empty-state-icon {
        width: 120px;
        height: 120px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    /* Search Input */
    .input-group-text {
        border-right: none;
    }

    .input-group .form-control {
        border-left: none;
    }

    .input-group .form-control:focus {
        border-color: var(--bs-primary);
    }

    /* Modal */
    .glass-modal {
        background: rgba(31, 41, 55, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .article-quick-view {
        max-height: 60vh;
        overflow-y: auto;
        padding-right: 10px;
    }

    .article-quick-view::-webkit-scrollbar {
        width: 5px;
    }

    .article-quick-view::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .article-quick-view::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
    }

    /* Pagination */
    .pagination .page-link {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        color: #fff;
        transition: all 0.3s ease;
    }

    .pagination .page-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .pagination .page-item.active .page-link {
        background: var(--bs-primary);
        border-color: var(--bs-primary);
        box-shadow: 0 0 15px rgba(var(--bs-primary-rgb), 0.5);
    }

    .pagination .page-item.disabled .page-link {
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.3);
    }

    /* Helpful Section */
    .helpful-section {
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .featured-article-card, .article-card {
            margin-bottom: 1rem;
        }

        .popular-article-card {
            margin-bottom: 0.5rem;
        }

        .category-card {
            margin-bottom: 0.5rem;
        }

        .article-title {
            font-size: 1rem;
        }
    }

    /* Loading Animation */
    @keyframes shimmer {
        0% {
            background-position: -1000px 0;
        }
        100% {
            background-position: 1000px 0;
        }
    }

    .loading-skeleton {
        background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite;
    }

    /* Print Styles */
    @media print {
        .knowledge-base-section {
            background: white !important;
        }

        .glass-card, .glass-container {
            background: white !important;
            border: 1px solid #ddd !important;
            box-shadow: none !important;
        }

        .text-white, .text-light {
            color: black !important;
        }

        .btn, .modal, .dropdown, .pagination, .helpful-section, .featured-badge {
            display: none !important;
        }

        .article-card {
            page-break-inside: avoid;
            break-inside: avoid;
        }
    }



.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--bs-primary), var(--bs-success));
}

.timeline-item {
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -34px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid var(--bs-dark);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--bs-primary);
}

.booking-icon {
    width: 40px;
    height: 40px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 12px;
    padding: 12px;
}

.bg-glow {
    box-shadow: 0 0 10px rgba(var(--bs-primary-rgb), 0.3);
}





.filter-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-card.active {
    background: rgba(var(--bs-primary-rgb), 0.2);
    border-color: var(--bs-primary);
}

.filter-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ride-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ride-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(var(--bs-primary-rgb), 0.3);
}

.time-badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-bar {
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    position: relative;
}

.countdown-progress {
    height: 100%;
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 1s ease;
}

.countdown-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    padding: 0 10px;
}

.calendar-day {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.calendar-day.active {
    background: rgba(var(--bs-warning-rgb), 0.2);
    border-color: var(--bs-warning);
}

.calendar-day:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-icon {
    width: 40px;
    height: 40px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-icon {
    opacity: 0.5;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 12px;
}

.bg-glow {
    box-shadow: 0 0 10px rgba(var(--bs-primary-rgb), 0.3);
}




.ride-row:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.route-icon {
    width: 40px;
    height: 40px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-display {
    text-align: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--bs-success);
}

.rating-bar .progress {
    background: rgba(255, 255, 255, 0.1);
}

.empty-state-icon {
    opacity: 0.5;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 12px;
}

.bg-glow {
    box-shadow: 0 0 10px rgba(var(--bs-primary-rgb), 0.3);
}




    /* Stats Cards */
    .stats-card {
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        border-radius: 16px;
        padding: 1.5rem;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .stats-card:hover {
        transform: translateY(-5px);
        background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    }

    .glass-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 16px;
    }

    .log-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .log-card:hover {
        border-color: var(--bs-primary);
        transform: translateY(-2px);
    }

    .log-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    .log-entry {
        transition: background 0.2s ease;
        cursor: pointer;
    }

    .log-entry:hover {
        background: rgba(255, 255, 255, 0.03);
    }

    .log-details {
        font-family: 'Monaco', 'Menlo', monospace;
        font-size: 0.85rem;
    }

    .json-preview {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        padding: 8px;
        font-size: 0.75rem;
        font-family: monospace;
        max-height: 100px;
        overflow-y: auto;
    }

    .filter-badge {
        background: rgba(13, 110, 253, 0.2);
        border: 1px solid rgba(13, 110, 253, 0.3);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .stats-mini-card {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        padding: 12px;
        text-align: center;
    }

    .log-status-success {
        background: rgba(25, 135, 84, 0.2);
        color: #75b798;
        border-radius: 20px;
        padding: 4px 12px;
        font-size: 0.75rem;
        font-weight: 600;
        display: inline-block;
    }

    .log-status-failed {
        background: rgba(220, 53, 69, 0.2);
        color: #ea868f;
        border-radius: 20px;
        padding: 4px 12px;
        font-size: 0.75rem;
        font-weight: 600;
        display: inline-block;
    }

    .log-status-pending {
        background: rgba(255, 193, 7, 0.2);
        color: #ffda6a;
        border-radius: 20px;
        padding: 4px 12px;
        font-size: 0.75rem;
        font-weight: 600;
        display: inline-block;
    }

    .user-agent-tooltip {
        max-width: 300px;
        word-break: break-word;
    }

    .table-dark {
        --bs-table-bg: transparent;
    }

    .avatar-sm {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .badge-sm {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .filter-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
    }

    .toast-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
    }

    .bg-opacity-10 {
        --bs-bg-opacity: 0.1;
    }

    .bg-primary.bg-opacity-10 {
        background-color: rgba(13, 110, 253, 0.1) !important;
    }

    .bg-success.bg-opacity-10 {
        background-color: rgba(25, 135, 84, 0.1) !important;
    }

    .bg-warning.bg-opacity-10 {
        background-color: rgba(255, 193, 7, 0.1) !important;
    }

    .bg-info.bg-opacity-10 {
        background-color: rgba(13, 202, 240, 0.1) !important;
    }

    .text-primary {
        color: #0d6efd !important;
    }

    .text-success {
        color: #198754 !important;
    }

    .text-warning {
        color: #ffc107 !important;
    }

    .text-info {
        color: #0dcaf0 !important;
    }

    .opacity-80 {
        opacity: 0.8;
    }

    .smaller {
        font-size: 0.7rem;
    }

    pre.json-preview {
        background: #1e1e2f;
        padding: 12px;
        border-radius: 8px;
        overflow-x: auto;
        font-size: 0.75rem;
        margin-top: 8px;
    }

    pre.json-preview code {
        color: #98c379;
    }



 
    .stats-card {
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        border-radius: 16px;
        padding: 1.5rem;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    .stats-card:hover {
        transform: translateY(-5px);
    }
    .log-status-success {
        background: rgba(25, 135, 84, 0.2);
        color: #75b798;
        border-radius: 20px;
        padding: 4px 12px;
        font-size: 0.75rem;
        font-weight: 600;
        display: inline-block;
    }
    .filter-badge {
        background: rgba(13, 110, 253, 0.2);
        border: 1px solid rgba(13, 110, 253, 0.3);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .glass-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 16px;
    }
    .avatar-sm {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .filter-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
    }
    .log-entry {
        cursor: pointer;
        transition: background 0.2s ease;
    }
    .log-entry:hover {
        background: rgba(255, 255, 255, 0.03);
    }
    .action-badge {
        background: rgba(255, 193, 7, 0.2);
        color: #ffc107;
        border-radius: 20px;
        padding: 2px 8px;
        font-size: 0.7rem;
        font-weight: 600;
        display: inline-block;
    }




    
.timeline {
    position: relative;
    padding-left: 30px;
}
.timeline-item {
    position: relative;
    margin-bottom: 20px;
}
.timeline-marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.timeline-content {
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}
.timeline-item:last-child .timeline-content {
    border-bottom: none;
}


    .pending-badge {
        background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
        color: #333;
        animation: pulse 2s infinite;
    }
    
    .time-warning {
        border-left: 4px solid #ffc107;
    }
    
    .time-critical {
        border-left: 4px solid #dc3545;
    }
    
    @keyframes pulse {
        0% { opacity: 1; }
        50% { opacity: 0.8; }
        100% { opacity: 1; }
    }
    
    .urgency-indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        display: inline-block;
        margin-right: 5px;
    }
    
    .urgency-low { background-color: #28a745; }
    .urgency-medium { background-color: #ffc107; }
    .urgency-high { background-color: #dc3545; }
    
    .action-buttons .btn {
        min-width: 100px;
    }



    .confirmed-badge {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        color: #333;
    }
    
    .departing-soon {
        background: linear-gradient(135deg, #fffde4 0%, #d9fffb 100%);
        border-left: 4px solid #00b894;
    }
    
    .departure-today {
        background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        border-left: 4px solid #e17055;
    }
    
    .countdown-timer {
        font-family: 'Courier New', monospace;
        background: #f8f9fa;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-weight: bold;
    }
    
    .countdown-danger {
        background: #ffeaea;
        color: #dc3545;
    }
    
    .countdown-warning {
        background: #fff3cd;
        color: #856404;
    }
    
    .countdown-success {
        background: #d4edda;
        color: #155724;
    }


  
    .cancelled-badge {
        background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
        color: #333;
    }
    
    .refund-badge {
        background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
        color: #333;
    }
    
    .cancelled-by-passenger {
        border-left: 4px solid #6c757d;
    }
    
    .cancelled-by-driver {
        border-left: 4px solid #fd7e14;
    }
    
    .cancelled-by-admin {
        border-left: 4px solid #dc3545;
    }
    
    .cancelled-by-system {
        border-left: 4px solid #6f42c1;
    }
    
    .refund-pending {
        background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    }
    
    .refund-processed {
        background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    }




    .completed-badge {
        background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        color: #333;
    }
    
    .rating-stars {
        color: #ffc107;
        font-size: 0.9rem;
    }
    
    .revenue-card {
        background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
        border: 1px solid #e9ecef;
    }
    
    .performance-excellent {
        border-left: 4px solid #28a745;
    }
    
    .performance-good {
        border-left: 4px solid #17a2b8;
    }
    
    .performance-fair {
        border-left: 4px solid #ffc107;
    }
    
    .performance-poor {
        border-left: 4px solid #dc3545;
    }
