.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    outline: none;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
    color: #2ef148;
}
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #060606;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.strip
{
    background-color: #3368c6 !important;
}
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important; 
    /* var(--bs-white); */
}

/* Package Pricing */
/* .price-section {
    padding: 20px;
    background: linear-gradient(135deg, var(--light-gray), white);
    border-radius: 10px;
    margin: 15px 0;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--dark-gray);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.discount-badge {
    background-color: var(--danger-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.discount-badge {
    background-color:#dc3545;
     var(--danger-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
} */
/* .original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--dark-gray);
} */
/* .package-item {
    transition: all 0.3s ease;
    border: 2px solid #3368c6;
    position: relative;
}

.package-item:hover {
    border-color: #3368c6;
    box-shadow: 0px 10px 30px rgba(32, 32, 32);
    transform: translateY(-5px);
    cursor: pointer;
} */
.breadcrumb-item.active
{
    color: #2ef148 !important;
}

 /* Package Card Styling */
        .package-item {
            border: none;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .package-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
        }
        
        .package-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #17a2b8, #28a745);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }
        
        .package-item:hover::before {
            transform: scaleX(1);
        }
        
        .package-header {
            position: relative;
            z-index: 1;
        }
        
        .price-tag {
            position: absolute;
            top: -10px;
            right: -10px;
        }
        
        .discount-badge {
            background: #dc3545;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .original-price {
            text-decoration: line-through;
            color: #6c757d;
            font-size: 1rem;
        }
        
        .current-price {
            font-weight: 700;
            margin-top: 5px;
        }
        
        .package-features li {
            transition: all 0.2s ease;
            padding-left: 10px;
            border-left: 2px solid transparent;
        }
        
        .package-features li:hover {
            border-left: 2px solid #28a745;
            padding-left: 15px;
        }
        
        .package-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(40, 167, 69, 0.1);
            border-radius: 50%;
            color: #28a745;
            font-size: 1.5rem;
        }
        
        /* Category Badges */
        .category-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            z-index: 2;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 767.98px) {
            .package-item {
                margin-bottom: 30px;
            }
        }
