/* Global Styles */
:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --medical-blue: #4FB3E8;
    --medical-green: #2ECC71;
    --text-color: #2C3E50;
    --light-gray: #f8f9fa;
    --hover-bg: #E3F2FD;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}
a{
    text-decoration: none;
}

/* Top Header */
.top-header {
    font-size: 0.9rem;
    background: linear-gradient(to right, #1a1a1a, #2c3e50);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header-content {
    gap: 1rem;
}

.contact-info {
    flex-wrap: wrap;
}

.contact-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.contact-item:hover {
    color: #fff;
    transform: translateY(-1px);
}

.contact-item i {
    color: var(--medical-blue);
    font-size: 0.9rem;
}

.social-links {
    margin: 0 1rem;
}

.social-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #fff;
    background: var(--medical-blue);
    transform: translateY(-2px);
}

.auth-buttons .btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.auth-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
}

.auth-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.auth-buttons .btn-primary {
    background: var(--medical-blue);
    border-color: var(--medical-blue);
}

.auth-buttons .btn-primary:hover {
    background: #3a9ac7;
    border-color: #3a9ac7;
    transform: translateY(-1px);
}

/* Main Header/Navbar */
.navbar {
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98), rgba(227, 242, 253, 0.98));
}

.navbar.sticky-top {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98), rgba(227, 242, 253, 0.98)) !important;
    box-shadow: 0 2px 15px rgba(52, 152, 219, 0.1);
}

/* Brand Styles */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    margin-right: 2rem;
}

.brand-icon {
    color: var(--medical-blue);
    font-size: 1.8rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    vertical-align: middle;
}

/* Navigation Menu */
.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--medical-blue);
    background: rgba(79, 179, 232, 0.05);
}

.navbar-nav .nav-link.active {
    color: var(--medical-blue);
    background: rgba(79, 179, 232, 0.1);
}

/* Desktop Search */
.desk-search {
    margin-left: 2rem;
    display: block;
    position: relative;
}

.desk-search-box {
    position: relative;
    width: 350px;
}

.desk-search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.desk-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s ease;
}

.desk-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    background: #ffffff;
    transition: all 0.3s ease;
    color: #333333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.desk-search-input::placeholder {
    color: #999999;
}

.desk-search-input:focus {
    outline: none;
    border-color: var(--medical-blue);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(79, 179, 232, 0.15);
    width: 400px;
}

.desk-search-input:focus+.desk-search-icon {
    color: var(--medical-blue);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        margin-right: 1rem;
    }

    .desk-search {
        display: none;
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        margin-right: 0.5rem;
    }

    .brand-icon {
        font-size: 1.5rem;
    }

    .brand-text {
        font-size: 1.25rem;
    }
}

/* Dropdown Styles */
.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding: 0.5rem 0;
}

.dropdown-menu {
    padding: 1.5rem;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    min-width: 360px;
    margin-top: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 179, 232, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

/* Dropdown Section Styles */
.dropdown-section {
    margin-bottom: 1.5rem;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(79, 179, 232, 0.1);
}

.section-header i {
    color: var(--medical-blue);
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 179, 232, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 8px;
}

.section-header h6 {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item {
    padding: 0.4rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--medical-blue), var(--medical-green));
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(79, 179, 232, 0.08);
    transform: translateX(5px);
    border-color: rgba(79, 179, 232, 0.2);
    box-shadow: 0 5px 15px rgba(79, 179, 232, 0.1);
}

.dropdown-item:hover::before {
    opacity: 1;
}

.item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 179, 232, 0.1), rgba(46, 204, 113, 0.1));
    border-radius: 10px;
    color: var(--medical-blue);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dropdown-item:hover .item-icon {
    background: linear-gradient(135deg, rgba(79, 179, 232, 0.2), rgba(46, 204, 113, 0.2));
    transform: scale(1.05);
}

.dropdown-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-title {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
}

.item-desc {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Desktop Dropdown Styles */
@media (min-width: 992px) {
    .mobile-arrow {
        display: none;
    }

    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: block;
    }

    .dropdown-toggle::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        border: none;
        vertical-align: middle;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
        color: var(--medical-blue);
    }

    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 20px;
        width: 16px;
        height: 16px;
        background: #fff;
        transform: rotate(45deg);
        border-left: 1px solid rgba(79, 179, 232, 0.15);
        border-top: 1px solid rgba(79, 179, 232, 0.15);
    }
}

/* Tablet Dropdown Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .dropdown-menu {
        min-width: 320px;
        padding: 1.25rem;
    }

    .dropdown-section {
        margin-bottom: 1.25rem;
    }

    .section-header {
        margin-bottom: 0.875rem;
    }

    .dropdown-item {
        padding: 0.875rem 1rem;
        margin-bottom: 0.5rem;
    }

    .item-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .item-title {
        font-size: 0.95rem;
    }

    .item-desc {
        font-size: 0.85rem;
    }
}

/* Mobile Dropdown Styles */
@media (max-width: 767.98px) {
    .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        padding: 1rem;
        background: var(--light-gray);
        border: none;
        margin-top: 0;
        min-width: 100%;
        position: static;
        transform: none;
    }

    .dropdown-section {
        margin-bottom: 1rem;
    }

    .section-header {
        margin-bottom: 0.75rem;
    }

    .dropdown-item {
        padding: 0.875rem 1rem;
        margin-bottom: 0.5rem;
        background: #fff;
        border-radius: 8px;
    }

    .item-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .item-title {
        font-size: 0.95rem;
    }

    .item-desc {
        font-size: 0.85rem;
    }

    .mobile-arrow {
        display: block;
        color: var(--medical-blue);
        transition: transform 0.3s ease;
        margin-left: auto;
    }

    .dropdown.show .mobile-arrow {
        transform: rotate(180deg);
    }

    .dropdown-item:hover {
        transform: translateX(3px);
    }
}

