* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2d4a8e;
    --secondary-blue: #3d5a9e;
    --light-bg: #f8f9fc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}





/* nav bar */
.top-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.top-bar a {
    color: #495057;
    text-decoration: none;
    margin: 0 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.top-bar a:hover {
    color: #0066cc;
    transform: translateY(-1px);
}

.top-bar i {
    margin-right: 5px;
    font-size: larger
}

.navbar {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    padding: 0;
    margin-right: 0;
}

.vl {
    border-left: 1px solid rgba(0, 0, 0, 0.53);
    height: 50px;
    margin: 0 10px;
}

.weicon-logo {
    display: flex;
    align-items: center;
    gap: 0;
    transition: transform 0.3s ease;
}

.weicon-logo img {
    width: 80%;
}

.weicon-logo:hover {
    transform: scale(1.05);
}

.logo-box {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 10px 14px;
    font-weight: bold;
    font-size: 26px;
    border-right: 3px solid white;
    transition: all 0.3s ease;
}

.logo-box:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}

/* .navbar-nav .nav-link {
    color: #003d7a !important;
    font-weight: 600;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    position: relative;
} */

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #00a8ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: #0066cc;
}

.navbar-nav .nav-link.promo {
    color: #0066cc;
    background: linear-gradient(135deg, #ffffff 0%, #a0d0ffa7 100%);
    border-radius: 6px;
    margin-left: 10px;
}

.navbar-nav .nav-link.promo:hover {
    background: linear-gradient(135deg, #0066cc1f 0%, #f5f9ff 100%);
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    left: -110px;
    right: 0;
    width: 340px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin-top: 0;
    border: none;
    border-top: 4px solid #0066cc;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    height: 370px;
    border-radius: 30px;
}

.nav-item:hover .mega-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.mega-menu-column {
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    width: 260px;
}

.mega-menu-column:hover {
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.1);
}

.mega-menu-title {
    font-size: 16px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e3f2fd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-menu-title i {
    font-size: 20px;
    background: linear-gradient(135deg, #0066cc, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 12px;
    background: linear-gradient(135deg, #00a8ff, #0066cc);
    border-radius: 5px;

}

.mega-menu-list a {
    color: #495057;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.mega-menu-list a:hover {
    background: linear-gradient(135deg, #0066cc, #00a8ff);
    color: white;
    padding-left: 18px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.mega-menu-list a i {
    font-size: 12px;
    color: #0066cc;
    transition: all 0.3s ease;
}

.mega-menu-list a:hover i {
    color: white;
    transform: translateX(3px);
}

.mega-menu-featured {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.mega-menu-featured h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.mega-menu-featured p {
    font-size: 13px;
    opacity: 0.95;
    margin-bottom: 20px;
}

.mega-menu-featured .btn {
    background: white;
    color: #0066cc;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mega-menu-featured .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    flex: 1;
}

.search-box input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.search-box input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.search-box button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0066cc, #00a8ff);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-icons a {
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px;
}

.navbar-icons a:hover {
    color: #68b1fb;
    transform: translateY(-2px);
}

.cart-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 8px;
    background: linear-gradient(135deg, #46a3ff 0%, #73b9ff 100%);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cart-badge:hover {
    background: linear-gradient(135deg, #aed7ff, #00aaff5d);
    color: white;
}

.cart-badge span {
    font-size: 14px;
    font-weight: 700;
}

.navbar-toggler {
    border: 2px solid #0066cc;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: #0066cc;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}


/* Badge Indicator */
.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Mega Menu Sub-dropdown Styles */
.mega-submenu {
    position: relative;
}

/* .mega-submenu>a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    font-size: 12px;
    float: right;
    transition: transform 0.3s ease;
} */

.mega-submenu:hover>a::after {
    transform: translateX(3px);
}

.mega-submenu-list {
    display: none;
    list-style: none;
    padding: 15px;
    margin: 0;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 265px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-left: 3px solid #0066cc;
    z-index: 1000;
}

.mega-submenu:hover .mega-submenu-list {
    display: block;
    animation: slideRight 0.3s ease;
    height: 300px;
    overflow-x: auto;
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mega-submenu-list li {
    margin-bottom: 8px;
}

.mega-submenu-list a {
    color: #666;
    font-size: 13px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mega-submenu-list a i {
    font-size: 8px;
    color: #0066cc;
}

.mega-submenu-list a:hover {
    background: linear-gradient(135deg, #0066cc, #00a8ff);
    color: white;
    padding-left: 16px;
}

.mega-submenu-list a:hover i {
    color: white;
}

/* sticky  */
/* Sticky Menu Section */
.main-navigation {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    position: sticky;
    top: 0;
    z-index: 996;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.navigation-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.primary-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: static;
}

.menu-link {
    color: white !important;
    text-decoration: none;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 5px;
    position: relative;
}

.menu-link:hover {
    color: #00a8ff !important;
}

.menu-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.menu-link:hover::after {
    width: 80%;
}

.has-dropdown i {
    font-size: 12px;
    transition: transform 0.3s;
}

.menu-item:hover .has-dropdown i {
    transform: rotate(180deg);
}

/* Mega Menu */
.dropdown-menu-full {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.menu-item:hover .dropdown-menu-full {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    height: 600px;
    overflow-y: auto;
}

.dropdown-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.dropdown-section {
    width: 100%;
}

.section-heading {
    color: #0066cc;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0066cc;
}

.category-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.category-card:hover {
    background: white;
    border-color: #0066cc;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
    transform: translateY(-5px);
}

.category-card>a {
    color: #333;
    font-weight: 600;
    font-size: 18px !important;
    padding: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-bottom: 2px solid #dee2e6;
    margin-bottom: 15px;
}

.category-card>a i.fas.fa-chevron-right {
    color: #0066cc;
    font-size: 14px;
}

.category-card:hover>a {
    color: #0066cc;
}

.subcategory-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subcategory-list li {
    margin: 8px 0;
}

.subcategory-list a {
    color: #666;
    font-size: 16px !important;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    transition: all 0.3s;
    text-decoration: none;
}

.subcategory-list a:hover {
    color: #0066cc;
    background: #e3f2fd;
    padding-left: 20px;
}

.subcategory-list a i {
    font-size: 6px;
    color: #0066cc;
}

/* Services Menu - 3 columns */
.services-layout .category-grid {
    grid-template-columns: repeat(3, 1fr);
}

.services-layout .category-card>a {
    font-size: 18px;
    justify-content: center;
    padding: 20px;
    border: none;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 0;
}

.services-layout .category-card:hover>a {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    color: white;
}

/* Blog Menu - Single column centered */
.blog-layout .category-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

.blog-layout .category-card>a {
    font-size: 18px;
    justify-content: center;
    padding: 20px;
    border: none;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 0;
}

.blog-layout .category-card:hover>a {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    color: white;
}

/* Navbar Icons */
.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-actions a {
    color: white;
    font-size: 20px;
    position: relative;
    padding: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.header-actions a:hover {
    transform: scale(1.15);
    color: #00a8ff;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cart-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.cart-widget:hover {
    background: rgba(255, 255, 255, 0.25);
}

.cart-widget span {
    color: white;
    font-size: 15px;
    font-weight: 600;
}

/* Contact Button */
.btn-contact {
    background: white !important;
    color: #0066cc !important;
    border-radius: 25px;
    font-weight: 600;
    padding: 12px 25px !important;
    margin-top: 8px;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #f8f9fa !important;
}

.btn-contact::after {
    display: none !important;
}


/* footer */

/* Footer Main */
/* Core Wrapper */
.ultra-modern-footer {
    background-color: #ffffff;
    /* White background for the outer part */
    padding: 80px 20px 40px;
    font-family: 'Inter', sans-serif;
    color: #0066cc;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

/* Top Section */
.footer-hero-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-main-logo {
    height: 60px;
    /* Adjust based on your logo shape */
    margin-bottom: 15px;
}

.status-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #0066cc;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

.brand-statement {
    max-width: 450px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    text-align: right;
}

/* Bento Grid */
.footer-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr 1fr;
    gap: 20px;
}

.bento-box {
    background-color: #0066cc;
    color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.bento-box:hover {
    transform: translateY(-10px);
}

/* Specific Box Adjustments */
.map-box {
    padding: 0;
    overflow: hidden;
    position: relative;
    border: 2px solid #0066cc;
    background: white;
}

/* .map-box iframe {
    filter: grayscale(1) contrast(1.2);
} */

.bento-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0.7;
}

/* Navigation Links */
.bento-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.c-item small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.6;
}

.c-item span,
.c-item a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
}

/* Social Stack */
.social-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.s-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.s-link:hover {
    background: #ffffff;
    color: #0066cc;
}

/* Bottom Bar */
.footer-sub-bar {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
}

.footer-sub-bar a {
    color: #0066cc;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-hero-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .brand-statement {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .footer-bento-grid {
        grid-template-columns: 1fr;
    }
}

/* swiper slider */
.swiper {
    width: 100%;
    height: 700px;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

/* ABOUT SECTION */
/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.welcome-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.welcome-content {
    animation: fadeInLeft 0.8s ease;
}

.welcome-tag {
    display: inline-block;
    color: #216cb0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.welcome-title {
    font-size: 48px;
    color: #1a1a2e;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 35px;
}

.welcome-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #216cb0 0%, #1a5690 100%);
    margin-bottom: 35px;
    border-radius: 2px;
}

.welcome-description {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 25px;
}

.read-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #216cb0 0%, #1a5690 100%);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(33, 108, 176, 0.3);
    margin-top: 20px;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(33, 108, 176, 0.4);
}

/* Right Visual */
.welcome-visual {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.video-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(33, 108, 176, 0.2);
    transition: all 0.4s ease;
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 90px rgba(33, 108, 176, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 108, 176, 0.3) 0%, rgba(26, 86, 144, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-container:hover .video-overlay {
    background: linear-gradient(135deg, rgba(33, 108, 176, 0.4) 0%, rgba(26, 86, 144, 0.4) 100%);
}

.play-button {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 3px solid white;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-ring 2s ease-out infinite;
}

.video-container:hover .play-button {
    transform: scale(1.15);
    background: #216cb0;
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 28px solid #216cb0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.video-container:hover .play-icon {
    border-left-color: white;
}

.youtube-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #FF0000;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    animation: slideInRight 0.8s ease 0.5s both;
}

.youtube-icon {
    font-size: 22px;
}

/* Decorative Elements */
.floating-card {
    position: absolute;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    bottom: 50px;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 80px;
    right: -30px;
    animation-delay: 1s;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.card-text {
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 700;
}

.card-subtext {
    font-size: 12px;
    color: #64748b;
}

/* Background Decoration */
.bg-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 108, 176, 0.05) 0%, transparent 70%);
}

.bg-decoration-1 {
    top: -100px;
    right: -100px;
}

.bg-decoration-2 {
    bottom: -150px;
    left: -150px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}


/* our products */
/* Main Container */
.why-choose-section {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-badge {
    display: inline-block;
    padding: 10px 28px;
    background: #ffffff;
    border: 2px solid #21409B;
    color: #21409B;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-heading1 {
    font-size: 56px;
    font-weight: 700;
    color: #21409B;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Two Column Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Content Column */
.content-column {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out backwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.7s;
}

.feature-bullet {
    width: 12px;
    height: 12px;
    background: #21409B;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    position: relative;
}

.feature-bullet::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #21409B;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #21409B;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
}

/* Image Column */
.image-column {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-image-section {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
    border: 1px solid #e5e5e5;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    z-index: 1;
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    background: #21409B;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.placeholder-icon svg {
    width: 50px;
    height: 50px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
}

.placeholder-text {
    font-size: 22px;
    font-weight: 600;
    color: #21409B;
    margin-bottom: 12px;
}

.placeholder-subtext {
    font-size: 15px;
    color: #666666;
}

.quality-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #21409B;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(33, 64, 155, 0.2);
    animation: slideInRight 0.8s ease-out 0.8s backwards;
    z-index: 2;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-icon {
    font-size: 18px;
}

.image-content {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
    animation: fadeInRight 1s ease-out;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.3);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 128, 255, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-content:hover::before {
    opacity: 1;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Floating badge */
.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0066cc, #0080ff);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 102, 204, 0.6);
    }
}

.partners-section {
    background: linear-gradient(135deg, #0a1f3d 0%, #0052a3 25%, #0066cc 50%, #0080ff 75%, #00a3ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Animated grid background */
.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.partners-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 128, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 102, 204, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.partners-heading {
    text-align: center;
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.partners-subheading {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 1px;
}

.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    z-index: 1;
}

/* Gradient overlays for fade effect */
.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(90deg, #0066cc 0%, transparent 100%);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(270deg, #0066cc 0%, transparent 100%);
}

.slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.slider-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    flex-shrink: 0;
    width: 240px;
    height: 130px;
    margin: 0 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 102, 204, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.logo-slide:hover::before {
    left: 100%;
}

.logo-slide:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 1);
}

.logo-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.4s ease, transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.logo-slide:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Stats section */
.stats-bar {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, #a8d8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* feature */

.features-section {
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(45, 74, 142, 0.08);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 74, 142, 0.15);
    border-color: var(--primary-blue);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(45, 74, 142, 0.2);
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(45, 74, 142, 0.3);
}

.feature-card:hover .icon-wrapper::after {
    opacity: 0.3;
    width: 120px;
    height: 120px;
}

.icon-wrapper i {
    font-size: 45px;
    color: white;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2b4d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: #5a6c8a;
    line-height: 1.7;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    /* font-size: 30px; */
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* hamburger */

/* footer */
.wb-footer {
    margin-top: auto;
    padding: 12px 16px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 18px;
}

.wb-footer a {
    color: #18222C;
    position: relative;
    text-decoration: none;
    font-size: 1.1rem;
}

.wb-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #C0392B;
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    padding: 2px 5px;
}

/* responsive */
@media (max-width: 992px) {
    .wb-hamburger-btn {
        display: block;
    }

    .menu-section {
        display: none;
    }
}

@media (min-width: 993px) {

    .wb-mobile-nav,
    .wb-hamburger-btn {
        display: none !important;
    }
}

/* swiper */
.hei8 {
    height: max-content !important;
}

.main-swiper {
    padding: 20px 50px 60px;
}

.first-swip {
    height: 640px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 80%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    /* height: 250px; */
}

.product-image-swiper {
    height: 100%;
}

.product-image-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.product-image-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

.product-details {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: 14px;
    color: #636e72;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 24px;
    font-weight: bold;
    color: #00b894;
}

.original-price {
    font-size: 16px;
    color: #b2bec3;
    text-decoration: line-through;
}

.action-buttons {
    /* display: flex;
    flex-wrap: wrap;
    gap: 10px; */
}

.swiper-slide button {
    width: 100%;
    margin-top: 5px !important;
}

.btn-cart {
    flex: 1;
    background: #0984e3;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cart:hover {
    background: #0770c7;
    color: white;
}

.btn-view {
    flex: 1;
    background: white;
    color: #0984e3;
    border: 2px solid #0984e3;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view:hover {
    background: #0984e3;
    color: white;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0984e3;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet-active {
    background: #0984e3;
}

/* banner with breadcrums */
.page-banner1 {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    overflow: hidden;
    background: url('../img/proban.jpg') center/cover;
}

.page-banner1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.088);
    z-index: 1;
}

.page-banner {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    overflow: hidden;
    background: url('../img/proban.png') center/cover;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.088);
    z-index: 1;
}

.content-wrapper {
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    background: rgb(26 54 93 / 58%);
    backdrop-filter: blur(5px);
    padding: 40px 100px 20px 100px;
    border-radius: 30px 0 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.content-wrapper h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
}


/* about 1 */
.tab-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.tab-card.active {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border-color: #0066cc;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.tab-icon {
    width: 60px;
    height: 60px;
    background: #e3f2fd;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.tab-card.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
}

.tab-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) saturate(100%) invert(30%) sepia(98%) saturate(2570%) hue-rotate(201deg) brightness(93%) contrast(101%);
}

.tab-card.active .tab-icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.content-row {
    margin-top: 40px;
}

.content-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.image-section {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.label-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.label-text {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    letter-spacing: 2px;
    margin: 0;
}

.badge-custom {
    background: #0066cc;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.heading-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-text {
    color: #0066cc;
}

.description-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.connect-btn {
    background: #0066cc;
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.connect-btn:hover {
    background: #0052a3;
    transform: translateX(5px);
}

.tab-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.tab-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* about 2 */
/* Animated Background Pattern */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 89, 178, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 89, 178, 0.08) 0%, transparent 50%);
    animation: bg-shift 20s ease-in-out infinite;
}

@keyframes bg-shift {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Top Banner */
.premium-banner {
    background: #0059B2;
    padding: 12px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.banner-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
}

/* Hero Title */
.hero-container {
    padding: 50px 0 0;
    position: relative;
}

.title-main {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    text-align: center;
    color: #0059B2;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Cards */
.features-grid {
    padding: 60px 0;
    position: relative;
}

.glass-card {
    background: #ffffff;
    border: 2px solid #e8f2fa;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 89, 178, 0.1);
    animation: card-float 3s ease-in-out infinite;
}

.glass-card:nth-child(1) {
    animation-delay: 0s;
}

.glass-card:nth-child(2) {
    animation-delay: 0.5s;
}

.glass-card:nth-child(3) {
    animation-delay: 1s;
}

@keyframes card-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 89, 178, 0.1), transparent);
    transition: left 0.6s ease;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-15px);
    border-color: #0059B2;
    box-shadow: 0 20px 40px rgba(0, 89, 178, 0.2);
}

.icon-sphere {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: #0059B2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 89, 178, 0.3);
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.glass-card:hover .icon-sphere {
    animation: icon-spin 0.6s ease-in-out;
}

@keyframes icon-spin {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0059B2;
    margin-bottom: 15px;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #666;
}

/* Premium Content Section */
.content-showcase {
    padding: 50px 0;
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 89, 178, 0.15);
    background: #ffffff;
}

.content-panel {
    background: #ffffff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.content-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 89, 178, 0.05) 0%, transparent 70%);
    animation: pulse-slow 8s ease-in-out infinite;
}

@keyframes pulse-slow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.section-title1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: #333;
    animation: fade-in-left 1s ease-out;
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight-text {
    color: #0059B2;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0059B2;
    animation: underline-expand 1s ease-out 0.5s both;
}

@keyframes underline-expand {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.content-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.action-btn {
    background: #0059B2;
    color: #ffffff;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 89, 178, 0.3);
    align-self: flex-start;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 89, 178, 0.4);
}

.action-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.action-btn:hover i {
    animation: arrow-move 0.6s ease-in-out;
}

@keyframes arrow-move {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }
}

.image-panel {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-in 20s ease-in-out infinite alternate;
}

@keyframes zoom-in {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 89, 178, 0.8) 0%, transparent 100%);
}

