/* Modern CSS with Trending Design Elements */

:root {
    --primary-color: #003d82;
    --primary-dark: #002855;
    --primary-light: #1a5ba0;
    --secondary-color: #2d5a7b;
    --accent-color: #FF6B35;
    --success-color: #00C896;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: rgb(255 255 255 / 95%);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgb(255 255 255 / 95%);
    box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
    body {
        padding-top: 76px;
    }
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand img {
    display: block;
    width: 216px;
    height: 120px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .navbar-brand img {
        width: 162px;
        height: 90px;
    }
}

.navbar-brand i {
    font-size: 2rem;
}

.brand-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.35;
    color: #000000 !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link {
    font-size: 0.95rem !important;
    line-height: 1.35 !important;
}

.navbar .dropdown-item {
    font-size: 0.95rem !important;
    line-height: 1.35 !important;
}

.navbar .nav-link i,
.navbar .dropdown-item i {
    font-size: 1rem !important;
    line-height: 1 !important;
    vertical-align: middle;
}

.navbar .nav-link .badge {
    font-size: 0.7rem !important;
    line-height: 1 !important;
    vertical-align: middle;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #000000;
    transition: var(--transition);
}

.navbar .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.35);
}

.navbar .navbar-toggler-icon {
    filter: none;
}

/* Dropdown Menu Styling */
.navbar .dropdown-menu {
    background: #ffffff;
    border: 1px solid rgba(0, 168, 107, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar .dropdown-item {
    color: #000000;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(0, 0, 0, 0.06);
    color: #000000;
}

.navbar .dropdown-item.active {
    background: rgba(0, 168, 107, 0.12);
    color: #008c4f;
}

@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Nested Dropdown Support */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -0.5rem;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a::after {
    float: right;
    border: solid #00a86b;
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    margin-right: -0.5rem;
}

/* Mobile responsiveness */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        background: #ffffff;
        border-radius: 6px;
    }

    .navbar .nav-item.dropdown.show > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin: 0;
        padding-left: 1.5rem;
    }

    .dropdown-submenu > a::after {
        display: none;
    }
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.btn-primary {
    background:#003d82;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

/* Image Slider Section */
.image-slider-section {
    position: relative;
    width: 100vw;
    height: calc(100vh - 76px);
    height: calc(100svh - 76px);
    min-height: 420px;
    margin-top: 76px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: #fff;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    display: block;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .image-slider-section {
        height: calc(100vh - 76px);
        height: calc(100svh - 76px);
        min-height: 420px;
        margin-top: 76px;
    }

    .slide img {
        object-fit: fill;
        object-position: center;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 8px;
        padding: 8px 15px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .image-slider-section {
        height: calc(100vh - 76px);
        height: calc(100svh - 76px);
        min-height: 420px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .slider-dots {
        bottom: 15px;
        gap: 6px;
        padding: 6px 12px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .dot.active {
        width: 16px;
    }
}

/* Smooth transition for touch devices */
@media (hover: none) and (pointer: coarse) {
    .slider-nav {
        background: rgba(255, 255, 255, 0.4);
    }
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* About Section */
#about {
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.about-visual-section {
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.image-card-modern {
    background:#003d82;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    min-height: 200px;
}

.image-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.3);
}

.image-card-modern h4 {
    color: var(--white);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.3;
    text-align: center;
    margin-bottom: 0.5rem;
}

.image-card-modern p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.icon-badge {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition);
}

.image-card-modern:hover .icon-badge {
    transform: scale(1.1) rotate(5deg);
}

.feature-box-small {
    padding: 1.5rem 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-box-small:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-content-wrapper {
    position: relative;
    z-index: 2;
    background: transparent;
    text-align: left;
}

.about-content-wrapper .section-title {
    text-align: left;
}

@media (max-width: 768px) {
    .about-content-wrapper {
        text-align: center;
    }
    
    .about-content-wrapper .section-title {
        text-align: center;
    }
}

.stats-card-modern {
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

/* About Image Grid */
.about-image-grid {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card {
    position: absolute;
    background: var(--gradient-1);
    border-radius: 20px;
    width: 250px;
    height: 200px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.image-card.card-1 {
    top: 20%;
    left: 0;
}

.image-card.card-2 {
    bottom: 20%;
    right: 10%;
}

.stats-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    min-width: 180px;
    transition: var(--transition);
    z-index: 10;
}

.stats-card:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}

.stats-card h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.stats-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
}

.feature-item h5 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Service Cards */
.service-card {
    position: relative;
    height: 100%;
    transition: var(--transition);
    overflow: hidden;
    text-align: left;
}

.service-card h4 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background:#003d82;
    transition:#003d82;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.featured-service {
    border: 2px solid rgba(255, 107, 53, 0.45);
    background: linear-gradient(165deg, #ffffff 0%, #fff4ee 100%);
    box-shadow: 0 14px 34px rgba(255, 107, 53, 0.22);
    transform: translateY(-6px) scale(1.02);
}

.featured-service:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.featured-service .service-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8f66 100%);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.featured-service .service-number {
    color: rgba(255, 107, 53, 0.26);
}

.featured-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.32rem 0.8rem;
    border-radius: 999px;
    background: #ff6b35;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

@media (max-width: 768px) {
    .featured-service {
        transform: none;
    }

    .featured-service:hover {
        transform: translateY(-8px);
    }
}


.service-icon {
    width: 70px;
    height: 70px;
    background: #003d82;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
}

/* Service detail page blocks (full content layout) */
.service-detail-block {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.service-detail-block:last-child {
    border-bottom: none;
}
.service-icon-lg {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    color: var(--white);
}
.service-icon-lg i {
    font-size: 2.25rem;
}
.service-detail-block .service-number {
    position: static;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.25rem;
}
.service-title-img {
    width: min(100%, 540px);
    max-width: 540px;
    height: auto;
    object-fit: cover;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.service-detail-block .service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.service-detail-block .service-features li {
    padding: 0.35rem 0;
    padding-left: 0;
    position: relative;
    line-height: 1.5;
}

.services-page .service-detail-block p,
.services-page .service-detail-block li {
    color: #666666;
    font-size: 17px;
    line-height: 26px;
}

.services-page .service-detail-block .lead,
.services-page .service-detail-block .lead.text-muted {
    color: #666666 !important;
    font-size: 17px;
    line-height: 26px;
}

.services-page .service-detail-block h2,
.services-page .service-detail-block h5,
.services-page .service-detail-block h6 {
    color: #15426e;
}

.services-page .service-detail-block h2 {
    font-size: 38px;
    line-height: 48px;
    font-weight: 500;
}

.services-page .service-detail-block h5 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
}

.services-page .service-detail-block h6 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.5rem;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.popular {
    background: var(--gradient-3);
}

.product-image {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-image::before {
    opacity: 1;
    animation: ripple 1.5s ease-out;
}

@keyframes ripple {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.product-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(10deg);
}

.product-icon i {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-content {
    padding: 1.5rem;
    text-align: left;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.3;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Industry Cards */
.industry-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: #003d82;
}

.industry-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.industry-card:hover i {
    color: var(--white);
    transform: scale(1.2);
}

.industry-card h5 {
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin: 0;
    transition: var(--transition);
    line-height: 1.3;
}

.industry-card:hover h5 {
    color: var(--white);
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card i {
    font-size: 3rem;
    opacity: 0.9;
}

.value-card h4 {
    font-weight: 700;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.3;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.value-card p {
    opacity: 0.9;
    margin: 0;
}

/* Testimonial Cards */
.testimonial-card {
    height: 100%;
    text-align: left;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.rating i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #003d82;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 2rem;
    color: var(--white);
}

/* Contact Section */
.contact-info-card {
    text-align: center;
    transition: var(--transition);
}

.contact-info-card h5 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #003d82;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-form-card {
    padding: 2.5rem;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-control {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.free-delivery-card {
    background: #003d82;
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.free-delivery-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.free-delivery-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.free-delivery-card p {
    margin: 0;
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.newsletter-card {
    background: #003d82;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.newsletter-form .input-group {
    max-width: 500px;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    position: relative;
    background-image: url('https://bioca.getupai.com/wp-content/uploads/2024/02/footer-bg01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0fb0b3;
    opacity: 0.86;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand img {
    width: 216px;
    height: auto;
    max-width: 100%;
}

@media (max-width: 576px) {
    .footer-brand img {
        width: 162px;
    }
}

.footer-brand i {
    font-size: 2rem;
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.3;
}

.footer-links a {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Keep muted footer text readable on dark background */
.footer .text-muted {
    color: rgba(255, 255, 255, 0.82);
}

.footer .text-muted:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #003d82;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 997;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* Body Text Standardization */
body {
    font-size: 1rem;
    line-height: 1.6;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.text-muted {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Heading Sizes */
h1, .h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    font-weight: 800;
}

h2, .h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: 1.3;
    font-weight: 700;
}

h3, .h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.3;
    font-weight: 700;
}

h4, .h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.4;
    font-weight: 600;
}

h5, .h5 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.4;
    font-weight: 600;
}

h6, .h6 {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    line-height: 1.4;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        line-height: 1.3;
    }
    
    .hero-section h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .stats-row {
        gap: 2rem;
    }
    
    .about-image-grid {
        height: 400px;
    }
    
    .image-card {
        width: 200px;
        height: 160px;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .text-muted {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .hero-section .badge {
        font-size: 0.75rem;
        white-space: nowrap;
        display: block;
        width: fit-content;
    }
    
    .hero-section h1,
    .hero-section .display-3 {
        font-size: clamp(1.1rem, 5vw, 1.5rem) !important;
        letter-spacing: -0.1px;
        line-height: 1.2 !important;
        display: block;
        white-space: normal !important;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
    }
    
    .hero-section h5 {
        font-size: clamp(0.7rem, 2vw, 0.9rem) !important;
        line-height: 1.3 !important;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal !important;
        max-width: 100%;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
        line-height: 1.3;
        text-align: center;
    }
    
    .section-label {
        font-size: 0.85rem;
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .text-center {
        text-align: center !important;
    }
    
    .stats-row {
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .about-visual-section {
        margin-bottom: 2rem;
    }
    
    .image-card-modern {
        min-height: 150px;
        padding: 1.5rem 1rem;
    }
    
    .stats-card-modern {
        padding: 1.5rem 1rem;
    }
    
    .stats-card-modern h3 {
        font-size: 1.5rem;
    }
    
    .stats-card-modern small {
        font-size: 0.75rem;
    }
    
    .newsletter-card {
        padding: 2rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 50px;
        width: 100%;
    }
    
    .newsletter-form .btn {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section .badge {
        font-size: 0.65rem;
        white-space: nowrap;
    }
    
    .hero-section h1,
    .hero-section .display-3 {
        font-size: clamp(1rem, 5vw, 1.3rem) !important;
        letter-spacing: 0;
        line-height: 1.2 !important;
        display: block;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal !important;
        hyphens: auto;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        text-align: center;
    }
    
    .hero-section h5,
    .hero-section .sliderHfont {
        font-size: clamp(0.7rem, 3.5vw, 0.85rem) !important;
        line-height: 1.6 !important;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal !important;
        max-width: 100%;
        text-align: left !important;
        padding: 0.2rem 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0.3rem 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block;
        text-indent: 0 !important;
        overflow: visible;
        box-sizing: border-box;
        min-height: auto;
        height: auto;
    }
    
    .hero-section .lead {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
        text-align: center;
    }
    
    p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .service-card,
    .product-content,
    .feature-item {
        text-align: center;
    }
}

@media (max-width: 360px) {
    .hero-section h1 {
        font-size: 0.65rem;
        line-height: 1.15;
    }
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Utility Classes */
.bg-primary-gradient {
    background:#003d82!important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Page Header */
.page-header {
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    padding: 150px 0 80px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Stat Box */
.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-5px);
}

/* Value Item */
.value-item {
    transition: var(--transition);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #003d82;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Quality Stats */
.quality-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.quality-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.quality-stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.quality-stat-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quality-stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Tech Card */
.tech-card {
    text-align: center;
    transition: var(--transition);
}

.tech-card i {
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Team Card */
.team-card {
    transition: var(--transition);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: #003d82;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.team-avatar i {
    font-size: 4rem;
    color: var(--white);
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li i {
    font-size: 1rem;
}

/* Process Card */
.process-card {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background:#003d82!important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 0;
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Additional Service Card */
.additional-service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.additional-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.additional-service-card i {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background:#003d82;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.text-muted:hover {
    color: #7a7a7a !important; /* keep hover readable with dark gray */
}

/* Category Card */
.category-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: #003d82!important;
    color:#fff!important;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.category-card:hover .category-icon {
    background: rgba(255, 255, 255, 0.2);
}

.category-card:hover .category-icon i {
    color: var(--white);
}

.category-card:hover h5,
.category-card:hover p {
    color: var(--white);
}

/* Feature Box */
.feature-box {
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-box i {
    font-size: 3rem;
    background:#003d82;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bulk Order Badge */
.bulk-order-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 3rem;
}

.bulk-order-badge i {
    font-size: 4rem;
}

/* Industry Detail Card */
.industry-detail-card {
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.industry-detail-icon {
    width: min(100%, 360px);
    aspect-ratio: 1 / 1;
    background:#003d82;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}

.industry-detail-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.industry-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 991px) {
    .industry-detail-icon {
        width: min(100%, 320px);
    }
}

@media (max-width: 576px) {
    .industry-detail-icon {
        width: min(100%, 260px);
    }
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

/* Benefit Card */
.benefit-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background:#003d82;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* Case Study Card */
.case-study-card {
    height: 100%;
    transition: var(--transition);
}

.case-study-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #003d82;
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-study-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.case-study-stats .stat {
    flex: 1;
}

/* Resource Category Card */
.resource-category-card {
    height: 100%;
    transition: var(--transition);
}

.resource-icon {
    width: 70px;
    height: 70px;
    background: #003d82;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon i {
    font-size: 2rem;
    color: var(--white);
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.resource-list a:hover {
    color: var(--primary-color);
}

.resource-list a i {
    color: var(--primary-color);
}

/* FAQ Card */
.faq-card {
    height: 100%;
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: #003d82;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.faq-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-button {
    background: rgba(0, 102, 255, 0.05);
    border: none;
    font-weight: 600;
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background: #003d82;
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--white);
}

/* Blog Card */
.blog-card {
    height: 100%;
    overflow: hidden;
    transition: var(--transition);
}

.blog-image {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.blog-icon i {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 0.5rem;
}

.blog-link i {
    transition: var(--transition);
}

.blog-link:hover i {
    transform: translateX(5px);
}
/* ============================================================
   SHOPPING CART PAGE STYLES
   ============================================================ */

/* Cart Notification Banner */
.cart-notification-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    max-width: 350px;
    z-index: 999;
    animation: slideInRight 0.5s ease;
}

.cart-notification-banner.show {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
}

.cart-notification-banner.hidden {
    display: none;
}

.cart-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-notification-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.cart-notification-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-light);
}

.cart-notification-message {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.cart-notification-subtext {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.cart-notification-cta {
    width: 100%;
    font-weight: 600;
}

/* Floating Cart Badge */
.cart-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #003d82;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 998;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cart-badge:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 40px rgba(0, 102, 255, 0.4);
}

.cart-badge i {
    font-size: 1.75rem;
}

.cart-badge .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    font-size: 0.75rem;
}

/* Cart Container */
.cart-container {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Empty Cart Message */
.empty-cart-message {
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-cart-message i {
    font-size: 5rem;
    color: #ddd;
}

.empty-cart-message h4 {
    color: var(--text-dark);
}

/* Cart Items List */
.cart-items-list {
    padding: 2rem;
}

.cart-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    background: rgba(0, 102, 255, 0.02);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: var(--transition);
}

.cart-item:hover {
    background: rgba(0, 102, 255, 0.05);
    border-color: rgba(0, 102, 255, 0.2);
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumbnail i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Quantity Control */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.25rem;
    width: fit-content;
}

.btn-qty {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-qty:hover {
    color: var(--primary-color);
}

.qty-input {
    width: 50px;
    border: none;
    text-align: center;
    font-weight: 600;
}

.qty-input:focus {
    outline: none;
}

/* Cart Summary */
.cart-summary {
    padding: 2rem;
    border-radius: 15px;
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.summary-row .price {
    font-weight: 600;
    color: var(--primary-color);
}

.total-row {
    font-size: 1.2rem;
    padding-top: 1rem;
}

.total-row .price {
    color: var(--accent-color);
}

/* Cart Features */
.cart-features {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Recommendations */
.recommendation-item {
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    transition: var(--transition);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.recommendation-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 217, 255, 0.08) 100%);
}

.recommendation-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.recommendation-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

/* Info Card */
.info-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-summary {
        position: static;
        margin-top: 2rem;
    }

    .cart-item .row {
        flex-direction: column;
    }

    .cart-item .col-md-1,
    .cart-item .col-md-2,
    .cart-item .col-md-3,
    .cart-item .col-md-2,
    .cart-item .col-md-2 {
        width: 100%;
        margin-bottom: 1rem;
    }

    .cart-notification-banner {
        bottom: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }

    .cart-badge {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .cart-badge i {
        font-size: 1.5rem;
    }

    .scroll-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    padding-left: 100px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(to bottom, #003d82, #00a86b);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    position: absolute;
    left: -10px;
    top: 0;
    width: 60px;
    height: 60px;
    background: #003d82;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 10, 146, 0.3);
}

.timeline-content {
    padding: 20px;
    border-left: 3px solid #00a86b;
}

.timeline-content h4 {
    color: #003d82;
    margin-bottom: 10px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .timeline-item {
        padding-left: 60px;
        margin-bottom: 40px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 14px;
        left: -5px;
    }
    
    .timeline-item::before {
        left: 15px;
    }
}

/* Highlight Icon Styles */
.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003d82 0%, #1a5ba0 100%);
    color: white;
    font-size: 24px;
}

/* Industry Badge Styles */
.industry-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #003d82 0%, #1a5ba0 100%);
    color: white;
    font-size: 28px;
}

/* Mission & Vision Cards */
.mission-card,
.vision-card {
    border: 1px solid rgba(0, 10, 146, 0.1) !important;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8) !important;
}

.mission-card h3,
.vision-card h3 {
    color: #003d82;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission-statement,
.vision-points {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 10, 146, 0.1);
}

.vision-points ul li {
    color: #003d82;
    font-weight: 500;
}

/* Quality Assurance Items */
.qa-item {
    padding: 2rem;
    background: transparent;
    border-left: 4px solid #003d82;
    transition: var(--transition);
}

.qa-item:hover {
    background: rgba(0, 10, 146, 0.05);
    padding-left: 2.5rem;
}

.qa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003d82 0%, #1a5ba0 100%);
    color: white;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 1rem;
}

.qa-item h5 {
    color: #003d82;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Value Highlights */
.value-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 10, 146, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.highlight-row:hover {
    background: rgba(0, 10, 146, 0.1);
    transform: translateX(5px);
}

.highlight-row i {
    font-size: 24px;
    margin-top: 2px;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.service-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 10, 146, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 10, 146, 0.15);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003d82 0%, #1a5ba0 100%);
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-feature h5 {
    color: #003d82;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Environment Features */
.env-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.env-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(0, 10, 146, 0.1);
    transition: var(--transition);
}

.env-feature:hover {
    border-color: #003d82;
    background: rgba(0, 10, 146, 0.02);
}

.env-feature i {
    font-size: 32px;
    color: #003d82;
    margin-bottom: 1rem;
    display: block;
}

.env-feature h5 {
    color: #003d82;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Safety Checklist */
.safety-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: var(--transition);
}

.check-item:hover {
    background: rgba(0, 200, 150, 0.05);
    border-color: #00c896;
    transform: translateX(5px);
}

.check-item i {
    font-size: 24px;
    flex-shrink: 0;
}

.check-item span {
    color: #1a1a1a;
    font-weight: 500;
}

/* Experiment Section Styles */
.experiment-section {
    margin: 0;
    padding: 0;
}

.experiment-section .experiment-image-pane {
    min-height: 600px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .experiment-section .row {
        min-height: auto !important;
    }

    .experiment-section .experiment-image-pane {
        min-height: 380px;
        margin: 20px 20px 0;
        border-radius: 16px;
    }
    
    .experiment-section .col-lg-7 {
        padding: 50px 30px !important;
    }
}

@media (max-width: 768px) {
    .experiment-section .experiment-image-pane {
        min-height: 280px;
        margin: 16px 12px 0;
        border-radius: 12px;
    }

    .experiment-section .col-lg-7 {
        padding: 40px 20px !important;
    }
    
    .experiment-section h2 {
        font-size: 2rem !important;
    }
}