/* Small Mobile Dropdown Styles */
@media (max-width: 575.98px) {
    .dropdown-menu {
        padding: 0.75rem;
    }

    .dropdown-section {
        margin-bottom: 0.875rem;
    }

    .section-header {
        margin-bottom: 0.625rem;
    }

    .dropdown-item {
        padding: 0.75rem 0.875rem;
        margin-bottom: 0.375rem;
    }

    .item-icon {
        width: 28px;
        height: 28px;
        font-size: 0.95rem;
    }

    .item-title {
        font-size: 0.9rem;
    }

    .item-desc {
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://via.placeholder.com/800x600') center/cover;
    opacity: 0.1;
}

.hero-section h1 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: darken(var(--secondary-color), 10%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

/* Footer Styles */
.footer {
    --footer-link-color: rgba(255, 255, 255, 0.85);
    --footer-link-hover-color: #fff;
    --footer-bg: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
    --footer-accent: #4FB3E8;
    --footer-secondary: #2ECC71;
    --footer-card-bg: rgba(255, 255, 255, 0.1);
    --footer-border: rgba(255, 255, 255, 0.15);
    --footer-bottom-bg: rgba(44, 62, 80, 0.95);
    --footer-bottom-border: rgba(255, 255, 255, 0.1);
}

.footer-main {
    position: relative;
    background: var(--footer-bg);
    overflow: hidden;
    padding: 5rem 0 3rem;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm0 90C27.9 90 10 72.1 10 50S27.9 10 50 10s40 17.9 40 40-17.9 40-40 40z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
    opacity: 0.1;
    z-index: 1;
}

.footer-main .container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--footer-link-hover-color);
    margin-bottom: 1.5rem;
}

.footer-brand .brand-icon {
    font-size: 2.5rem;
    color: var(--footer-accent);
    filter: drop-shadow(0 0 10px rgba(79, 179, 232, 0.3));
}

.footer-brand .brand-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(120deg, #fff, var(--footer-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.footer-title {
    color: var(--footer-link-hover-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--footer-accent), var(--footer-secondary));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--footer-link-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--footer-link-hover-color);
    transform: translateX(8px);
}

.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    margin-right: 0.75rem;
    color: var(--footer-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    color: var(--footer-link-color);
    background: var(--footer-card-bg);
    padding: 0.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--footer-border);
}

.contact-info div {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--footer-border);
}

.contact-info div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info div:first-child {
    padding-top: 0;
}

.contact-info i {
    color: var(--footer-accent);
    font-size: 1.25rem;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(79, 179, 232, 0.3));
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--footer-card-bg);
    color: var(--footer-link-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--footer-border);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--footer-accent), var(--footer-secondary));
    opacity: 0;
    transition: all 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    transform: translateY(-5px);
    color: white;
    border-color: transparent;
}

.social-link:hover::before {
    opacity: 1;
}

/* Newsletter Section */
.newsletter-signup {
    background: var(--footer-card-bg);
    padding: 1.75rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.newsletter-signup .footer-title {
    margin-bottom: 1rem;
}

.newsletter-signup p {
    color: var(--footer-link-color);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.375rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 0.625rem 1rem;
    font-size: 0.95rem;
    height: auto;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    background: linear-gradient(45deg, var(--footer-accent), var(--footer-secondary));
    border: none;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 179, 232, 0.3);
}

/* Certifications Bar */
.certifications-bar {
    background: var(--footer-bottom-bg);
    border-top: 1px solid var(--footer-bottom-border);
    border-bottom: 1px solid var(--footer-bottom-border);
    backdrop-filter: blur(10px);
}

.certification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--footer-link-color);
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    background: var(--footer-card-bg);
    border-radius: 8px;
    border: 1px solid var(--footer-border);
    transition: all 0.3s ease;
}

.certification-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.emergency-contact {
    color: var(--footer-link-color);
    font-size: 0.9rem;
    background: var(--footer-card-bg);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--footer-border);
    transition: all 0.3s ease;
}

.emergency-contact:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.emergency-phone {
    color: var(--footer-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-phone:hover {
    color: var(--footer-link-hover-color);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--footer-bottom-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--footer-bottom-border);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--footer-link-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--footer-accent);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--footer-link-hover-color);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 4rem 0 2rem;
    }

    .footer-title {
        margin-bottom: 1.25rem;
    }

    .certification-badges {
        justify-content: center;
        gap: 0.75rem;
    }

    .certification-badge {
        padding: 0.5rem 1rem;
    }

    .emergency-contact {
        margin-top: 1.5rem;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a::before {
        display: none;
    }

    .contact-info {
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .footer-main {
        padding: 2.5rem 0 1.5rem;
    }

    .certification-badge {
        width: 100%;
        justify-content: center;
    }

    .emergency-contact {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        align-items: center;
        gap: 1rem;
    }

    .certification-logos {
        display: flow !important;
    }

    .footer-bottom-links a::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile Search Styles */
.ms-search-trigger {
    margin-right: 1rem;
}

.ms-search-trigger .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medical-blue);
    background: var(--light-gray);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ms-search-trigger .btn:hover {
    background: rgba(79, 179, 232, 0.1);
    transform: scale(1.05);
}

.ms-search-trigger .btn i {
    font-size: 1.25rem;
}

/* Mobile Search Panel */
.ms-search-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1060;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    will-change: transform;
}

.ms-search-panel.active {
    transform: translateY(0);
}

.ms-search-header {
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease 0.2s;
}

.ms-search-panel.active .ms-search-header {
    opacity: 1;
    transform: translateY(0);
}

.ms-search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.3s;
}

.ms-search-panel.active .ms-search-input-group {
    opacity: 1;
    transform: translateY(0);
}

.ms-search-input-group .ms-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medical-blue);
    font-size: 1.25rem;
    pointer-events: none;
    z-index: 2;
    transition: all 0.4s ease;
}

.ms-search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--light-gray);
    transition: all 0.4s ease;
    color: var(--text-color);
    transform: translateY(10px);
    opacity: 0;
}

.ms-search-panel.active .ms-search-input {
    transform: translateY(0);
    opacity: 1;
}

.ms-search-input:focus {
    outline: none;
    border-color: var(--medical-blue);
    background: #fff;
    box-shadow: 0 4px 15px rgba(79, 179, 232, 0.1);
}

.ms-search-input:focus+.ms-search-icon {
    color: var(--medical-blue);
    transform: translateY(-50%) scale(1.1);
}