.overlay-text {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

    50% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(0, 89, 178, 0.1);
    animation: rotate-circle 20s linear infinite;
}

.decorative-circle:nth-child(1) {
    top: -150px;
    right: -150px;
}

.decorative-circle:nth-child(2) {
    bottom: -150px;
    left: -150px;
    animation-direction: reverse;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* about 3 */

.portfolio-section {
    padding: 80px 0;
}

.main-heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.main-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0059B2, #0072D8);
    border-radius: 2px;
}

.sub-heading {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
    font-weight: 400;
}

.product-card1 {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.product-card1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0059B2, #0072D8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card1:hover::before {
    transform: scaleX(1);
}

.product-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 89, 178, 0.15);
}

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e8f4f8;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    padding: 12px 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 35px;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #0059B2, #0072D8);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #0059B2;
    transform: translateX(5px);
}

.feature-item:hover::before {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 89, 178, 0.3);
}

.product-card:nth-child(1) .card-number {
    color: rgba(0, 89, 178, 0.1);
}

.product-card:nth-child(2) .card-number {
    color: rgba(0, 114, 216, 0.1);
}

.product-card:nth-child(3) .card-number {
    color: rgba(0, 89, 178, 0.08);
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* about 3 */
.spleca-excellence-section {
    background: #21409B;
    padding: 80px 0;
    color: white;
}

.spleca-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.spleca-paragraph-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    opacity: 0.95;
    color: white;
}

