:root {
    --navy: #0b2240;
    --primary: #0b2240;
    --secondary: #0f2b43;
    --accent: #d64242;
    --accent-soft: #f3d6d6;
    --dark: #061322;
    --light-gray: #f7f9fb;
    --card-bg: #0f2b43;
    --text-dark: #102030;
    --text-muted: #9aa6b2;
    --metal: #d1d6db;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Top Banner */
.top-banner {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-banner strong {
    font-weight: 700;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 6px 18px rgba(14, 30, 49, 0.06);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.3rem, 1.5vw, 1.9rem);
    font-weight: 800;
    color: var(--navy) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.navbar-brand i {
    color: var(--accent);
}

.navbar .navbar-collapse {
    gap: 14px;
}

.nav-link {
    color: var(--navy) !important;
    font-weight: 700;
    margin: 0 4px;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-link.active {
    color: var(--accent) !important;
}

.navbar-nav {
    gap: 2px;
    flex-wrap: nowrap;
}

.search-box {
    position: relative;
    width: min(250px, 100%);
    max-width: 250px;
    flex: 1;
}

.dropdown-menu {
    border: 1px solid #e4e9ef;
    box-shadow: 0 16px 30px rgba(12, 26, 43, 0.15);
    border-radius: 12px;
    padding: 8px;
}

.dropdown-item {
    border-radius: 8px;
    font-weight: 600;
    color: #22344b;
    padding: 8px 12px;
}

.dropdown-item:hover {
    background: #eef4ff;
    color: var(--navy);
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--accent);
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    position: relative;
    font-size: 1.3rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.btn-categories {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-categories:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(90deg, rgba(11, 34, 64, 0.95) 0%, rgba(11, 34, 64, 0.55) 60%),
        url('images/Gemini_Generated_Image_h3rwozh3rwozh3rw.png') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.orbit-bolt {
    position: absolute;
    right: 6%;
    bottom: 18%;
    width: 140px;
    height: 140px;
    pointer-events: none;
    opacity: 0.75;
}

.orbit-track {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: orbitSpin 10s linear infinite;
}

.orbit-icon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: var(--accent);
    text-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

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

.hero-badge {
    background: rgba(255, 138, 0, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-points {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.hero-points .point-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-hero {
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 22px rgba(255, 138, 0, 0.18);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 138, 0, 0.3);
    color: var(--dark);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Brand Logos Section */
.brands-section {
    padding: 60px 0;
    background: white;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.brand-card {
    background: white;
    border: 1px solid #eef1f6;
    border-radius: 12px;
    padding: 15px 25px;
    min-width: 180px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    text-align: center;
    text-decoration: none;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(11, 34, 64, 0.1);
    border-color: var(--accent);
}

.brand-card img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.4s ease;
}

.brand-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.brand-name-placeholder {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin: 0;
}

.brand-more-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--secondary) 100%);
    border: none;
}

.brand-more-card span {
    color: white;
    font-weight: 700;
}

.brand-more-card:hover {
    background: var(--accent);
}

/* Categories Section */
.section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--navy);
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.28s ease;
    cursor: pointer;
    border: 1px solid rgba(209, 214, 219, 0.3);
    height: 100%;
    min-height: 140px;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(2, 8, 23, 0.12);
    border-color: var(--accent);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.category-icon i {
    animation: none;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.22s ease;
    border: 1px solid #e6e9ed;
    height: auto;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(9, 30, 56, 0.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFD700;
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-image-container {
    overflow: hidden;
    background: #f8f9fa;
}

.about-intro {
    font-size: 1.14rem;
    line-height: 1.7;
    color: #1f3551;
}

.info-card {
    height: 100%;
    background: linear-gradient(155deg, #ffffff 0%, #f6f9ff 100%);
    border: 1px solid #dbe5f2;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(14, 39, 66, 0.06);
}

.info-card.alt {
    background: #f4f6f8;
    /* Solid light gray */
    border-color: #dce4ec;
    color: #333;
}

.info-card h5 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #0b2444;
}

.info-card p {
    margin: 0;
    color: #304861;
    line-height: 1.65;
}

.about-sidebar {
    display: grid;
    gap: 16px;
}

.leader-profile {
    background: #ffffff;
    border: 1px solid #d9e3f0;
    border-left: 4px solid var(--accent);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(14, 39, 66, 0.09);
}

.leader-photo-wrap {
    background: linear-gradient(135deg, #f8fbff 0%, #e9f0fb 100%);
    padding: 14px;
}

.leader-photo {
    width: 100%;
    height: 290px;
    object-fit: contain;
    object-position: center top;
    border-radius: 10px;
    display: block;
    background: #fff;
}

.leader-content {
    padding: 18px 18px 20px;
}

.leader-content h5 {
    font-family: 'Sora', sans-serif;
    font-size: 1.08rem;
    margin-bottom: 8px;
    color: #0b2240;
}

.leader-content p {
    margin: 0;
    line-height: 1.65;
    color: #294058;
}

.leader-note {
    background: #ffffff;
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    border-top: 1px solid #dce4ee;
    border-right: 1px solid #dce4ee;
    border-bottom: 1px solid #dce4ee;
    padding: 16px 18px;
    box-shadow: 0 8px 18px rgba(14, 39, 66, 0.06);
}

.read-more-btn {
    margin-top: 12px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 999px;
    cursor: pointer;
}

.read-more-btn:hover {
    background: var(--accent);
    color: #ffffff;
}

.read-more.expanded+.read-more-btn {
    background: #1a2f47;
    border-color: #1a2f47;
    color: #ffffff;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}


.parallax-item {
    will-change: transform;
}

@keyframes floatIcon {

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

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


@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .orbit-bolt {
        width: 110px;
        height: 110px;
        right: 8%;
        bottom: 12%;
    }
}

@media (max-width: 768px) {
    .orbit-bolt {
        width: 90px;
        height: 90px;
        right: 6%;
        bottom: 10%;
        opacity: 0.6;
    }
}

@media (prefers-reduced-motion: reduce) {

    .orbit-track,
    .category-icon i {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.leader-note h5 {
    font-family: 'Sora', sans-serif;
    font-size: 1.02rem;
    margin-bottom: 8px;
    color: #0f2f52;
}

.leader-note p {
    margin: 0;
    line-height: 1.62;
    color: #304861;
}

.download-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #dce6f2;
    border-radius: 14px;
    padding: 28px 20px;
    box-shadow: 0 10px 22px rgba(11, 34, 64, 0.08);
}

.download-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.download-card h5 {
    font-family: 'Sora', sans-serif;
    font-size: 1.03rem;
    color: #0b2240;
    margin-bottom: 10px;
}

.download-card p {
    color: #324a65;
    line-height: 1.6;
    margin-bottom: 18px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 148px;
    font-size: 0.95rem;
    padding: 10px 20px;
}

.map-placeholder {
    background: linear-gradient(145deg, #edf3fb 0%, #dfeaf8 100%);
    border: 1px dashed #8ea7c5;
    border-radius: 10px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #2d4562;
    font-weight: 600;
    padding: 18px;
}

.enquiry-card {
    background: linear-gradient(160deg, #ffffff 0%, #f4f8ff 100%);
    border: 1px solid #dbe6f3;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 12px 26px rgba(11, 34, 64, 0.08);
}

.enquiry-card h5 {
    font-family: 'Sora', sans-serif;
    color: #102b49;
    margin-bottom: 6px;
}

.enquiry-subtext {
    color: #3a5370;
    margin-bottom: 14px;
    line-height: 1.6;
}

.enquiry-card .form-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: #17375a;
    margin-bottom: 6px;
}

.product-body {
    padding: 20px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    min-height: 45px;
}

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

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
}

.original-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart {
    flex: 1;
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 10px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: var(--navy);
    color: white;
}

.btn-buy-now {
    flex: 1;
    background: var(--navy);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background: var(--accent);
    color: var(--dark);
    transform: scale(1.05);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(90deg, #758293);
    color: var(--navy);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 200, 120, 0.2);
    border-bottom: 1px solid rgba(255, 200, 120, 0.2);
}

.promo-banner h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.promo-code {
    background: var(--accent);
    color: var(--dark);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 0 6px 14px rgba(255, 138, 0, 0.18);
}

/* Accessories Banner */
.accessories-banner {
    background: linear-gradient(90deg, rgba(11, 34, 64, 0.95) 0%, rgba(11, 34, 64, 0.75) 60%),
        url('images/img1.jpg') center/cover;
    border-radius: 12px;
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.accessories-badge {
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.accessories-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.accessories-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.range-card {
    background: #ffffff;
    border: 1px solid #dce6f2;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(9, 30, 56, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.range-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(9, 30, 56, 0.12);
}

.range-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.range-content {
    padding: 18px;
}

.range-content h5 {
    font-family: 'Sora', sans-serif;
    font-size: 1.02rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.range-list {
    margin: 0;
    padding-left: 18px;
    color: #2e445d;
    line-height: 1.6;
}

.range-list li {
    margin-bottom: 4px;
}

/* Features Section */
.features-section {
    background: var(--navy);
    color: white;
    padding: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
}

.feature-content h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-content p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--navy);
    color: #d7e6f3;
    padding: 50px 0 20px;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cfe7ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.social-icons a {
    color: white;
    font-size: 1.3rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent);
}

/* Modal Styling */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: var(--navy);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 2px solid #e6e9ed;
}

.form-control:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 0.2rem rgba(11, 34, 64, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .search-box {
        width: 100%;
        max-width: 100%;
        margin: 15px 0;
    }

    .navbar .navbar-collapse {
        gap: 12px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

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

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 26px;
    }

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

    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-points {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-points .point-item {
        display: block;
        width: 100%;
        white-space: normal;
    }

    .hero .d-flex.flex-wrap.gap-3 {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px !important;
    }

    .hero .btn-hero {
        width: 100%;
    }

    .accessories-banner {
        padding: 40px 20px;
    }

    .accessories-banner h2 {
        font-size: 1.8rem;
    }

    .info-card,
    .leader-note,
    .download-card,
    .enquiry-card,
    .range-card,
    .catalog-card {
        border-radius: 12px;
    }

    .info-card p,
    .leader-note p,
    .catalog-meta,
    .range-list {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .range-image,
    .catalog-image {
        height: 160px;
    }

    .catalog-toolbar {
        margin-top: -22px;
        padding: 12px 10px;
    }

    .chip-link {
        font-size: 0.8rem;
        padding: 7px 12px;
    }

    .leader-photo {
        height: 240px;
    }
}

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

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease;
}

.page-hero {
    background: linear-gradient(110deg, rgba(8, 27, 51, 0.93) 0%, rgba(8, 27, 51, 0.78) 55%),
        url('images/img4.png') center/cover no-repeat;
    color: #ffffff;
    padding: 90px 0 70px;
}

.page-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.06rem;
    line-height: 1.7;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.92);
}

.catalog-toolbar {
    background: #ffffff;
    border: 1px solid #dbe5f1;
    border-radius: 14px;
    padding: 14px;
    margin-top: -30px;
    box-shadow: 0 10px 22px rgba(11, 34, 64, 0.08);
    position: relative;
    z-index: 5;
}

.chip-link {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid #cad9ea;
    color: #18395f;
    background: #f4f8ff;
    margin: 5px;
    transition: 0.2s ease;
}

.chip-link:hover,
.chip-link.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.catalog-card {
    background: #ffffff;
    border: 1px solid #dce5f1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 22px rgba(11, 34, 64, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.catalog-image-wrapper {
    width: 100%;
    height: 185px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-bottom: 1px solid #edf2f9;
}

.catalog-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-image {
    transform: scale(1.08);
}

.catalog-body {
    padding: 18px;
}

.catalog-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.2px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f426b;
    background: #e8f1fd;
}

.catalog-title {
    font-family: 'Sora', sans-serif;
    color: #0f2d4f;
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.catalog-meta {
    color: #344f6a;
    line-height: 1.6;
    margin-bottom: 14px;
    font-size: 0.94rem;
}

.catalog-actions {
    display: flex;
    gap: 10px;
}

.catalog-actions .btn {
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.83rem;
    padding: 8px 12px;
}

/* --- NEW PREMIUM ANIMATIONS --- */

/* 1. Staggered Entrance Animations */
/* Automatically stagger transition delays for grid items with .reveal class */
@media (min-width: 768px) {

    /* Categories Grid */
    .row>div:nth-child(2) .reveal {
        transition-delay: 0.1s;
    }

    .row>div:nth-child(3) .reveal {
        transition-delay: 0.2s;
    }

    .row>div:nth-child(4) .reveal {
        transition-delay: 0.3s;
    }

    .row>div:nth-child(5) .reveal {
        transition-delay: 0.4s;
    }

    .row>div:nth-child(6) .reveal {
        transition-delay: 0.1s;
    }

    /* Wrap around for longer grids */
    .row>div:nth-child(7) .reveal {
        transition-delay: 0.2s;
    }

    .row>div:nth-child(8) .reveal {
        transition-delay: 0.3s;
    }

    /* Ensure reveal works correctly */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal.in-view {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay Utilities */
.delay-100 {
    transition-delay: 0.1s !important;
}

.delay-200 {
    transition-delay: 0.2s !important;
}

.delay-300 {
    transition-delay: 0.3s !important;
}

.delay-400 {
    transition-delay: 0.4s !important;
}

.delay-500 {
    transition-delay: 0.5s !important;
}

/* 2. Enhanced Hero Button Shine Effect */
.btn-hero {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    /* Start further left */
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 20%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 80%);
    transform: skewX(-25deg);
    transition: left 0.75s ease;
    z-index: -1;
}

.btn-hero:hover::after {
    left: 150%;
    transition: left 0.75s ease;
}

/* 3. Smooth Floating Animation for Hero Image */
@keyframes floatPremium {
    0% {
        transform: translateY(0px);
    }

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

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

/* Hero image floating disabled as requested */

/* 4. Pulse Effect for Important Badges */
@keyframes pulseSoft {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 138, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 138, 0, 0);
    }
}

.hero-badge {
    animation: pulseSoft 2s infinite;
}

/* 5. Navigation Link Underline Animation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    /* Adjust based on padding */
    left: 50%;
    background-color: var(--accent);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    /* Bouncy effect */
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* 6. Card Hover Lift & Glow */
.category-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease,
        border-color 0.3s ease !important;
}

.category-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--accent) !important;
}

.product-card,
.range-card,
.info-card {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease !important;
}

.product-card:hover,
.range-card:hover,
.info-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* 7. Footer Link Hover Slide */
.footer-links a {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

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


/* --- Nested Dropdown Styles --- */
.dropdown-menu {
    margin-top: 0;
    padding: 0;
    /* Reset padding for cleaner look */
    overflow: visible;
    /* Allow submenus to overflow */
}

.dropdown-item {
    position: relative;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-item .fa-chevron-right {
    font-size: 0.75rem;
    opacity: 0.5;
    transition: transform 0.2s;
}

.dropdown-item:hover .fa-chevron-right {
    transform: translateX(3px);
    opacity: 1;
}

/* Submenu container */
.dropdown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 0;
    /* Attach directly to the side */
    display: none;
    /* Hidden by default */
    min-width: 220px;
    background: white;
    border: 1px solid #e4e9ef;
    box-shadow: 4px 4px 16px rgba(12, 26, 43, 0.1);
    border-radius: 12px;
    z-index: 1000;
}

/* Show submenu on hover */
.dropdown-item-wrapper {
    position: relative;
    /* Context for absolute positioning */
}

.dropdown-item-wrapper:hover>.dropdown-submenu {
    display: block;
    animation: fadeInSubmenu 0.2s ease-out forwards;
}

@keyframes fadeInSubmenu {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

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

.dropdown-submenu .dropdown-item {
    font-size: 0.9rem;
    padding: 8px 14px;
    color: #4a5c70;
}

.dropdown-submenu .dropdown-item:hover {
    color: var(--navy);
    background: #f0f4f9;
}

/* --- Modal Styles with Blur --- */
.modal-backdrop.show {
    opacity: 0.6;
    backdrop-filter: blur(8px);
    /* The requested blur effect */
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(11, 34, 64, 0.6);
}

.modal-content {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy);
    color: white;
}

.modal-title {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.modal-body {
    padding: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334e68;
}

.section-title {
    background: -webkit-linear-gradient(45deg, var(--navy), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Scrollytelling Nutbolt --- */
.scrolly-nutbolt {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    font-size: 3rem;
    color: var(--navy);
    opacity: 0.3;
    pointer-events: none;
    transition: transform 0.1s linear;
}

.scrolly-nutbolt i {
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.2));
}

/* --- Product Detail Modal Styles --- */
.product-modal-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.product-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: var(--accent);
    font-size: 0.9rem;
}

.product-detail-title {
    font-family: 'Sora', sans-serif;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 15px;
}

/* Logo Styles */
.header-logo {
    height: 95px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar.scrolled .header-logo {
    height: 75px;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .header-logo {
        height: 60px;
    }
}