.ms-search-content {
    padding: 1.5rem 1rem;
    overflow-y: auto;
    height: calc(100vh - 90px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.4s;
}

.ms-search-panel.active .ms-search-content {
    opacity: 1;
    transform: translateY(0);
}

.ms-search-section-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.ms-search-panel.active .ms-search-section-title {
    opacity: 1;
    transform: translateY(0);
}

.ms-recent-searches {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ms-recent-search-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.ms-search-panel.active .ms-recent-search-item {
    opacity: 1;
    transform: translateX(0);
}

.ms-recent-search-item:hover {
    background: var(--light-gray);
    border-color: var(--medical-blue);
    transform: translateX(5px);
}

.ms-recent-search-item i {
    color: var(--medical-blue);
    font-size: 0.875rem;
    transition: all 0.4s ease;
}

.ms-recent-search-item:hover i {
    transform: scale(1.1);
}

.ms-quick-links {
    display: grid;
    gap: 0.75rem;
}

.ms-quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.ms-search-panel.active .ms-quick-link {
    opacity: 1;
    transform: translateX(0);
}

.ms-quick-link:hover {
    background: var(--light-gray);
    border-color: var(--medical-blue);
    transform: translateX(5px);
}

.ms-quick-link i {
    color: var(--medical-blue);
    font-size: 1.25rem;
    transition: all 0.4s ease;
}

.ms-quick-link:hover i {
    transform: scale(1.1);
}

.ms-quick-link-content {
    display: flex;
    flex-direction: column;
}

.ms-quick-link-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

.ms-quick-link-desc {
    font-size: 0.875rem;
    color: #6c757d;
}

@media (max-width: 575.98px) {
    .ms-search-header {
        padding: 0.75rem;
    }

    .ms-search-input {
        padding: 0.75rem 1rem 0.75rem 2.5rem;
        font-size: 0.95rem;
    }

    .ms-search-content {
        padding: 1rem;
    }

    .ms-recent-search-item,
    .ms-quick-link {
        padding: 0.75rem;
    }

    .ms-quick-link i {
        font-size: 1.1rem;
    }

    .ms-quick-link-title {
        font-size: 0.9rem;
    }

    .ms-quick-link-desc {
        font-size: 0.8rem;
    }
}

/* Mobile Menu Styles */
.m-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.m-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.m-menu-header {
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        padding: 0;
        margin: 0;
        overflow-y: auto;
        transition: all 0.3s ease;
        z-index: 1051;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-collapse.show+.m-menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav {
        padding: 1rem;
    }

    .nav-item {
        margin-bottom: 0.5rem;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-link:hover {
        background: rgba(79, 179, 232, 0.05);
    }

    .nav-link.active {
        background: rgba(79, 179, 232, 0.1);
        color: var(--medical-blue);
    }

    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static !important;
        width: 100%;
        margin-top: 0;
        border: none;
        box-shadow: none;
        background: rgba(79, 179, 232, 0.05);
        padding: 0.5rem;
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .dropdown-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .dropdown-item:hover {
        background: rgba(79, 179, 232, 0.1);
        border-color: var(--medical-blue);
        transform: translateX(5px);
    }

    .mobile-arrow {
        display: block;
        color: var(--medical-blue);
        transition: transform 0.3s ease;
        margin-left: auto;
    }

    .dropdown.show .mobile-arrow {
        transform: rotate(180deg);
    }

    .btn-close {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--light-gray);
        border: none;
        color: var(--text-color);
        transition: all 0.3s ease;
    }

    .btn-close:hover {
        background: rgba(79, 179, 232, 0.1);
        color: var(--medical-blue);
        transform: rotate(90deg);
    }

    /* Mobile Dropdown Section Styles */
    .dropdown-section {
        margin-bottom: 1rem;
    }

    .dropdown-section:last-child {
        margin-bottom: 0;
    }

    .section-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(79, 179, 232, 0.1);
    }

    .section-header i {
        color: var(--medical-blue);
        font-size: 1.1rem;
    }

    .section-header h6 {
        color: var(--text-color);
        font-weight: 600;
        font-size: 0.9rem;
        margin: 0;
    }

    /* Mobile Dropdown Item Styles */
    .item-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(79, 179, 232, 0.1);
        border-radius: 8px;
        color: var(--medical-blue);
        font-size: 1rem;
        margin-right: 0.75rem;
    }

    .item-title {
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--text-color);
    }

    .item-desc {
        font-size: 0.85rem;
        color: #666;
        margin-top: 0.25rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-collapse {
        width: 100%;
    }

    .dropdown-menu {
        padding: 0.25rem;
    }

    .dropdown-item {
        padding: 0.625rem 0.875rem;
    }

    .section-header {
        margin-bottom: 0.5rem;
    }

    .item-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .item-title {
        font-size: 0.9rem;
    }

    .item-desc {
        font-size: 0.8rem;
    }
}