.spleca-partner-box {
    background: white;
    color: #333;
    border-radius: 10px;
    padding: 40px;
    margin-top: 50px;
}

.spleca-partner-title {
    color: #21409B;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.spleca-partner-description {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.abt-butn {
    background: #21409B;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: white;
}

.abt-butn:hover {
    background: #1a3380;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 64, 155, 0.4);
}

/* about form */
/* Form Section Styling */
.form-sec {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.form-sec::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.inquiry-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.inquiry-wrapper .row {
    border-radius: 20px;
    overflow: hidden;
}

/* Info Section (Left Side) */
.info-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-section h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: white;
}

.detail-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
    flex-shrink: 0;
}

.detail-item span {
    font-size: 15px;
    opacity: 0.95;
}

.info-section .mt-4 a {
    transition: all 0.3s ease;
    display: inline-block;
}

.info-section .mt-4 a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Form Section (Right Side) */
.form-section {
    padding: 60px 50px;
    background: white;
    border: #0039a6 1px solid;
    border-radius: 0 25px 25px 0;
}

.badge-text {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.heading-primary {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 35px;
}

.field-label {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    display: block;
}

.input-field {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.input-field:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-field:hover {
    border-color: #cbd5e0;
}

textarea.input-field {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    background: #003d7a !important;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* about 1 */
.about-hero {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f5f7fa 100%);
    overflow: hidden;
}

/* Geometric Background Elements */
.bg-decoration {
    position: absolute;
    pointer-events: none;
}

.bg-decoration-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(33, 64, 155, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.bg-decoration-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(33, 64, 155, 0.05) 0%, transparent 100%);
    bottom: -100px;
    left: -100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 15s infinite ease-in-out;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Content Section */
.content-block {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #21409B;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(33, 64, 155, 0.25);
}

.badge::before {
    content: '●';
    color: #4ade80;
    font-size: 16px;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.headline {
    font-size: 3.75rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.accent-word {
    color: #21409B;
    position: relative;
    display: inline-block;
}

/* .accent-word::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -4px;
    right: -4px;
    height: 20px;
    background: linear-gradient(90deg, #21409B20, #21409B40, #21409B20);
    border-radius: 4px;
    z-index: -1;
} */

.body-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 24px;
}

.body-text strong {
    color: #334155;
    font-weight: 600;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #21409B;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    margin-top: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(33, 64, 155, 0.25);
    border: 2px solid transparent;
}

.action-button::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.action-button:hover {
    background: #1a3380;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(33, 64, 155, 0.35);
}

.action-button:hover::after {
    transform: translateX(4px);
}

/* Image Section */
.image-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 540px;
}

.main-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.main-visual:hover {
    transform: scale(1.02) rotate(1deg);
}

.main-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Accent Border */
.main-visual::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #21409B, #4ade80);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.6;
}

/* Floating Stat Badge */
.metric-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 28px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid rgba(33, 64, 155, 0.1);
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #21409B 0%, #3b5fcf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Decorative Dots */
.dot-pattern {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, #21409B 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.15;
}

/* Trust Indicators */
.trust-bar {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: #21409B;
    line-height: 1;
}

.trust-text {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* application area */
.filter-sidebar {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e3e3e3;
}

.filter-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.filter-section {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    cursor: pointer;
}

.toggle-arrow {
    transition: transform 0.3s;
}

.toggle-arrow.rotated {
    transform: rotate(-90deg);
}

.filter-content {
    margin-top: 10px;
}

.filter-content.collapsed {
    display: none;
}

.filter-content label {
    display: block;
    margin-bottom: 6px;
}

.rating-filter {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer;
}

.rating-filter input {
    margin-right: 8px;
}

.rating-filter .stars {
    color: #f4c542;
    /* Gold stars */
    font-size: 16px;
    margin-right: 5px;
}

.rating-filter .count {
    color: #555;
    font-size: 14px;
}

.breadcrumb {
    background-color: transparent;
    padding: 1rem 0;
}

.product-card3 {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    height: 100%;
    background-color: #fff;
}

/* .product-placeholder {
    width: 100%;
    height: 250px;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
} */

.product-price {
    color: #2c5aa0;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 15px 0 10px 0;
}

.product-title1 {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
}

.results-count {
    color: #6c757d;
    font-size: 1rem;
}

.pagination {
    margin-top: 3rem;
}

.page-link {
    color: #6c757d;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border: 1px solid #dee2e6;
}

.page-item.active .page-link {
    background-color: #2c5aa0;
    border-color: #2c5aa0;
    color: white;
}

.page-item.disabled .page-link {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/* page details */
/* Product Card */
.product-card4 {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-6 {
    width: 50%;
    padding: 15px;
}

.image-gallery-section4 {
    padding: 30px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f9fa;
    margin-bottom: 20px;
}

.slider-container input[type="radio"] {
    display: none;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 400%;
}

.slide {
    width: 25%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
    transition: transform 0.1s ease;
    transform-origin: center center;
}

.discount-badge1 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    z-index: 5;
}

/* Fullscreen Zoom Modal */
.zoom-modal {
    display: none;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.nav-arrow:hover {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-arrow.prev {
    left: 20px;
}

.nav-arrow.next {
    right: 20px;
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slide-indicators label {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    display: block;
}

.slide-indicators label:hover {
    background: rgba(0, 0, 0, 0.5);
}

#slide1:checked~.slides {
    transform: translateX(0%);
}

#slide2:checked~.slides {
    transform: translateX(-25%);
}

#slide3:checked~.slides {
    transform: translateX(-50%);
}

#slide4:checked~.slides {
    transform: translateX(-75%);
}

#slide1:checked~.slide-indicators label[for="slide1"],
#slide2:checked~.slide-indicators label[for="slide2"],
#slide3:checked~.slide-indicators label[for="slide3"],
#slide4:checked~.slide-indicators label[for="slide4"] {
    width: 10px;
    background: #0066cc;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    aspect-ratio: 1;
    background: #f8f9fa;
    display: block;
}

.thumbnail:hover {
    border-color: #adb5bd;
    transform: translateY(-2px);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    display: block;
}

#slide1:checked~.thumbnail-grid label[for="slide1"],
#slide2:checked~.thumbnail-grid label[for="slide2"],
#slide3:checked~.thumbnail-grid label[for="slide3"],
#slide4:checked~.thumbnail-grid label[for="slide4"] {
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

.product-details-section {
    padding: 30px;
}

.product-title1 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 10px;
}

