/* Smooth fade-in effect bina kisi library ke */
section {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
        /* ===== GLOBAL STYLES ===== */
        :root {
            --4m-orange: #f77e20;
            --4m-blue: #f1f7fd;
            --4m-dark: #212529;
            --4m-light: #f8f9fa;
            --4m-yellow: #ffd700;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
            color: #333;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .section-title {
            font-size: 24px;
            font-weight: 600;
            color: var(--4m-dark);
            /* margin-bottom: 1.5rem; */
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 20px;
            }
        }

        .btn-dark {
            background-color: var(--4m-dark);
            border-color: var(--4m-dark);
        }

        .btn-dark:hover {
            background-color: #000;
            border-color: #000;
        }

        /* ===== NAVBAR & MEGA MENU ===== */
        
        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            padding: 10px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand img {
            height: 50px;
        }

        @media (max-width: 991px) {
            .navbar-brand img {
                height: 40px;
            }
        }

        .navbar-nav .nav-link {
            font-size: 13px;
            font-weight: 600;
            color: #333 !important;
            padding: 10px 15px !important;
            text-transform: uppercase;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--4m-orange) !important;
        }

        .social-icons a {
            color: #333;
            margin-left: 12px;
            font-size: 14px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: var(--4m-orange);
            transform: translateY(-2px);
        }

        /* Mega Menu Desktop */
        @media all and (min-width: 992px) {
            .navbar .has-megamenu {
                position: static !important;
            }

            .navbar .megamenu {
                left: 0;
                right: 0;
                width: 100%;
                margin-top: 0;
                border: none;
                border-radius: 0 0 20px 20px;
                padding: 30px 0;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                background: white;
                border-top: 1px solid #eee;
            }
        }

        

        /* Mega Menu Items */
        .mega-cat-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 10px;
            transition: all 0.2s ease;
            cursor: pointer;
            text-decoration: none;
            border-radius: 10px;
            margin-bottom: 5px;
        }

        .mega-cat-item:hover {
            background: var(--4m-light);
            transform: translateY(-3px);
        }

        .mega-cat-item:hover span {
            color: var(--4m-orange);
        }

        .cat-icon-box {
            width: 60px;
            height: 60px;
            background-color: #f5f5f5;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: 0;
        }

        .cat-icon-box img {
            width: 70%;
            height: 70%;
            object-fit: contain;
        }

        .mega-cat-item span {
            font-size: 14px;
            font-weight: 500;
            color: #444;
            line-height: 1.2;
        }

        /* Mobile Mega Menu */
        @media (max-width: 991px) {
            .megamenu {
                border: none;
                padding: 15px;
                background: #f9f9f9;
                border-radius: 10px;
                margin-top: 10px;
            }

            .mega-cat-item {
                background: white;
                margin-bottom: 8px;
                border-radius: 10px;
            }

            .social-icons {
                padding: 15px 0;
                justify-content: center;
                display: flex !important;
                border-top: 1px solid #eee;
                margin-top: 15px;
            }

            .social-icons a {
                margin: 0 10px;
                font-size: 18px;
            }
        }

        /* Animated Mobile Menu */
        .navbar-toggler {
            border: none;
            padding: 0;
            width: 30px;
            height: 30px;
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: #333;
            margin: 5px 0;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Menu Animation */
        @media (max-width: 991px) {
            .navbar-collapse {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                max-height: calc(100vh - 70px);
                overflow-y: auto;
                transition: all 0.4s ease;
                transform: translateY(-100%);
                opacity: 0;
                z-index: 1000;
            }

            .navbar-collapse.show {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            padding: 80px 0;
            min-height: 500px;
            display: flex;
            align-items: center;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 50px 0;
                min-height: auto;
                text-align: center;
            }

            .hero-section h1 {
                font-size: 28px;
            }

            .hero-section h4 {
                font-size: 16px;
            }
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .carousel-control-prev {
            left: 20px;
        }

        .carousel-control-next {
            right: 20px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }

        @media (max-width: 768px) {

            .carousel-control-prev,
            .carousel-control-next {
                        width: 10px;
        height: 10px;
            }

            .carousel-control-prev {
                left: 10px;
            }

            .carousel-control-next {
                right: 10px;
            }
        }

        /* ===== TICKER ANIMATION ===== */
        .ticker-wrap {
            background: var(--4m-orange);
            color: white;
            padding: 15px 0;
            overflow: hidden;
            position: relative;
        }

        .ticker {
            display: flex;
            white-space: nowrap;
            animation: marquee 25s linear infinite;
        }

        .ticker span {
            font-size: 24px;
            font-weight: bold;
            margin-right: 50px;
            text-transform: uppercase;
        }

        .ticker span strong {
            font-weight: 800;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .ticker span {
                font-size: 18px;
                margin-right: 30px;
            }

            @keyframes marquee {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(-100%);
                }
            }
        }

        /* ===== PRODUCT SECTIONS ===== */
        /* Trending Products */
        .trending-products,
        .explore-tws,
        .explore-chargers,
        .explore-cables,
        .explore-travel,
        .about-4m {
            padding: 60px 0;
        }

        @media (max-width: 768px) {

            .trending-products,
            .explore-tws,
            .explore-chargers,
            .explore-cables,
            .explore-travel,
            .about-4m {
                padding: 40px 0;
            }
        }

        /* Product Toggle */
        .product-toggle {
            background: #eeeeee;
            padding: 5px;
            border-radius: 50px;
            display: inline-flex;
        }

        .btn-toggle {
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 500;
            border: none;
            background: transparent;
            transition: all 0.3s ease;
        }

        .btn-toggle.active {
            background: #000;
            color: #fff;
        }

        /* Product Cards */
        .product-card {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            background: #fff;
            height: 100%;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        /* Yellow Star Badge */
        .badge-star {
            position: absolute;
            top: 0;
            left: 0;
            background: var(--4m-yellow);
            color: #000;
            padding: 6px 15px;
            font-size: 11px;
            font-weight: bold;
            border-bottom-right-radius: 8px;
            z-index: 1;
        }

        .badge-star i {
            margin-right: 5px;
        }

        .product-img {
            padding: 30px;
            text-align: center;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url(https://static.vecteezy.com/system/resources/thumbnails/010/082/272/small/abstract-gradient-orange-color-background-free-vector.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .product-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .product-info {
            padding: 15px;
            border-top: 1px solid #eee;
            background-color: #fcfcfc;
        }

        .product-info h5 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }

        .product-info p {
            font-size: 12px;
            color: #666;
            margin-bottom: 15px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Color Circles */
        .color-options {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            border: 1px solid #ddd;
        }

        .white {
            background-color: #fff;
        }

        .blue {
            background-color: #a5c3e6;
        }

        .light-blue {
            background-color: #d1eefc;
        }

        .black {
            background-color: #000;
        }

        /* TWS Cards */
        .tws-card {
            background:url(https://static.vecteezy.com/system/resources/thumbnails/007/726/370/small/pop-art-sun-rays-background-illustration-of-retro-template-for-yellow-with-radial-stripes-on-orange-vector.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: 1px solid #e1eaf3;
            border-radius: 15px;
            padding: 20px 10px 0 10px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .tws-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
        }

        .tws-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .tws-img-wrap {
            margin-top: auto;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            height: 200px;
        }

        .tws-img-wrap img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.4s ease;
        }

        .tws-card:hover .tws-img-wrap img {
            transform: scale(1.05);
        }

        /* Charger Cards */
        .charger-feature-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 100%;
        }

        .charger-feature-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .feature-overlay {
            position: absolute;
            top: 40px;
            left: 40px;
        }

        .feature-overlay h3 {
            font-size: 3rem;
            font-weight: 700;
            color: #000;
        }

        .charger-small-card {
            background:url(https://www.frebers.com/wp-content/uploads/wpdm-cache/3-yellow-background-01-scaled-768x0.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
        }

        .charger-small-card:hover {
            background-color: #ffffff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transform: translateY(-5px);
        }

        .charger-small-card h6 {
            font-size: 13px;
            font-weight: 600;
            text-align: left;
            margin-bottom: 15px;
            color: #444;
            height: 40px;
        }

        .charger-small-card img {
            max-width: 80%;
            /* height: 150px; */
            object-fit: cover;
            margin: 0 auto;
        }


        /* Cable Cards */
        .cable-card {
            background-color: var(--4m-blue);
            border: 1px solid #e1eaf3;
            border-radius: 12px;
            padding: 15px 5px 0 5px;
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }

        .cable-card:hover {
            background-color: #ffffff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            transform: translateY(-5px);
        }

        .cable-name {
            font-size: 13px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            text-transform: uppercase;
            padding: 0 5px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cable-img-wrap {
            margin-top: auto;
            overflow: hidden;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            height: 180px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .cable-img-wrap img {
            width: 100%;
            height: auto;
            max-height: 100%;
            object-fit: contain;
        }

        /* Travel Cards */
        .travel-card-landscape {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 220px;
        }

        .travel-card-landscape img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .travel-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
        }

        .travel-overlay h6 {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .travel-card-small,
        .travel-card-tall {
            background-color: var(--4m-blue);
            border: 1px solid #e1eaf3;
            border-radius: 12px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }

        .travel-card-small:hover,
        .travel-card-tall:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .travel-card-small {
            height: 220px;
            text-align: center;
        }

        .travel-card-tall {
            height: 100%;
            text-align: left;
        }

        .travel-label {
            font-size: 12px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .travel-card-small img {
            max-height: 150px;
            width: auto;
            margin: auto;
            object-fit: contain;
        }

        .tall-img-wrap {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 300px;
        }

        .tall-img-wrap img {
            max-width: 90%;
            height: auto;
            max-height: 100%;
        }

        /* About 4m */
        .about-content .section-title {
            font-size: 28px;
            font-weight: 600;
            color: var(--4m-dark);
        }

        .lead-text {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .about-graphic-container {
            position: relative;
            padding: 10px;
        }

        .graphic-bg-gradient {
            border-radius: 20px;
            overflow: hidden;
            background: radial-gradient(circle, #ffcc00 0%, #ff6600 100%);
        }

        .graphic-bg-gradient img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .graphic-bg-gradient:hover img {
            transform: scale(1.02);
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background-color: var(--4m-blue);
            border-top: 1px solid #e1eaf3;
            font-size: 13px;
            padding: 60px 0 20px;
        }

        .contact-info p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .contact-info a {
            text-decoration: none;
            color: #555;
            transition: 0.3s;
        }

        .contact-info a:hover {
            color: var(--4m-orange);
        }

        .footer-title {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #2c3e50;
            letter-spacing: 0.5px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            text-decoration: none;
            color: #666;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: var(--4m-orange);
            padding-left: 5px;
        }

        .social-icons-footer {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }

        .social-icons-footer a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            color: #333;
            font-size: 18px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-icons-footer a:hover {
            color: white;
            background-color: var(--4m-orange);
            transform: translateY(-3px);
        }

        .copyright {
            color: #888;
            font-size: 12px;
            margin-top: 20px;
        }

        /* ===== RESPONSIVE ADJUSTMENTS ===== */
        @media (max-width: 1200px) {
            .col-xl-2 {
                flex: 0 0 25%;
                max-width: 25%;
            }
        }

        @media (max-width: 991px) {
            .col-lg-2-4 {
                flex: 0 0 33.333%;
                max-width: 33.333%;
            }

            .feature-overlay h3 {
                font-size: 2rem;
            }

            .charger-feature-card {
                height: 300px;
                margin-bottom: 30px;
            }

            .travel-card-landscape,
            .travel-card-small,
            .travel-card-tall {
                height: auto;
                min-height: 250px;
                margin-bottom: 20px;
            }

            .tall-img-wrap {
                height: 250px;
            }

            .about-4m {
                text-align: center;
            }

            .lead-text {
                text-align: center;
            }

            .about-graphic-container {
                margin-top: 30px;
            }
        }

        @media (max-width: 768px) {

            .col-lg-2-4,
            .col-md-4,
            .col-lg-3,
            .col-lg-6,
            .col-xl-2 {
                flex: 0 0 50%;
                max-width: 50%;
            }

            .section-title {
                font-size: 20px;
            }

            .product-toggle {
                margin-top: 15px;
                width: 100%;
                justify-content: center;
            }

            .d-flex.justify-content-between.align-items-center {
                flex-direction: column;
                align-items: flex-start !important;
            }
            .explore-chargers .d-flex.justify-content-between.align-items-center{
                flex-direction: row !important;
            }

            .d-flex.justify-content-between.align-items-center .btn {
                /* margin-top: 15px; */
                align-self: flex-end;
            }

            .tws-img-wrap,
            .cable-img-wrap {
                height: 150px;
            }

            .product-img {
                height: 150px;
                padding: 20px;
            }

            .charger-small-card img {
                height: 100px;
            }
        }

        @media (max-width: 576px) {

            .col-lg-2-4,
            .col-md-4,
            .col-sm-6,
            .col-6,
            .col-lg-3,
            .col-lg-6,
            .col-xl-2 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .cable-name {
                font-size: 11px;
                height: auto;
            }

            .product-info h5 {
                font-size: 14px;
            }

            .tws-name {
                font-size: 14px;
            }

            .feature-overlay h3 {
                font-size: 1.5rem;
            }

            .feature-overlay {
                top: 20px;
                left: 20px;
            }

            .footer-title {
                margin-top: 20px;
                margin-bottom: 15px;
            }

            .footer-links li {
                margin-bottom: 8px;
            }
        }

        /* Custom Column for 5 items per row */
        .col-lg-2-4 {
            position: relative;
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
        }

        @media (min-width: 992px) {
            .col-lg-2-4 {
                flex: 0 0 20%;
                max-width: 20%;
            }
        }

        /* AOS Animation Delay Classes */
        .delay-100 {
            animation-delay: 100ms;
        }

        .delay-200 {
            animation-delay: 200ms;
        }

        .delay-300 {
            animation-delay: 300ms;
        }

        .delay-400 {
            animation-delay: 400ms;
        }

        .delay-500 {
            animation-delay: 500ms;
        }
        
        
        
        
        
        
        
        
        
         /* Listing Page Specific Styles */
.text-orange {
    color: var(--4m-orange) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

.category-header {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('https://media.istockphoto.com/id/1333493674/vector/background-elegant-creative-thai-pattern-modern.jpg?s=612x612&w=0&k=20&c=x8x62ceEkYKCsqS-qiKtUohLQ16BbbgC_i_f2S5SGZI='); /* Chhota pattern background */
}

.product-card .btn-outline-dark:hover {
    background-color: var(--4m-orange);
    border-color: var(--4m-orange);
    color: white;
}
/* Product Action Buttons */
.product-actions .btn {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

/* WhatsApp Button Style */
.btn-whatsapp {
    background-color: #25D366;
    color: white !important;
}

.btn-whatsapp:hover {
    background-color: #1eb954;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Call Button Style */
.btn-call {
    background-color: var(--4m-dark);
    color: white !important;
    width: 45px; /* Square call button */
}

.btn-call:hover {
    background-color: var(--4m-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(247, 126, 32, 0.3);
}

/* For mobile: Button text thoda chhota karne ke liye */
@media (max-width: 576px) {
    .product-actions .btn {
        font-size: 11px;
        padding: 6px 5px;
    }
}


/* About Page Specific Styling */
.text-orange {
    color: var(--4m-orange) !important;
}

/* Floating Badge Effect */
.about-image-stack {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--4m-orange);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 140px;
    animation: floating 3s ease-in-out infinite;
}

.experience-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Step Boxes */
.step-box {
    position: relative;
    background: white;
    border-radius: 15px;
    transition: 0.3s;
}

.step-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(247, 126, 32, 0.1);
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.vision-card, .mission-card {
    transition: 0.4s;
}

.vision-card:hover {
    box-shadow: 0 20px 40px rgba(247, 126, 32, 0.15);
}


/* Step Box Styling */
.step-box {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    z-index: 1;
    overflow: hidden;
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--4m-orange);
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(247, 126, 32, 0.08); /* Light orange watermark effect */
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.step-box h5 {
    color: var(--4m-dark);
    margin-top: 20px;
    position: relative;
}

.step-box p {
    font-size: 14px;
    color: #666;
}




/* Distributorship Styles */
.icon-box {
    width: 60px;
    height: 60px;
    background: var(--4m-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.text-orange {
    color: var(--4m-orange) !important;
}

.form-control, .form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.form-control:focus {
    border-color: var(--4m-orange);
    box-shadow: 0 0 0 0.25rem rgba(247, 126, 32, 0.1);
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}



.contact-card {
    background: #fff;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--4m-orange) !important;
    transform: translateY(-5px);
}

.text-orange {
    color: var(--4m-orange);
}

.form-control {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--4m-orange);
    box-shadow: none;
}





/* FAQ Accordion Styling */
.accordion-button:not(.collapsed) {
    background-color: #fff3e6;
    color: var(--4m-orange);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-item {
    border: none;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white !important;
    font-weight: 600;
}

.border-dashed {
    border-style: dashed !important;
}




/* Policy Page Styles */
.policy-text {
    line-height: 1.8;
    color: #444;
}

.policy-text ul {
    margin-bottom: 1.5rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
}

.policy-text h4 {
    color: var(--4m-dark);
    border-left: 4px solid var(--4m-orange);
    padding-left: 15px;
}



/* E-Waste Specific Styles */
.bg-success {
    background-color: #28a745 !important;
}

.step-num-small {
    width: 30px;
    height: 30px;
    background: var(--4m-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.section-title {
    border-bottom: 3px solid var(--4m-orange);
    display: inline-block;
    padding-bottom: 5px;
}




/* Cookie Policy Styles */
.policy-content {
    background-color: #ffffff;
    line-height: 1.7;
}

.policy-content h4 {
    color: var(--4m-dark);
    font-size: 1.25rem;
}

.policy-content ul {
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

.table {
    font-size: 0.95rem;
}



/* Disclaimer Page Specifics */
.disclaimer-box {
    line-height: 1.8;
}

.disclaimer-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--4m-dark);
}

.text-orange {
    color: var(--4m-orange) !important;
}

.bg-white {
    background-color: #ffffff !important;
}
/* Terms Page Customization */
.terms-container {
    line-height: 1.8;
    color: #555;
}

.terms-section h4 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.terms-section p {
    margin-bottom: 1rem;
}

/* Orange border-bottom for headings */
.terms-section h4.border-bottom {
    border-color: var(--4m-orange) !important;
    border-width: 2px !important;
}


/* Ensure proper print styles */
@media print {
    .product-actions, .carousel-controls, .ticker-wrap {
        display: none !important;
    }
}