    .product-image {
    display: block;                /* Ensure link acts as a container */
    overflow: hidden;              /* Crop anything outside the container */
}

.product-image img {
    width: 100%;                   /* Span width of container */
    object-fit: cover;             /* Cover the area without stretching */
    object-position: center;       /* Center the image */
}

/* brand slickerr-slider width */
.brand-slider .slick-slide {
    width: 200px !important;
}

.section-divider {
    width: 100%;
    background: linear-gradient(to right, transparent, #ccc, transparent);
}

/* Glass Alerts */
.glass-alert {
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.glass-alert.success {
    background: rgba(46, 204, 113, 0.15);
    color: #27ae60;
}

.glass-alert.error {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

/* Main Card */
.premium-dashboard-card {
    position: relative;
    border-radius: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Glow */
.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #4acf8d, transparent);
    opacity: 0.2;
    z-index: 0;
}

/* Layout */
.premium-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Text */
.premium-text h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}


.premium-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 500px;
}

/* Buttons */
.premium-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-main {
    padding: 10px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4acf8d, #4acf8d);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 158, 55, 0.3);
}

/* Outline */
.btn-outline {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #308f1d;
    color: #3baf62;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #309e48;
    color: #fff;
}

/* Soft */
.btn-soft {
    padding: 10px 20px;
    border-radius: 8px;
    background: #f2f2f7;
    color: #333;
    text-decoration: none;
}

.btn-soft:hover {
    background: #ddd;
}

/* Right visual */
.premium-visual {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-bg {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #097217, #3dbd44);
    border-radius: 50%;
    opacity: 0.1;
}

.premium-visual i {
    font-size: 50px;
    color: #0cb923;
}

/* Top Account Menu */
.account-top-menu {
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Menu list */
.account-top-menu .menu-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Menu links */
.account-top-menu .menu-list li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    background: #f5f5f5;
    border-radius: 8px;
    transition: 0.3s ease;
    text-decoration: none;
}

/* Hover */
.account-top-menu .menu-list li a:hover {
    background: #54c03e;
    color: #fff;
    transform: translateY(-2px);
}

/* Active */
.account-top-menu .menu-list li a.active {
    background: linear-gradient(135deg, #71d481, #6ec788);
    color: #fff;
}

/* Icons */
.account-top-menu .menu-list li a i {
    font-size: 15px;
}

/* Mobile scroll */
@media (max-width: 768px) {
    .account-top-menu .menu-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .account-top-menu .menu-list li a {
        white-space: nowrap;
    }
    .premium-content {
        flex-direction: column;
        text-align: center;
    }

    .premium-visual {
        margin-top: 20px;
    }

    .premium-actions {
        justify-content: center;
    }
}

/*header part top line remove */
.navbar-content {
    border-top: 0px solid #ffffff;
}

.header-logo img {
    width: auto;
   height: 90px;
    padding: 0px;
    margin: 0px;

}

.header-content{
    padding: 0px;
}


.header-media-group a img {
    width: auto;
    height: 65px;
}