.product-subtitle {
    color: #636e72;
    margin-bottom: 20px;
    font-size: 15px;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #ffd700;
}

.review-count {
    color: #636e72;
    font-size: 14px;
}

.price-section4 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #dee2e6;
}

.current-price4 {
    font-size: 36px;
    font-weight: 800;
    color: #00b894;
}

.original-price4 {
    text-decoration: line-through;
    color: #636e72;
    font-size: 20px;
    margin-left: 15px;
}

.discount-text4 {
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-left: 15px;
    font-size: 14px;
}

.stock-badge {
    background: #d4edda;
    color: #155724;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.stock-badge i {
    color: #28a745;
}

.outstock-badge {
    background: #d4edda;
    color: #571519;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.outstock-badge i {
    color: #a72828;
}

.product-meta {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #dee2e6;
}

.meta-item {
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f5;
    font-size: 14px;
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    font-weight: 600;
    color: #2d3436;
    display: inline-block;
    /*min-width: 100px;*/
}

.meta-value {
    color: #636e72;
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-buy {
    padding: 14px 50px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-buy:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-cart1 {
    padding: 14px 30px;
    border: 2px solid #0066cc;
    color: #0066cc;
    background: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cart1:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
}

.action-links {
    display: flex;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid #dee2e6;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #636e72;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.action-link:hover {
    color: #0066cc;
}

.action-link i {
    font-size: 18px;
}

.features-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
}

.features-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #2d3436;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
    font-size: 18px;
}


/* accordien */
.wbp-container {
    max-width: 1200px;
}

.wbp-tab-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* TABS */
.wbp-nav-tabs {
    border-bottom: none;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    padding: 10px 20px 0;
    display: flex;
    gap: 10px;
}

.wbp-nav-tabs .wbp-nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    background: transparent;
    border-radius: 12px 12px 0 0;
    transition: 0.3s;
    letter-spacing: .5px;
}

.wbp-nav-tabs .wbp-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.wbp-nav-tabs .wbp-nav-link.active {
    color: #0066cc;
    background: #fff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.wbp-tab-content {
    background: #fff;
    padding: 40px;
}

/* HEADINGS */
.wbp-heading {
    color: #0066cc;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ACCORDION */
.wbp-accordion .accordion-button {
    background: #f4f7fb;
    font-weight: 600;
    color: #0066cc;
}

.wbp-accordion .accordion-button:not(.collapsed) {
    background: #e2ecf9;
    color: #004a9b;
}

.wbp-accordion .accordion-body {
    color: #555;
    line-height: 1.7;
}

.wbp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wbp-feature-list li {
    background: #f8f9fc;
    padding: 12px 16px;
    margin-bottom: 10px;
    border-left: 4px solid #00c292;
    border-radius: 6px;
}

/* pdf */
.pdf-box {
    border: 1px solid #ddd;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f9f9f9;
    transition: 0.3s ease;
}

.pdf-box:hover {
    background: #f1f1f1;
    border-color: #C0392B;
}

.pdf-box-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #18222C;
}

.pdf-box-title {
    font-size: 16px;
    font-weight: 500;
}

.pdf-box-size {
    color: #6c757d;
    font-size: 14px;
}

/* Brochures Grid Container */
.brouchers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

/* Brochure Box Styling */
.brouchers-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.brouchers-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #0066cc;
}

.brouchers-box-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.brouchers-box-title {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    word-wrap: break-word;
    line-height: 1.5;
    margin-bottom: 10px;
    flex-grow: 1;
}

.brouchers-box-size {
    font-size: 13px;
    color: #999;
    font-weight: 300;
    align-self: flex-start;
}

/* Videos Grid Container */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

/* Video Box Styling */
.videos-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.videos-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #0066cc;
}

.videos-box-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.videos-box-title {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
    flex-grow: 1;
}

.videos-box-size {
    font-size: 13px;
    color: #999;
    font-weight: 300;
    align-self: flex-start;
}

.review-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.no-reviews {
    color: #6c757d;
    margin-bottom: 20px;
}

.review-title {
    color: #004c99;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.privacy-note {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating input[type="radio"]:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: #ff9800;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.required {
    color: #dc3545;
}

.form-control,
.form-control:focus {
    border-color: #ced4da;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 76, 153, 0.25);
    border-color: #004c99;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-check-input:checked {
    background-color: #004c99;
    border-color: #004c99;
}