/* Search Shortcuts */
.desk-search-shortcuts {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.desk-search-input:focus~.desk-search-shortcuts {
    opacity: 1;
}

.desk-shortcut {
    padding: 0.25rem 0.5rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #666;
    font-family: monospace;
}

/* Search Suggestions */
.desk-search-suggestions {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.desk-search-input:focus~.desk-search-suggestions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desk-suggestion-header {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desk-suggestion-title {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.desk-suggestion-subtitle {
    color: #666;
    font-size: 0.8rem;
}

.desk-suggestion-content {
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.desk-suggestion-section {
    margin-bottom: 1.5rem;
}

.desk-suggestion-section:last-child {
    margin-bottom: 0;
}

.desk-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.desk-section-title i {
    color: var(--medical-blue);
}

.desk-suggestion-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.desk-suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.desk-suggestion-item:hover {
    background: #f8f9fa;
    color: var(--medical-blue);
}

.desk-suggestion-item i {
    color: #666;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.desk-suggestion-item:hover i {
    color: var(--medical-blue);
}

@media (max-width: 991.98px) {
    .desk-search {
        display: none;
    }
}

/* Mobile Bottom Navigation */
.mn-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1030;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mn-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.mn-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #6c757d;
    font-size: 0.75rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
}

.mn-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.mn-nav-item span:not(.mn-badge) {
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mn-nav-item.active {
    color: var(--medical-blue);
}

.mn-nav-item.active i {
    transform: translateY(-2px);
}

.mn-nav-item.active span:not(.mn-badge) {
    color: var(--medical-blue);
}

.mn-badge {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translate(50%, -50%);
    background: var(--medical-blue);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(79, 179, 232, 0.2);
}

/* Adjust main content padding to account for bottom nav */
@media (max-width: 991.98px) {
    main {
        padding-bottom: 4.5rem;
    }

    .footer {
        margin-bottom: 4.5rem;
    }
}

/* Add hover effects for better touch feedback */
@media (hover: none) {
    .mn-nav-item:active {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* Add ripple effect for touch devices */
.mn-nav-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(79, 179, 232, 0.1) 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
}

.mn-nav-item:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

/* Add safe area padding for modern mobile devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mn-bottom-nav {
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    }
}

/* Hero Slider Styles */
.sn-hero-slider {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.sn-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.sn-hero-slide.active {
    opacity: 1;
}

.sn-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-in-out;
}

.sn-hero-slide.active .sn-hero-bg {
    transform: scale(1);
}

.sn-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.sn-slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.sn-hero-slider:hover .sn-slider-control {
    opacity: 1;
    visibility: visible;
}

.sn-slider-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.sn-prev {
    left: 20px;
}

.sn-next {
    right: 20px;
}

/* Center content vertically */
.sn-hero-slide .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sn-hero-slide .row {
    width: 100%;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sn-hero-slider {
        height: 60vh;
    }

    .sn-slider-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        opacity: 1;
        visibility: visible;
    }

    .sn-prev {
        left: 10px;
    }

    .sn-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .sn-hero-slider {
        height: 50vh;
    }

    .sn-slider-control {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Hero Slider Animation Styles */
.sn-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sn-hero-slide.active .sn-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.sn-hero-slide.active .sn-animate[data-delay="0.2s"] {
    transition-delay: 0.2s;
}

.sn-hero-slide.active .sn-animate[data-delay="0.4s"] {
    transition-delay: 0.4s;
}

.sn-hero-slide.active .sn-animate[data-delay="0.6s"] {
    transition-delay: 0.6s;
}

/* Responsive animation adjustments */
@media (max-width: 768px) {
    .sn-animate {
        transform: translateY(20px);
    }
}

@media (max-width: 576px) {
    .sn-animate {
        transform: translateY(15px);
        transition-duration: 0.6s;
    }
}

/* Slider Indicators */
.sn-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.sn-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sn-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.sn-indicator:hover::before {
    background: rgba(255, 255, 255, 0.2);
}

.sn-indicator.active {
    background: #fff;
    transform: scale(1.2);
}

.sn-indicator.active::before {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments for indicators */
@media (max-width: 768px) {
    .sn-slider-indicators {
        bottom: 20px;
        padding: 6px 12px;
    }

    .sn-indicator {
        width: 6px;
        height: 6px;
    }

    .sn-indicator::before {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 576px) {
    .sn-slider-indicators {
        bottom: 15px;
        padding: 5px 10px;
    }

    .sn-indicator {
        width: 5px;
        height: 5px;
    }

    .sn-indicator::before {
        width: 12px;
        height: 12px;
    }
}

/* Categories Section Styles */
.nc-categories-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.nc-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.nc-section-header {
    margin-bottom: 3rem;
}

.nc-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.nc-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.nc-categories-wrapper {
    position: relative;
    padding: 0 3rem;
}

.nc-categories-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.nc-categories-slider::-webkit-scrollbar {
    display: none;
}

.nc-category-item {
    flex: 0 0 calc(16.666% - 1.25rem);
    min-width: 230px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    scroll-snap-align: start;
}

.nc-category-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
}

.nc-category-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.nc-category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nc-category-item:hover .nc-category-image img {
    transform: scale(1.15);
}

.nc-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nc-category-item:hover .nc-category-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.nc-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    z-index: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nc-category-item:hover .nc-category-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding-bottom: 2rem;
}

.nc-category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nc-category-item:hover .nc-category-title {
    transform: translateY(-5px);
}

.nc-category-count {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nc-category-item:hover .nc-category-count {
    transform: translateY(-5px);
    opacity: 1;
}

.nc-category-count::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
}

.nc-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e9ecef;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nc-categories-wrapper:hover .nc-slider-arrow {
    opacity: 1;
    visibility: visible;
}

.nc-prev-arrow {
    left: 0;
}

.nc-next-arrow {
    right: 0;
}

.nc-slider-arrow:hover {
    background: #2c3e50;
    color: #fff;
    border-color: #2c3e50;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.nc-slider-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    transform: translateY(-50%) scale(0.95);
}

.nc-categories-slider.has-more-left .nc-prev-arrow {
    opacity: 1;
    visibility: visible;
}

.nc-categories-slider.has-more-right .nc-next-arrow {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1200px) {
    .nc-category-item {
        flex: 0 0 calc(25% - 1.125rem);
    }
}

@media (max-width: 992px) {
    .nc-category-item {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .nc-category-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .nc-category-content {
        padding: 1.25rem;
    }

    .nc-category-title {
        font-size: 1.1rem;
    }

    .nc-category-count {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .nc-category-item {
        flex: 0 0 calc(100% - 0.5rem);
    }

    .nc-categories-wrapper {
        padding: 0 2rem;
    }

    .nc-slider-arrow {
        width: 35px;
        height: 35px;
    }
}

/* Features Section Styles */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50, #2196F3);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-description {
    color: #6c757d;
    line-height: 1.6;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.features-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-header h2 {
        font-size: 2rem;
    }
}

/* Global Presence Section */
.global-presence-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.global-presence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23e9ecef"/></svg>');
    opacity: 0.5;
}

.global-presence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.global-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.global-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.global-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.global-icon i {
    font-size: 24px;
    color: white;
}

.global-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.global-content p {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.global-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(33, 150, 243, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.global-card:hover .global-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.overlay-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23ffffff"/></svg>');
    opacity: 0.1;
}

.contact-cta-wrapper {
    position: relative;
    z-index: 1;
}

.cta-content {
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cta-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #4CAF50;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .btn-outline-light {
    border: 2px solid white;
}

.cta-buttons .btn-outline-light:hover {
    background: white;
    color: #4CAF50;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .cta-buttons {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .cta-content {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .global-presence-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* about section */
/* About Us Section Styles */
.about-us-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(41, 128, 185, 0.15) 0%, rgba(52, 152, 219, 0.1) 50%, transparent 100%);
    z-index: 1;
}

.about-content {
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.gradient-badge {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* Stats Styling */
.gradient-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gradient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2980b9, #3498db);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.15);
}

.gradient-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 1.5rem;
    color: #2980b9;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #7f8c8d;
}

/* Features Styling */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #2c3e50;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(41, 128, 185, 0.05);
}

.gradient-icon {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Image Styling */
.about-image-wrapper {
    position: relative;
    z-index: 2;
}

.about-main-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(41, 128, 185, 0.1);
}

.about-main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-main-image:hover img {
    transform: scale(1.05);
}

.about-main-image:hover .image-gradient-overlay {
    opacity: 1;
}

.about-experience-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-experience-badge:hover {
    transform: translateY(-5px);
}

.experience-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-features {
        align-items: center;
    }

    .about-experience-badge {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 767.98px) {
    .stat-item {
        margin-bottom: 1rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-description {
        font-size: 1rem;
    }
}

/* category section  */
/* Categories Section Styles */
.nc-category-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nc-category-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.nc-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nc-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    transition: all 0.3s ease;
}

.nc-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    color: #fff;
    z-index: 1;
}

.nc-category-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.nc-category-count {
    font-size: 0.875rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Hover Effects */
.nc-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nc-category-item:hover .nc-category-image img {
    transform: scale(1.1);
}

.nc-category-item:hover .nc-category-overlay {
    background: linear-gradient(45deg, var(--bs-primary), #6c5ce7);
    opacity: 0.9;
}

.nc-category-item:hover .nc-category-title {
    transform: translateY(-3px);
}

.nc-category-item:hover .nc-category-count {
    opacity: 1;
}

/* chat support section */
/* Floating Chat Support Styles */
.floating-chat-support {
    position: fixed;
    bottom: 120px;
    right: 40px;
    z-index: 1000;
}

/* Main Chat Button */
.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    background-color: #0056b3;
}

.chat-toggle-btn i {
    font-size: 24px;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chat Options Panel */
.chat-options-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: none;
    animation: slideIn 0.3s ease;
}

.chat-options-panel.active {
    display: block;
}

.chat-options-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-options-header h5 {
    margin: 0;
    color: #333;
}

.close-chat-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.close-chat-btn:hover {
    color: #333;
}

.chat-options-content {
    padding: 10px 0;
}

.chat-option-item {
    padding: 0 20px;
}

.chat-option-link {
    display: flex;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.chat-option-link:hover {
    background-color: #f8f9fa;
}

.chat-option-link i {
    font-size: 24px;
    width: 40px;
    text-align: center;
    margin-right: 15px;
}

.chat-option-info {
    display: flex;
    flex-direction: column;
}

.chat-option-title {
    font-weight: 500;
    margin-bottom: 2px;
}

.chat-option-desc {
    font-size: 12px;
    color: #666;
}

/* Platform-specific colors */
.chat-option-link.whatsapp i {
    color: #25D366;
}

.chat-option-link.messenger i {
    color: #0084FF;
}

.chat-option-link.wechat i {
    color: #07C160;
}

.chat-option-link.phone i {
    color: #007bff;
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chat-options-panel {
        width: 280px;
        bottom: 70px;
    }

    .chat-toggle-btn {
        width: 50px;
        height: 50px;
    }

    .chat-toggle-btn i {
        font-size: 20px;
    }
}

/* mobile section */
/* Mobile Styles */
@media (max-width: 991.98px) {
    body.menu-open {
        overflow: hidden;
    }

    /* Mobile Menu */
    .navbar-collapse {
        position: fixed;
        top: 0;
        height: 100vh;
        background: #fff;
        z-index: 1050;
        transition: all 0.3s ease;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Navigation */
    .navbar-nav {
        align-items: unset;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

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

    /* Mobile Arrows */
    .mobile-arrow {
        font-size: 0.875rem;
        transition: transform 0.3s ease;
    }

    .mobile-arrow.rotated {
        transform: rotate(180deg);
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .dropdown-menu.show {
        max-height: 1000px;
        padding-left: 1rem !important;
        margin: 0.5rem 0 !important;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-item {
        padding: 0.75rem;
        margin: 0.25rem 0;
        background-color: rgba(0, 0, 0, 0.03);
    }

    .dropdown-item:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    /* Mobile Search */
    .mobile-search {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        z-index: 1060;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-search.show {
        transform: translateY(0);
    }

    .mobile-search-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    .mobile-search .search-box {
        width: 100%;
    }

    .mobile-search .input-group {
        border-radius: 8px;
        background: var(--light-gray);
    }

    .top-header {
        display: none;
    }
}

/* Tablet Styles */
@media (max-width: 767.98px) {

    .top-header .contact-info,
    .top-header .auth-buttons {
        text-align: center;
        margin: 5px 0;
    }

    .navbar-brand {
        max-width: 200px;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .certifications-bar{
        display: none;
    }
}

/* Mobile Small Styles */
@media (max-width: 575.98px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .footer {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

.mobile-search-panel {
    display: none;
}

.mobile-search-panel.active {
    display: block;
}

.mobile-menu-overlay {
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* product page */
/* Page Header Styles */
.np-page-header {
    position: relative;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    padding: 3rem 0 3rem;
    color: white;
    overflow: hidden;
}

.np-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.np-header-content {
    position: relative;
    z-index: 2;
}

.np-header-text {
    padding-right: 2rem;
    max-width: 800px;
}

.np-header-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.np-header-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.np-header-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.np-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.np-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.np-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.np-stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.np-header-search {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.np-search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.np-search-box .np-search-input {
    width: 100%;
    padding: 1.25rem 3rem 1.25rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.np-search-box .np-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.np-search-box .np-search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.np-search-box .np-search-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.np-search-box .np-search-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.np-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.np-tag {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.np-tag-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.np-tag-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.np-header-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.np-header-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

/* Responsive Design for Header */
@media (max-width: 991px) {
    .np-page-header {
        padding: 6rem 0 4rem;
    }

    .np-header-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .np-header-title {
        font-size: 3rem;
    }

    .np-header-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .np-stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .np-page-header {
        padding: 5rem 0 3rem;
    }

    .np-header-title {
        font-size: 2.5rem;
    }

    .np-header-subtitle {
        font-size: 1.25rem;
    }

    .np-stat-number {
        font-size: 2.5rem;
    }

    .np-header-stats {
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .np-page-header {
        padding: 4rem 0 2rem;
    }

    .np-header-title {
        font-size: 2rem;
    }

    .np-header-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .np-stat-item {
        align-items: center;
    }

    .np-stat-number {
        font-size: 2rem;
    }

    .np-stat-label {
        font-size: 1rem;
    }
}

/* Products Section Styles */
.np-products-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* Filters Section */
.np-filters-section {
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    margin-bottom: 2rem;
}

.np-filter-group {
    margin-bottom: 1.5rem;
}

.np-filter-label {
    display: block;
    margin-bottom: 0.75rem;
    color: #2C3E50;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.np-filter-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: 12px;
    background: white;
    color: #2C3E50;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232C3E50' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.np-filter-select:focus {
    border-color: #4FB3E8;
    box-shadow: 0 0 0 4px rgba(79, 179, 232, 0.1);
    outline: none;
}

.np-search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.np-search-input {
    width: 100%;
    padding: 0.875rem 2.5rem 0.875rem 1rem;
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    color: #2C3E50;
    transition: all 0.3s ease;
}

.np-search-input:focus {
    border-color: #4FB3E8;
    box-shadow: 0 0 0 4px rgba(79, 179, 232, 0.1);
    outline: none;
}

.np-search-btn {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #2C3E50;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.np-search-btn:hover {
    color: #4FB3E8;
    transform: scale(1.1);
}

/* A-Z Navigation */
.np-az-navigation {
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    margin-top: 2rem;
}

.np-az-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
}

.np-az-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 2px solid rgba(44, 62, 80, 0.1);
    color: #2C3E50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.np-az-item:hover,
.np-az-item.active {
    border-color: #4FB3E8;
    color: #4FB3E8;
    transform: translateY(-2px);
}

/* Products Grid */
.np-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Product Card */
.np-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.np-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.np-product-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: #f8f9fa;
}

.np-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.np-product-card:hover .np-product-image img {
    transform: scale(1.1);
}

.np-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.np-product-card:hover .np-product-overlay {
    opacity: 1;
}

.np-quick-view-btn {
    background: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.np-quick-view-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #3498DB 0%, #2C3E50 100%);
}

.np-product-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.np-product-name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #212529;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.np-product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.np-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

.np-discount {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Quick View Modal */
.np-modal-image {
    border-radius: 10px;
    overflow: hidden;
}

.np-modal-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.np-modal-content {
    padding: 1rem;
}

.np-modal-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #212529;
}

.np-modal-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.np-modal-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.np-add-to-cart-btn {
    background: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.np-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #3498DB 0%, #2C3E50 100%);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .np-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .np-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .np-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .np-filters-section {
        padding: 1.5rem;
    }

    .np-filter-group {
        margin-bottom: 1rem;
    }

    .np-az-item {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .np-products-grid {
        grid-template-columns: 1fr;
    }

    .np-filters-section {
        padding: 1rem;
    }

    .np-filter-label {
        font-size: 0.9rem;
    }

    .np-filter-select,
    .np-search-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .np-az-item {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

/* Featured Categories in Header */
.np-featured-categories {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.np-categories-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.np-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.np-category-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.np-category-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.np-category-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.np-category-card:hover .np-category-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.np-category-content {
    flex: 1;
}

.np-category-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.np-category-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive adjustments for featured categories */
@media (max-width: 991px) {
    .np-featured-categories {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .np-featured-categories {
        padding: 1.5rem;
    }

    .np-categories-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .np-category-card {
        padding: 1rem;
    }

    .np-category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .np-category-content h4 {
        font-size: 1rem;
    }

    .np-category-count {
        font-size: 0.85rem;
    }
}

/* Product Details Styles */
.np-product-details {
    padding: 2rem 0;
}

/* Product Header */
.np-product-header {
    margin-bottom: 2rem;
}

.np-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.np-breadcrumb-item {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.np-breadcrumb-item:hover {
    color: #4FB3E8;
}

.np-breadcrumb-separator {
    color: #dee2e6;
}

.np-breadcrumb-item.active {
    color: #4FB3E8;
    font-weight: 500;
}

.np-product-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.np-product-category {
    background: rgba(79, 179, 232, 0.1);
    color: #4FB3E8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Product Gallery */
.np-product-gallery {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.np-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.np-image-container {
    position: relative;
    padding-top: 100%;
    background: #f8f9fa;
}

.np-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.np-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.np-main-image:hover .np-image-overlay {
    opacity: 1;
}

.np-zoom-btn {
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.np-zoom-btn:hover {
    transform: scale(1.1);
    background: #4FB3E8;
    color: white;
}

.np-thumbnail-slider {
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.np-thumbnail-track {
    display: flex;
    gap: 0.75rem;
}

.np-thumbnail {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.np-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.np-thumbnail:hover {
    border-color: #4FB3E8;
    transform: translateY(-2px);
}

.np-thumbnail.active {
    border-color: #4FB3E8;
    box-shadow: 0 2px 8px rgba(79, 179, 232, 0.3);
}

/* Product Info */
.np-product-info {
    background: white;
    padding: 2rem;
}

.np-product-header {
    margin-bottom: 1.5rem;
}

.np-product-title {
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.np-product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.np-stars {
    color: #ffc107;
}

.np-rating-count {
    color: #6c757d;
    font-size: 0.95rem;
}

.np-product-price {
    margin-bottom: 1.5rem;
}

.np-price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.np-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2C3E50;
}

.np-original-price {
    font-size: 1.25rem;
    color: #6c757d;
    text-decoration: line-through;
}

.np-discount-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.np-product-description {
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.np-product-features {
    margin-bottom: 2rem;
}

.np-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.np-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.np-feature-item:hover {
    background: rgba(79, 179, 232, 0.1);
    transform: translateY(-2px);
}

.np-feature-item i {
    font-size: 1.25rem;
    color: #4FB3E8;
}

.np-feature-content {
    display: flex;
    flex-direction: column;
}

.np-feature-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.np-feature-value {
    font-weight: 500;
    color: #2C3E50;
}

.np-product-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.np-action-buttons {
    display: flex;
    gap: 1rem;
}

.np-whatsapp-btn,
.np-inquiry-btn {
    flex: 1;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.np-whatsapp-btn {
    background: #25D366;
    color: white;
}

.np-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white;
}

.np-inquiry-btn {
    background: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
    color: white;
}

.np-inquiry-btn:hover {
    background: linear-gradient(135deg, #3498DB 0%, #2C3E50 100%);
    transform: translateY(-2px);
    color: white;
}

.np-qr-section {
    text-align: center;
}

.np-qr-codes {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.np-qr-item {
    text-align: center;
}

.np-qr-item img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.np-qr-item span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Product Tabs */
.np-product-tabs {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.np-tabs-header {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.nav-tabs {
    border: none;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 1rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-tabs .nav-link i {
    font-size: 1.1rem;
}

.nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4FB3E8;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-tabs .nav-link.active {
    color: #2C3E50;
}

.nav-tabs .nav-link.active::after {
    transform: scaleX(1);
}

.np-tab-content {
    padding: 1rem 0;
}

/* Description Tab */
.np-description-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.np-description-main h3 {
    color: #2C3E50;
    margin-bottom: 1rem;
}

.np-description-main p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.np-benefits-list {
    list-style: none;
    padding: 0;
}

.np-benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.np-benefits-list li i {
    color: #28a745;
}

.np-description-sidebar {
    position: sticky;
    top: 2rem;
}

.np-info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.np-info-card h4 {
    color: #2C3E50;
    margin-bottom: 1rem;
}

.np-info-card ul {
    list-style: none;
    padding: 0;
}

.np-info-card ul li {
    color: #6c757d;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.np-info-card ul li::before {
    content: '•';
    color: #4FB3E8;
    position: absolute;
    left: 0;
}

/* Specifications Tab */
.np-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.np-specs-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.np-specs-table th,
.np-specs-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.np-specs-table th {
    color: #2C3E50;
    font-weight: 600;
    width: 40%;
}

.np-specs-table td {
    color: #6c757d;
}

.np-specs-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.np-specs-card h4 {
    color: #2C3E50;
    margin-bottom: 1rem;
}

.np-specs-card ul {
    list-style: none;
    padding: 0;
}

.np-specs-card ul li {
    color: #6c757d;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.np-specs-card ul li::before {
    content: '•';
    color: #4FB3E8;
    position: absolute;
    left: 0;
}

/* Reviews Tab */
.np-reviews-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.np-rating-overview {
    display: flex;
    gap: 3rem;
}

.np-average-rating {
    text-align: center;
}

.np-rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.np-rating-bars {
    flex: 1;
}

.np-rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.np-rating-label {
    width: 60px;
    color: #6c757d;
    font-size: 0.9rem;
}

.np-bar-container {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.np-bar {
    height: 100%;
    background: linear-gradient(135deg, #4FB3E8 0%, #3498DB 100%);
    border-radius: 4px;
}

.np-rating-value {
    width: 40px;
    color: #6c757d;
    font-size: 0.9rem;
    text-align: right;
}

.np-review-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.np-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.np-reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.np-reviewer-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.np-review-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.np-review-text {
    color: #6c757d;
    margin: 0 0 1rem;
    line-height: 1.6;
}

.np-review-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.np-review-verified,
.np-review-helpful {
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.np-review-verified i {
    color: #28a745;
}

.np-review-helpful i {
    color: #4FB3E8;
}

/* FAQ Tab */
.np-faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 500;
    color: #2C3E50;
    background: white;
}

.accordion-button:not(.collapsed) {
    color: #4FB3E8;
    background: rgba(79, 179, 232, 0.1);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 1.25rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Similar Products */
.np-similar-products {
    margin-top: 4rem;
}

.np-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.np-section-title {
    color: #2C3E50;
    font-size: 1.75rem;
    margin: 0;
}

.np-view-all {
    color: #4FB3E8;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.np-view-all:hover {
    color: #2C3E50;
    transform: translateX(5px);
}

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

    .np-description-grid,
    .np-specs-grid {
        grid-template-columns: 1fr;
    }

    .np-rating-overview {
        flex-direction: column;
        gap: 2rem;
    }

    .np-feature-grid {
        grid-template-columns: 1fr;
    }

    .np-action-buttons {
        flex-direction: column;
    }

    .np-qr-codes {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .np-product-info {
        padding: 1.5rem;
    }

    .np-product-title {
        font-size: 1.75rem;
    }

    .np-price {
        font-size: 1.75rem;
    }

    .np-product-tabs {
        padding: 1.5rem;
    }

    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 576px) {
    .np-product-gallery {
        padding: 1rem;
    }

    .np-thumbnail {
        flex: 0 0 60px;
        height: 60px;
    }

    .np-product-title {
        font-size: 1.5rem;
    }

    .np-price {
        font-size: 1.5rem;
    }

    .np-feature-item {
        padding: 0.75rem;
    }

    .np-feature-item i {
        font-size: 1.1rem;
    }

    .np-feature-value {
        font-size: 0.9rem;
    }
}

/* product details css */

/* Product Info Features Section */
.product-info-features {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.info-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.info-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00bcd4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-feature-card:hover::before {
    opacity: 1;
}

.info-feature-icon {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.info-feature-card:hover .info-feature-icon {
    background: #007bff;
    color: white;
}

.info-feature-icon i {
    font-size: 24px;
    color: #007bff;
    transition: all 0.3s ease;
}

.info-feature-card:hover .info-feature-icon i {
    color: white;
}

.info-feature-content {
    flex: 1;
}

.info-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.info-feature-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .info-feature-card {
        padding: 1.5rem;
    }

    .info-feature-icon {
        width: 56px;
        height: 56px;
    }

    .info-feature-icon i {
        font-size: 20px;
    }

    .info-feature-title {
        font-size: 1.1rem;
    }

    .info-feature-desc {
        font-size: 0.85rem;
    }
}

/* Animation for icons */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.info-feature-card:hover .info-feature-icon {
    animation: float 2s ease-in-out infinite;
}

/* Banner Section */
.bn-banner-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.bn-banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bn-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bn-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.bn-banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    margin: 0 auto;
}

.bn-banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bn-banner-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bn-banner-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #007bff;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}

.bn-banner-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    color: #ffffff;
}

.bn-banner-btn i {
    transition: transform 0.3s ease;
}

.bn-banner-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for Banner */
@media (max-width: 768px) {
    .bn-banner-section {
        height: 350px;
    }

    .bn-banner-content {
        padding: 60px 0;
    }

    .bn-banner-title {
        font-size: 2.5rem;
    }

    .bn-banner-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .bn-banner-section {
        height: 300px;
    }

    .bn-banner-content {
        padding: 40px 0;
    }

    .bn-banner-title {
        font-size: 2rem;
    }

    .bn-banner-text {
        font-size: 1rem;
    }

    .bn-banner-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

/* Featured Products Section */
.fp-featured-products {
    padding: 60px 0;
    background-image: linear-gradient(to bottom, rgba(36, 174, 177, 0) 50%, rgba(36, 174, 177, .7) 130%), linear-gradient(to bottom, #fff, #fff);
}

.fp-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.fp-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.fp-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.fp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.fp-product-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.fp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.fp-product-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.fp-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fp-product-card:hover .fp-product-image img {
    transform: scale(1.05);
}

.fp-product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fp-product-category {
    font-size: 0.9rem;
    color: #007bff;
    margin-bottom: 8px;
    font-weight: 500;
}

.fp-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fp-product-rating {
    color: #ffc107;
    margin-bottom: 0.75rem;
}

.fp-rating-count {
    color: #6c757d;
    font-size: 0.9rem;
    margin-left: 5px;
}

.fp-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.fp-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
}

.fp-original-price {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
}

.fp-discount {
    background: #dc3545;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.fp-add-to-cart-btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fp-add-to-cart-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* View All Products Button */
.fp-view-all {
    margin-top: 40px;
}

.fp-view-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #007bff;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}

.fp-view-all-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    color: #ffffff;
}

.fp-view-all-btn i {
    transition: transform 0.3s ease;
}

.fp-view-all-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .fp-featured-products {
        padding: 40px 0;
    }

    .fp-title {
        font-size: 2rem;
    }

    .fp-subtitle {
        font-size: 1rem;
    }

    .fp-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .fp-product-content {
        padding: 15px;
    }

    .fp-product-title {
        font-size: 1rem;
    }

    .fp-view-all {
        margin-top: 30px;
    }

    .fp-view-all-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .fp-featured-products {
        padding: 30px 0;
    }

    .fp-title {
        font-size: 1.75rem;
    }

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

    .fp-product-content {
        padding: 12px;
    }

    .fp-product-category {
        font-size: 0.8rem;
    }

    .fp-product-title {
        font-size: 0.9rem;
    }

    .fp-view-all {
        margin-top: 25px;
    }

    .fp-view-all-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Popular Products Section */
.pp-popular-products {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.pp-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.pp-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pp-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.pp-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.pp-product-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.pp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.pp-product-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

.pp-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pp-product-card:hover .pp-product-image img {
    transform: scale(1.05);
}

.pp-product-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pp-product-category {
    font-size: 0.85rem;
    color: #007bff;
    margin-bottom: 6px;
    font-weight: 500;
}

.pp-product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Styles for Popular Products */
@media (max-width: 1200px) {
    .pp-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pp-popular-products {
        padding: 40px 0;
    }

    .pp-title {
        font-size: 2rem;
    }

    .pp-subtitle {
        font-size: 1rem;
    }

    .pp-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .pp-product-content {
        padding: 12px;
    }

    .pp-product-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .pp-popular-products {
        padding: 30px 0;
    }

    .pp-title {
        font-size: 1.75rem;
    }

    .pp-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .pp-product-content {
        padding: 10px;
    }

    .pp-product-category {
        font-size: 0.75rem;
    }

    .pp-product-title {
        font-size: 0.85rem;
    }
}

/* Customer Reviews Section */
.cr-customer-reviews {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cr-customer-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23e9ecef"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.cr-section-header {
    position: relative;
    z-index: 1;
}

.cr-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.cr-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.cr-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Swiper Styles */
.cr-reviews-slider {
    padding: 20px 0 60px;
    position: relative;
    z-index: 2;
}

.cr-reviews-slider .swiper-slide {
    height: auto;
    padding: 10px;
}

.cr-review-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cr-review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    color: rgba(0, 123, 255, 0.1);
    font-family: Georgia, serif;
}

.cr-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Swiper Navigation */
.cr-reviews-slider .swiper-button-next,
.cr-reviews-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #007bff;
    transition: all 0.3s ease;
}

.cr-reviews-slider .swiper-button-next:after,
.cr-reviews-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.cr-reviews-slider .swiper-button-next:hover,
.cr-reviews-slider .swiper-button-prev:hover {
    background: #007bff;
    color: #fff;
    transform: scale(1.1);
}

.cr-reviews-slider .swiper-button-next {
    right: 10px;
}

.cr-reviews-slider .swiper-button-prev {
    left: 10px;
}

/* Swiper Pagination */
.cr-reviews-slider .swiper-pagination {
    bottom: 0;
}

.cr-reviews-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #007bff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.cr-reviews-slider .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
    background: #007bff;
}

.cr-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cr-reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cr-reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cr-review-card:hover .cr-reviewer-image img {
    transform: scale(1.1);
}

.cr-reviewer-info {
    flex: 1;
}

.cr-reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.cr-reviewer-title {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

.cr-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.cr-review-text {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
}

.cr-review-date {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Review Stats */
.cr-review-stats {
    position: relative;
    z-index: 2;
}

.cr-stat-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cr-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cr-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #007bff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cr-stat-label {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cr-customer-reviews {
        padding: 60px 0;
    }

    .cr-title {
        font-size: 2rem;
    }

    .cr-subtitle {
        font-size: 1rem;
    }

    .cr-reviews-slider {
        padding: 20px 0 50px;
    }

    .cr-review-card {
        padding: 20px;
    }

    .cr-stat-item {
        padding: 20px;
    }

    .cr-stat-number {
        font-size: 2rem;
    }

    .cr-reviews-slider .swiper-button-next,
    .cr-reviews-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .cr-reviews-slider .swiper-button-next:after,
    .cr-reviews-slider .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .cr-customer-reviews {
        padding: 40px 0;
    }

    .cr-title {
        font-size: 1.75rem;
    }

    .cr-stat-item {
        margin-bottom: 15px;
    }

    .cr-reviews-slider .swiper-button-next,
    .cr-reviews-slider .swiper-button-prev {
        display: none;
    }
}

/* Top Brands Section */
.tb-top-brands {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.tb-section-header {
    position: relative;
    z-index: 1;
}

.tb-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.tb-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d2ff);
    border-radius: 2px;
}

.tb-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.tb-brands-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.tb-brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 12);
}

.tb-brand-item {
    flex: 0 0 200px;
    padding: 0 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tb-brand-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    max-height: 100px;
}

.tb-brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Pause animation on hover */
.tb-brands-slider:hover .tb-brands-track {
    animation-play-state: paused;
}

/* Smooth scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 6));
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tb-top-brands {
        padding: 40px 0;
    }

    .tb-title {
        font-size: 2rem;
    }

    .tb-subtitle {
        font-size: 1rem;
    }

    .tb-brand-item {
        flex: 0 0 150px;
    }

    .tb-brand-item img {
        max-height: 80px;
    }

    .tb-brands-track {
        width: calc(150px * 12);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-150px * 6));
        }
    }
}

@media (max-width: 576px) {
    .tb-top-brands {
        padding: 30px 0;
    }

    .tb-title {
        font-size: 1.75rem;
    }

    .tb-brand-item {
        flex: 0 0 120px;
    }

    .tb-brand-item img {
        max-height: 60px;
    }

    .tb-brands-track {
        width: calc(120px * 12);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-120px * 6));
        }
    }
}