.submit-btn {
    background-color: #004c99;
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #003d7a;
}


/* contact */
.header {
    text-align: center;
    padding: 60px 20px 40px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
    animation: slideUp 3s ease-in-out infinite;
}

@keyframes slideUp {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.icon-circle i {
    font-size: 50px;
    color: #ffffff;
}

.header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0;
    letter-spacing: -1px;
}

/* .container {
    max-width: 1400px;
    margin: -60px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 2;
} */

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-box {
    background: #003d7a;
    border-radius: 25px;
    padding: 40px 30px;
    border: 2px solid #003d7a;
    /* Gold */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.icon-shape {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 3px solid #0039a6;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* .icon-shape::before {
    content: '';
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 30px solid #0039a6;
} */

.icon-shape i {
    font-size: 32px;
    color: #0039a6;
}

.text h3 {
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
    margin: 0 0 8px;
}

.text p {
    color: white;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.btn-primary {
    background: #0039a6;
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #000000;
}

.section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.form {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
}

.form-top {
    margin-bottom: 35px;
}

.tag {
    display: inline-block;
    background: #1e3a8a;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.form-top h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.form-top p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.input {
    width: 100%;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #0f172a;
}

.input:focus {
    border-color: #1e3a8a;
    outline: none;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.input::placeholder {
    color: #94a3b8;
}

textarea.input {
    min-height: 140px;
    resize: vertical;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    background: #1e3a8a;
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-submit:hover {
    background: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

.btn-submit i {
    font-size: 1.1rem;
}

.map {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    grid-column: 1 / -1;
    width: 100%;
    height: 500px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-header {
    color: #0066cc;
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 600;
}

.section-header {
    color: #0066cc;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 15px;
}

label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.required {
    color: #e74c3c;
}

.form-control,
.form-select {
    font-size: 13px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
}

.password-hint {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
}

.captcha-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.captcha-text {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 8px;
    text-decoration: line-through;
    color: #333;
    font-style: italic;
}

.captcha-refresh {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.captcha-instruction {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.privacy-text {
    font-size: 11px;
    color: #666;
    margin-top: 20px;
}

.privacy-text a {
    color: #0066cc;
    text-decoration: none;
}

.privacy-text a:hover {
    text-decoration: underline;
}

.btn-continue {
    background-color: #0066cc;
    color: white;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
}

.btn-continue:hover {
    background-color: #0052a3;
}

.shipping-note {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    margin-bottom: 20px;
}

.form-container {
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-header {
    color: #0066cc;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.form-subheader {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.form-control {
    font-size: 13px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
}

.forgot-password {
    font-size: 13px;
    color: #0066cc;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 20px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login {
    background-color: #0066cc;
    color: white;
    width: 100%;

    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: grab;
}

.btn-login:hover {
    background-color: #0052a3;
}

.divider {
    text-align: center;
    margin: 25px 0;
    color: #666;
    font-size: 14px;
}

.btn-signup {
    background-color: #6c757d;
    color: white;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-signup:hover {
    background-color: #5a6268;
}


.form-header {
    color: #0066cc;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.form-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
}

label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    font-size: 13px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

.form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
    outline: none;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.btn-back {
    background-color: white;
    color: #333;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.btn-back:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

.btn-request {
    background-color: #0066cc;
    color: white;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-request:hover {
    background-color: #0052a3;
}


.form-container1 {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-header {
    color: #0066cc;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.email-display {
    color: #0066cc;
    font-weight: 600;
}

.otp-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s;
}

.otp-input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
}

.otp-input::-webkit-inner-spin-button,
.otp-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.resend-section {
    margin: 20px 0;
    font-size: 13px;
    color: #666;
}

.resend-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.resend-link:hover {
    text-decoration: underline;
}

.resend-link.disabled {
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
}

.timer {
    color: #666;
    font-weight: 600;
}

.btn-verify {
    background-color: #0066cc;
    color: white;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
}

.btn-verify:hover {
    background-color: #0052a3;
}

.btn-verify:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-back {
    background-color: white;
    color: #333;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
}

.btn-back:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

.form-header {
    color: #0066cc;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.form-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
}

label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #e74c3c;
}

.password-wrapper {
    position: relative;
}

.form-control {
    font-size: 13px;
    padding: 10px 40px 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

.form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
    outline: none;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 16px;
}

.toggle-password:hover {
    color: #0066cc;
}

.password-hint {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.btn-back {
    background-color: white;
    color: #333;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.btn-back:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

.btn-submit {
    background-color: #0066cc;
    color: white;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #0052a3;
}



/* box for home */

/* Container and Section Styling */
.chem-hero-section {
    padding: 60px 0;
    background: #fff;
    background-size: 200% 200%;
    animation: chemGradientShift 15s ease infinite;
    overflow: hidden;
}

.chem-visual-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: #0039a6 solid 2px;

}

.chem-visual-wrapper .img-fluid {
    border-radius: 16px;
    transition: transform 0.6s ease;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0, 74, 155, 0.3);

}

.chem-visual-wrapper:hover .img-fluid {
    transform: scale(1.05);
}

/* Box Container */
.chem-info-container {
    height: 543px;
    border-radius: 16px;
    padding: 20px;
    /* background: rgba(255, 255, 255, 0.5); */
    /* backdrop-filter: blur(10px); */

}

.chem-grid-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

/* Individual Box Styling */
.chem-feature-card {
    background: linear-gradient(135deg, #004a9b 0%, #0066cc 100%);
    margin-left: 5px;
    margin-right: 5px;
    padding: 30px 20px;
    border-radius: 12px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 74, 155, 0.3);
    animation: chemFadeInUp 0.6s ease-out backwards;
}

/* Staggered animation delays */
.chem-feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.chem-feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.chem-feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.chem-feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Hover Effects */
.chem-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.chem-feature-card:hover::before {
    left: 100%;
}

.chem-feature-card:hover {
    background: linear-gradient(135deg, #003d7a 0%, #0052a3 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 76, 153, 0.4);
}

/* Text Styling */
.chem-card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chem-feature-card:hover .chem-card-title {
    transform: translateX(5px);
}

.chem-card-subtitle {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.chem-feature-card:hover .chem-card-subtitle {
    color: rgba(255, 255, 255, 1);
}

/* Link Styling */
.chem-detail-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.chem-detail-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.chem-feature-card:hover .chem-detail-link::after {
    transform: translateX(5px);
}

.chem-detail-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.chem-feature-card:hover .chem-detail-link::before {
    width: 80%;
}

/* Animations */
@keyframes chemFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes chemPulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 74, 155, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(0, 74, 155, 0.5);
    }
}

@keyframes chemGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* overview */
.sidebar {
    background-color: #fff;
    min-height: 100vh;
    padding: 2rem 1rem;
    border-right: 1px solid #dee2e6;
}

.sidebar .user-greeting {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.sidebar .nav-link {
    color: #000;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.sidebar .nav-link:hover {
    background-color: #f8f9fa;
}

.sidebar .nav-link.active {
    color: #0066cc;
    font-weight: 600;
}

.sidebar .logout-link {
    color: #0066cc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    cursor: pointer;
    text-decoration: none;
}

.main-content {
    padding: 2rem 3rem;
}

.section-title {
    color: #0066cc;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subsection-title {
    color: #0066cc;
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.info-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
    padding: 0.5rem 2rem;
}

.btn-primary:hover {
    background-color: #0052a3;
    border-color: #0052a3;
}

.paypal-icon {
    background-color: #0066cc;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-weight: bold;
}

.payment-option {
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
}

.alert-warning {
    background-color: #fff3cd;
    border-left: 4px solid #ff9800;
}

.text-link {
    color: #0066cc;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}


/* product finder */

.main-container {
    padding: 4rem 2rem;
    /* height: 850px; */
}

.intro-text {
    text-align: center;
    margin: 0 auto;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
} */

.product-finder-wrapper {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto; */
}

.product-card5 {
    border-radius: 20px;
    /* width: 48% !important; */
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    /* position: relative; */
}

.product-card5:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
}

.product-card5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
    z-index: 10;
}

/* Product Finder Wrapper */
.pf-wrapper {
    padding: 2rem 0;
    max-width: 100%;
    overflow: hidden;
    margin: 0 !important;
}

/* Product Card Styling */
.pf-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.pf-card:hover {
    transform: translateY(-5px);
}

/* Card Image Section */
.pf-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    border: 2px solid #1F3E76;
}

.pf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Search Overlay */
.pf-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 62, 118, 0.1);
}

.pf-icon {
    width: 100%;
    height: 100%;
}

.pf-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Content Section */
.pf-content {
    padding: 1.5rem;
    background: transparent;
    border-radius: 0 0 8px 8px;
    border: 2px solid #1F3E76;
    border-top: none;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Card Heading */
.pf-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F3E76;
    margin-bottom: 1rem;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Card Text */
.pf-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1F3E76;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pf-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pf-card {
        margin-bottom: 1.5rem;
        padding-left: 0;
        padding-right: 0;
    }

    .pf-image {
        height: 200px;
    }

    .pf-heading {
        font-size: 1.25rem;
    }

    .pf-text {
        font-size: 0.9rem;
    }

    .pf-content {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .pf-image {
        height: 180px;
    }

    .pf-content {
        padding: 1rem;
    }

    .pf-heading {
        font-size: 1.1rem;
    }

    .pf-text {
        font-size: 0.85rem;
    }
}


.card-image-section {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #e8f0ff 0%, #f0f7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.card-image-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -50%;
    right: -10%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }
}

.search-overlay {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 50px;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.search-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.search-text {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.card-content-section {
    padding: 2.5rem;
    background: white;
    height: 270px;
}

.card-heading {
    font-size: 1.65rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    letter-spacing: -0.3px;
}

.card-text {
    color: #666;
    line-height: 1.85;
    font-size: 0.95rem;
    font-weight: 500;
}

/* product solution */

.product-finder-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.product-finder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-finder-accordion .accordion-button {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
}

.product-finder-accordion .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #000;
    box-shadow: none;
}

.product-finder-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.product-finder-accordion .accordion-button::after {
    background-size: 1.5rem;
}

.product-finder-accordion .accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.product-finder-accordion .accordion-item {
    border: 1px solid #dee2e6;
    margin-bottom: 0;
}

.btn-product-connect {
    background-color: #1e4d9e;
    color: white;
    padding: 12px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    margin-top: 30px;
    text-decoration: none;
}

.btn-product-connect:hover {
    background-color: #163a7a;
    color: white;
}

.product-finder-title {
    font-weight: 700;
    margin-bottom: 30px;
}

.premium-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(30, 77, 158, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #1E4D9E;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.premium-card:hover::before {
    transform: scaleX(1);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(30, 77, 158, 0.15);
}

.premium-card__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.premium-card:hover .premium-card__image {
    transform: scale(1.05);
}

.premium-card__image-wrapper {
    overflow: hidden;
    position: relative;
}

.premium-card__image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 77, 158, 0.03) 100%);
    pointer-events: none;
}

.premium-card__body {
    padding: 32px 28px;
    background: #fff;
}

.premium-card__title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.premium-btn {
    background: #1E4D9E;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.premium-btn:hover::before {
    left: 100%;
}

.premium-btn:hover {
    background: #163a75;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 77, 158, 0.25);
    color: #fff;
}

.premium-btn:active {
    transform: translateY(0);
}

/* blog-01 */
.blog-mini-banner {
    background: linear-gradient(135deg, #1e5ab8 0%, #2d6bc7 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
    margin: 0;
}

.blog-mini-banner h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.blog-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
}

.blog-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.blog-content-main {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-post-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 35px;
    line-height: 1.4;
}

.blog-img-container {
    margin-bottom: 35px;
}

.blog-post-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.blog-post-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 25px;
    text-align: justify;
}

.blog-sidebar-widget {
    width: 320px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    position: sticky;
    top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-sidebar-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1e5ab8;
}

.blog-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: color 0.3s ease;
}

.blog-category-item:hover {
    color: #1e5ab8;
}

.blog-category-name {
    font-size: 1rem;
    color: #495057;
}

.blog-category-badge {
    background-color: #6c757d;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* application */
.weicon-hero-banner {
    background: linear-gradient(135deg, #2c4c9e 0%, #1a2f5f 100%);
    padding: 60px 0;
    color: white;
}

.weicon-hero-banner p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

.weicon-showcase-wrapper {
    padding: 80px 0;
    background: #f8f9fa;
}

.weicon-project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.weicon-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.weicon-visual-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.weicon-visual-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.weicon-project-card:hover .weicon-visual-container img {
    transform: scale(1.08);
}

.weicon-country-indicator {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 35px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.weicon-direction-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2c4c9e;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.weicon-project-card:hover .weicon-direction-icon {
    background: #3b82f6;
}

.weicon-direction-icon::after {
    /* content: "↘"; */
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.weicon-info-block {
    padding: 30px 25px;
}

.weicon-info-block h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}


/* application swiper */

.solution-section {
    background: white;
    margin: 40px 0;
    padding: 40px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.solution-section:nth-child(even) {
    background: #fafafa;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #1B375E;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.process-list li {
    padding: 8px 0;
    color: #555;
    line-height: 1.6;
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 30px 0 20px 0;
    color: #1B375E;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    padding: 5px 0;
    color: #555;
    line-height: 1.6;
}

.advantage-list li:before {
    content: "✓ ";
    color: #1B375E;
    font-weight: bold;
    margin-right: 8px;
}

.mySwiper {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #ddd; */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(27, 55, 94, 0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: #1B375E;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #1B375E;
    opacity: 1;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
}


/* newsletter */
.mining_conf_wrapper_2025 {
    padding: 60px 0;
    background: #ffffff;
}

.mining_hero_banner_img_2025 {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(54, 83, 151, 0.1);
}

.mining_section_heading_2025 {
    text-align: center;
    margin-bottom: 40px;
}

.mining_section_heading_2025 h2 {
    color: #365397;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0;
}

.mining_text_block_2025 {
    background: #ffffff;
    border-left: 4px solid #365397;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mining_text_block_2025 p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.mining_highlight_span_2025 {
    color: #365397;
    font-weight: 600;
}

.mining_visit_box_2025 {
    background: #365397;
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
}

.mining_visit_box_2025 h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 30px;
}

.mining_feature_ul_2025 {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.mining_feature_ul_2025 li {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.mining_feature_ul_2025 li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
}

.mining_info_container_2025 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.mining_info_item_2025 {
    background: #ffffff;
    border: 2px solid #365397;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
}

.mining_info_item_2025 i {
    font-size: 2.5rem;
    color: #365397;
    margin-bottom: 15px;
}

.mining_info_item_2025 h4 {
    color: #365397;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mining_info_item_2025 p {
    color: #333333;
    font-size: 1rem;
    margin: 0;
}

.mining_cta_box_2025 {
    background: #ffffff;
    border: 3px solid #365397;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin-top: 50px;
}

.mining_cta_box_2025 h3 {
    color: #365397;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
}

.mining_divider_line_2025 {
    height: 2px;
    background: #365397;
    margin: 40px auto;
    max-width: 200px;
}

/* Cart Widget */
.cart-widget {
    position: fixed;
    top: 0px;
    right: 0px;
    /* background: #0059B1; */
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 89, 177, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.cart-widget:hover {
    background: #004a94;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 89, 177, 0.4);
}

.cart-widget i {
    font-size: 20px;
}

.cart-widget span {
    font-weight: 600;
    font-size: 16px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Cart Panel Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

/* Cart Header */
.cart-header {
    padding: 25px;
    background: #0059B1;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cart Items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item-image {
    width: 80px;
    height: 80px;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-image i {
    font-size: 35px;
    color: white;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.item-price {
    color: #e74c3c;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #0059B1;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #004a94;
}

.qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    transition: all 0.2s ease;
}

.remove-item:hover {
    transform: scale(1.2);
}

.empty-cart {
    text-align: center;
    padding: 20px 20px;
    color: #95a5a6;
}

.empty-cart i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* Cart Footer */
.cart-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.total-amount {
    color: #e74c3c;
    font-size: 24px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.checkout-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}


/* cart pro */

.wb-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wb-cart-img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
}

.wb-cart-info {
    flex: 1;
    margin-left: 15px;
}

.wb-cart-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.wb-qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.wb-qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    background: white;
    color: #333;
    border-radius: 6px;
    font-size: 20px;
    line-height: 0;
    cursor: pointer;
}

.wb-qty-btn:hover {
    background: #f3f3f3;
}

.wb-qty-value {
    font-size: 16px;
    font-weight: 600;
    width: 25px;
    text-align: center;
}

.wb-cart-price {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.wb-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: #f8d7da;
    border: none;
    color: #b30000;
    font-weight: 700;
    border-radius: 50%;
    cursor: pointer;
}

.wb-remove-btn:hover {
    background: #f5b5b5;
}


/* wishlist */

.wl-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.wl-results-count {
    color: #6c757d;
    font-size: 16px;
}

.wl-sort-dropdown {
    border: 1px solid #dee2e6;
    padding: 8px 35px 8px 15px;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    font-size: 14px;
}

.wl-item-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wl-item-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wl-discount-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff4757;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.wl-item-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 20px;
}

.wl-item-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    min-height: 50px;
}

.wl-item-desc {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 40px;
}

.wl-pricing-wrapper {
    margin-top: auto;
    margin-bottom: 20px;
}

.wl-price-sale {
    color: #00b894;
    font-size: 28px;
    font-weight: bold;
}

.wl-price-regular {
    color: #b2bec3;
    font-size: 18px;
    text-decoration: line-through;
    margin-left: 10px;
}

.wl-action-buttons {
    display: block;
    gap: 10px;
}

.wl-action-buttons button {
    width: 100%;
    margin: 5px 0;
}

.wl-btn-cart {
    flex: 1;
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.wl-btn-cart:hover {
    background-color: #0b5ed7;
}

.wl-btn-details {
    flex: 1;
    background-color: white;
    color: #0d6efd;
    border: 2px solid #0d6efd;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wl-btn-details:hover {
    background-color: #0d6efd;
    color: white;
}

.wl-heart-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wl-heart-icon:hover {
    transform: scale(1.1);
}

.wl-heart-icon i {
    color: #ff4757;
    font-size: 18px;
}

/* Custom Pagination */
.spl-pagination .page-link {
    color: #000;
    background: #FFFFFF;
    border: 1px solid #ddd;
    margin: 0 4px;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s ease;
}

.spl-pagination .page-item.active .page-link {
    background: #0066cc;
    color: #fff;
    border-color: #1e3a8a;
    font-weight: 600;
    transform: translateY(-2px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.spl-pagination .page-link:hover {
    background: #0066cc;
    /* Gold */
    color: #fff;
    border-color: #1e3a8a;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
}

.spl-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f0f0f0;
    color: #888;
}

.price-input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.price-input-group label {
    font-size: 14px;
    color: #444;
    margin-bottom: 4px;
}

.price-input-group input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.price-filter-btn {
    width: 100%;
    padding: 8px;
    border: none;
    background: #18222C;
    /* your theme dark blue-gray */
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5px;
}

.price-filter-btn:hover {
    background: #F4C542;
    /* gold hover */
    color: #000;
}

.tiny-btn {
    padding: 2px 6px;
    font-size: 11px;
    line-height: 1;
    border-radius: 3px;
}

.btn-xs {
    padding: 2px 6px;
    font-size: 15px;
    line-height: 1;
}


/* cart page */
.page-title-section {
    margin-bottom: 2.5rem;
}

.page-main-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.page-subtitle-text {
    font-size: 1rem;
    color: #6B7280;
}

.product-card-wrapper {
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.product-listing-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.product-listing-item:first-child {
    padding-top: 0;
}

.product-listing-item:last-child {
    border-bottom: none;
}

.product-img-container {
    position: relative;
    width: 180px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #F9FAFB;
}

.product-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-label-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #EF4444;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}

.product-info-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-header-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
}

.product-name-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
}

.delete-item-btn {
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.delete-item-btn:hover {
    color: #EF4444;
}

.product-desc-text {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.qty-selector-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.qty-change-btn {
    background: none;
    border: none;
    color: #1F2937;
    cursor: pointer;
    font-size: 1.125rem;
    padding: 0 0.5rem;
    transition: color 0.3s ease;
}

.qty-change-btn:hover {
    color: #2B7DE9;
}

.qty-display-number {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.pricing-info-section {
    text-align: right;
}

.sale-price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17B890;
    display: block;
}

.regular-price-amount {
    font-size: 0.875rem;
    color: #6B7280;
    text-decoration: line-through;
    display: block;
    margin-top: 0.25rem;
}

.order-summary-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.summary-heading-text {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.summary-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #1F2937;
}

.summary-field-label {
    color: #6B7280;
}

.summary-field-value {
    font-weight: 600;
}

.discount-amount-row .summary-field-value {
    color: #EF4444;
}

.summary-divider-line {
    border: none;
    border-top: 2px solid #E5E7EB;
    margin: 1.25rem 0;
}

.total-amount-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.total-text-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
}

.total-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #17B890;
}

.checkout-primary-btn {
    width: 100%;
    padding: 1rem;
    background: #2B7DE9;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.checkout-primary-btn:hover {
    background: #1E5FC7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 125, 233, 0.3);
}

.continue-shopping-btn {
    width: 100%;
    padding: 1rem;
    background: white;
    color: #2B7DE9;
    border: 2px solid #2B7DE9;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    background: #2B7DE9;
    color: white;
}

.promo-code-section {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #E5E7EB;
}

.promo-input-field {
    flex-grow: 1;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.875rem;
}

.promo-input-field:focus {
    outline: none;
    border-color: #2B7DE9;
}

.promo-apply-btn {
    padding: 0.75rem 1.5rem;
    background: #17B890;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-apply-btn:hover {
    background: #129875;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(23, 184, 144, 0.3);
}

.empty-basket-state {
    text-align: center;
    padding: 3.75rem 1.25rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.empty-basket-state i {
    font-size: 5rem;
    color: #6B7280;
    margin-bottom: 1.25rem;
}

.empty-basket-state h3 {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.empty-basket-state p {
    color: #6B7280;
    margin-bottom: 1.875rem;
}

@media (max-width: 768px) {
    .product-listing-item {
        flex-direction: column;
    }

    .product-img-container {
        width: 100%;
        height: 200px;
    }

    .product-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .pricing-info-section {
        text-align: left;
    }
}


/* check out */
.checkout-header-section {
    margin-bottom: 2.5rem;
}

.checkout-main-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.checkout-sub-heading {
    font-size: 1rem;
    color: #6B7280;
}

.section-card-wrapper {
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 1.875rem;
    margin-bottom: 1.5rem;
}

.section-title-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title-icon {
    width: 40px;
    height: 40px;
    background: #E0F2FE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2B7DE9;
}

.address-selector-card {
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    position: relative;
}

.address-selector-card:hover {
    border-color: #2B7DE9;
    box-shadow: 0 4px 12px rgba(43, 125, 233, 0.1);
}

.address-selector-card.selected-address {
    border-color: #2B7DE9;
    background: #F0F7FF;
}

.address-radio-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.address-type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #17B890;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-name-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.address-detail-text {
    color: #6B7280;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.address-actions-row {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.address-edit-link {
    color: #2B7DE9;
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-edit-link:hover {
    color: #1E5FC7;
}

.add-new-address-btn {
    width: 100%;
    padding: 1rem;
    background: white;
    color: #2B7DE9;
    border: 2px dashed #2B7DE9;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-new-address-btn:hover {
    background: #F0F7FF;
}

.order-item-row {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.order-item-row:last-child {
    border-bottom: none;
}

.order-item-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: #F9FAFB;
}

.order-item-details {
    flex-grow: 1;
}

.order-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.order-item-quantity {
    font-size: 0.875rem;
    color: #6B7280;
}

.order-item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #17B890;
    text-align: right;
}

.order-item-edit-btn {
    background: none;
    border: none;
    color: #2B7DE9;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.order-item-edit-btn:hover {
    color: #1E5FC7;
    transform: scale(1.1);
}

.order-item-remove-btn {
    background: none;
    border: none;
    color: #EF4444;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.order-item-remove-btn:hover {
    color: #DC2626;
    transform: scale(1.1);
}

.order-item-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.summary-sticky-card {
    position: sticky;
    top: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 1.875rem;
}

.summary-title-heading {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1F2937;
}

.summary-line-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #1F2937;
}

.summary-line-label {
    color: #6B7280;
}

.summary-line-value {
    font-weight: 600;
}

.discount-line-item .summary-line-value {
    color: #EF4444;
}

.summary-separator-line {
    border: none;
    border-top: 2px solid #E5E7EB;
    margin: 1.25rem 0;
}

.total-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.total-summary-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
}

.total-summary-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #17B890;
}

.proceed-payment-btn {
    width: 100%;
    padding: 1rem;
    background: #2B7DE9;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.proceed-payment-btn:hover {
    background: #1E5FC7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 125, 233, 0.3);
}

.proceed-payment-btn:disabled {
    background: #9CA3AF;
    cursor: not-allowed;
    transform: none;
}

.back-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background: white;
    color: #2B7DE9;
    border: 2px solid #2B7DE9;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
}

.back-to-cart-btn:hover {
    background: #2B7DE9;
    color: white;
}

.discount-badge-mini {
    background: #EF4444;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.secure-checkout-notice {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 8px;
    padding: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #166534;
    font-size: 0.875rem;
}

.secure-checkout-notice i {
    color: #16A34A;
    font-size: 1.25rem;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6B7280;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: #1F2937;
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2B7DE9;
}

.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9375rem;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #2B7DE9;
}

.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: #2B7DE9;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.modal-save-btn {
    padding: 0.75rem 2rem;
    background: #2B7DE9;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-save-btn:hover {
    background: #1E5FC7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 125, 233, 0.3);
}

.modal-cancel-btn {
    padding: 0.75rem 2rem;
    background: white;
    color: #6B7280;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-cancel-btn:hover {
    background: #F9FAFB;
    border-color: #6B7280;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-container {
        max-height: 95vh;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .order-item-row {
        flex-direction: column;
    }

    .order-item-thumbnail {
        width: 100%;
        height: 120px;
    }

    .order-item-actions {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .order-item-price {
        text-align: left;
    }
}

/* thnk you */
.thank-you-container {
    max-width: 600px;
    width: 100%;
    margin: 3rem auto;
}

.success-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    padding: 3rem 3rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #17B890 0%, #14A37F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.6s ease, pulse 2s ease 1.5s infinite;
}

@keyframes scaleIn {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon i {
    color: white;
    font-size: 4rem;
    animation: checkmark 0.8s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.success-message {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.success-message:first-of-type {
    animation: fadeInUp 0.6s ease 0.7s both;
}

.success-message:last-of-type {
    animation: fadeInUp 0.6s ease 0.9s both;
}

.action-buttons1 {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    animation: fadeInUp 0.6s ease 1.1s both;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.primary-btn {
    padding: 1rem 2rem;
    background: #2B7DE9;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.primary-btn:hover {
    background: #1E5FC7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 125, 233, 0.3);
}

.secondary-btn {
    padding: 1rem 2rem;
    background: white;
    color: #2B7DE9;
    border: 2px solid #2B7DE9;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.secondary-btn:hover {
    background: #2B7DE9;
    color: white;
}

@media (max-width: 768px) {
    .success-card {
        padding: 3rem 2rem;
    }

    .success-title {
        font-size: 2.25rem;
    }

    .success-message {
        font-size: 1rem;
    }

    .action-buttons1 {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }
}

.banban {
    height: 525px;
}

.prod-hei {
    height: 150px;
}

.bg-gray {
    background: #f3f3f3;
}

/* blog list */
/* --- Unique Header for the List --- */
.industrial-app-list-heading {
    color: #2b488d;
    border-bottom: 3px solid #2b488d;
    display: inline-block;
    margin-bottom: 40px;
    padding-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Blog Card Styling --- */
.blog-card {
    border: none;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(43, 72, 141, 0.15);
}

.card-img-top {
    border-radius: 0;
    height: 200px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: 0.5s ease;
}

.blog-card:hover .card-img-top {
    filter: grayscale(0%);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-tag {
    color: #2b488d;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.blog-title {
    color: #222222;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    text-decoration: none;
    font-size: 1.25rem;
    display: block;
}

.blog-title:hover {
    color: #2b488d;
}

.card-description {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    background-color: #2b488d;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-block;
    margin-top: auto;
    transition: 0.3s;
    text-align: center;
    border: none;
}

.read-more-btn:hover {
    background-color: #1e3364;
    color: #ffffff;
    letter-spacing: 1px;
}

.main-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* blog details */
/* Typography & Layout */
.industrial-detail-container {
    padding-top: 60px;
    padding-bottom: 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Back Button */
.industrial-back-link {
    color: #2b488d;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.industrial-back-link:hover {
    color: #1e3364;
    transform: translateX(-5px);
}

/* Article Header */
.industrial-article-category {
    color: #2b488d;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.industrial-article-title {
    color: #222;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* Feature Image */
.industrial-feature-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sidebar Info */
.industrial-meta-box {
    background-color: #f4f7f9;
    padding: 30px;
    border-left: 4px solid #2b488d;
    margin-bottom: 30px;
}

.industrial-meta-label {
    display: block;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
}

.industrial-meta-value {
    display: block;
    font-weight: 600;
    color: #2b488d;
    margin-bottom: 20px;
}

/* Content Body */
.industrial-content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.industrial-content-body h2,
.industrial-content-body h3 {
    color: #2b488d;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Product Navigation Styles */
.industrial-product-nav-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.industrial-product-nav-item:hover {
    background-color: #fcfdfe;
}

.industrial-product-nav-item:last-child {
    border-bottom: none;
}

.industrial-product-img-link {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    background: #eee;
}

.industrial-product-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industrial-product-nav-item:hover img {
    transform: scale(1.05);
}

.industrial-product-name-link {
    color: #2b488d;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.industrial-product-name-link:hover {
    text-decoration: underline;
}

.industrial-product-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.industrial-quote-block {
    border-left: 5px solid #2b488d;
    padding: 20px 40px;
    margin: 40px 0;
    background: #f8f9fa;
    font-style: italic;
    font-size: 1.25rem;
    color: #2b488d;
}

/* Benefit List */
.industrial-benefit-list {
    list-style: none;
    padding-left: 0;
}

.industrial-benefit-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.industrial-benefit-list li::before {
    content: "\f633";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #2b488d;
    font-weight: bold;
}

/* Contact/CTA Card */
.industrial-cta-card {
    background-color: #2b488d;
    color: white;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
}

.btn-industrial-outline {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-industrial-outline:hover {
    background: white;
    color: #2b488d;
}