                         /* per start css styles  */
                         * {
                            margin: 0;
                            padding: 0;
                            box-sizing: border-box;
                        }

                        @font-face {
                            font-family: moon;
                            src: url(../Font/SpaceMono-Regular.ttf);
                        }

                        @font-face {
                            font-family: rocket;
                            src: url(../Font/ROCKET\ WILDNESS.ttf);
                        }

                        html,
                        body {
                            background-color: black;
                            font-family: moon;
                            width: 100%;
                            height: 100%;
                            margin: 0;
                            overflow-x: hidden;
                            position: absolute;
                            top: 0;
                            left: 0;
                            z-index: -5;
                        }

                        .mobile-container {
                            padding: 0 12px;
                        }

                        .mobile-container::after {
                            content: '';
                            display: block;
                            clear: both;
                        }

                        .show {
                            display: block;
                        }

                        /* header css codes start  */

                        header {
                            width: 100%;
                            /* padding-bottom: 140px; */
                            position: relative;
                        }
                        .nav {
                            display: flex;
                            flex-direction: row;
                            justify-content: space-between;
                            padding-top: 30px;
                        }

                        .mobile-menu {
                            position: absolute;
                            z-index: 1;
                            left: 285px;
                            text-align: right;
                            top: 80px;
                        }

                        .list-menu {
                            display: none;
                        }

                        .list-menu ul {
                            padding-top: 14px;
                            list-style-type: none;
                            display: flex;
                            flex-direction: column;
                        }

                        .list-menu ul li {
                            padding: 12px 16px;
                        }

                        .list-menu ul li a {
                            font-size: 1.1rem;
                            text-transform: uppercase;
                            text-decoration: none;
                            color: #ffffff;
                            opacity: 0.8;
                            position: relative;
                            padding-bottom: 5px;
                            font-weight: 100;
                        }

                        .list-menu ul li a::before {
                            content: '';
                            position: absolute;
                            width: 100%;
                            height: 1px;
                            border-radius: 2px;
                            background-color: #D8D8D8;
                            bottom: 0;
                            left: 0;
                            transform-origin: right;
                            transform: scaleX(0);
                            transition: transform .3s ease-in-out;
                        }

                        .list-menu ul li a:hover::before {
                            transform-origin: left;
                            transform: scaleX(1);
                        }

                        .leftnav i {
                            cursor: pointer;
                            font-size: 2.5rem;
                        }

                        .rightnav i {
                            color: #d8d8d8d8;
                            font-size: 2rem;
                            margin-top: 6px;

                        }

                        .leftnav,
                        .rightnav i {
                            padding: 10px 18px 0;
                        }

                        .leftnav a {
                            text-decoration: none;
                            color: #d8d8d8d8;
                        }

                        .header-content {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                        }

                        .header-content h1 {
                            font-size: 3rem;
                            text-align: center;
                            font-family: rocket;
                            color: #d8d8d865;
                            padding-top: 360px;
                        }

                        .container h1 {
                            margin-top: 15px;
                            text-align: center;
                            font-size: 40px;
                            color:  #d8d8d8be;
                            font-family: rocket , Arial, Helvetica, sans-serif;
                        }
                        .container p {
                            margin: 20px 0;
                            text-align: center;
                            font-size: 20px;
                            font-family: 'Roboto Mono', monospace;
                            color:  #d8d8d862;
                            text-align: justify;
                        }
                        .under-line{
                            margin: 10px auto;
                            height: 4px;
                            width: 140px;
                            background-color:rgb(185, 185, 185);
                        }
                        .main-form{
                            max-width: 600px;
                            margin: auto;
                            overflow: hidden;
                            padding: 0 10px;
                        }
                        .contact-us{
                            display: block;
                            width: 100%;
                            box-sizing: border-box;
                            margin: 20px 0;
                            border: 0;
                            background: #111;
                            padding: 20px 40px;
                            outline: none;
                            color: #ddd;
                            transition: 0.5s;
                        }
                        .contact-us:focus{
                            box-shadow: 0 0 10px 4px #00d9ffbd ;
                            border-color: #00d9ffbd ;
                        }
                        textarea.contact-us{
                            resize: none;
                            height: 150px;
                        }
                        #btn{
                            font-family: moon , Arial, Helvetica, sans-serif;
                            font-size: 1.2rem;
                            margin-top: 0;
                            width: 50%;
                            text-align: center;
                            float: right;
                            text-transform: uppercase;
                            border: 1px solid transparent;
                            border-radius: 2px;
                            text-transform: 0.5s;
                        }
                        #btn:hover{
                            border-color: #00d9ffbd ;
                            box-shadow: 0 0 10px 4px #00d9ffbd ;
                            color:#00d9ffbd ;
                        }
                        

                        .product-section-label {
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            align-items: center;
                            padding: 0 0 70px;
                        }
                        .product-section-label-btns{
                            display: flex;
                            justify-content: center;
                            flex-direction: column;
                            align-items: center;
                        }
                        
                        .product-section-label p {
                            font-family:moon , Arial, Helvetica, sans-serif;
                            justify-content: center !important;
                            padding: 0 12px;
                        }
                        .product-section-label button{
                            margin: 8px;
                        }



                        .product-section {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            padding: 0px 4% 120px;
                          }
                          
                          .product-grid {
                            display: grid;
                            grid-template-columns: 1fr;
                            gap: 24px;
                            width: 100%;
                            max-width: 840px;
                            margin: 0 auto;
                            justify-items: center;
                          }
                          
                          .card {
                            opacity: 0.8;
                            display: flex;
                            flex-direction: column;
                            justify-content: start;
                            align-items: start;
                            position: relative;
                            padding: 24px;
                            background: #fff;
                            border-radius: 18px;
                            width: 100%;
                            max-width: 420px;
                            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
                          }
                          
                          .card-pill {
                            position: absolute;
                            padding: 6px 12px;
                            border-radius: 4px;
                            color: #fff;
                            background: #000;
                            right: 0;
                            top: 0;
                            margin-right: 32px;
                            margin-top: 32px;
                            line-height: 1;
                            font-size: 14px;
                            font-weight: 700;
                          }
                          
                          .card-img {
                            display: block;
                            width: 100%;
                            max-height: 320px;
                            object-fit: cover;
                            margin-bottom: 16px;
                            border-radius: 18px;
                          }
                          
                          .product-brand {
                            font-size: 12px;
                            line-height: 1;
                            margin-top: 12px;
                            margin-bottom: 0;
                            color: #646464;
                          }
                          
                          .product-cat {
                            font-size: 12px;
                            line-height: 1;
                            margin-top: 12px;
                            margin-bottom: 0;
                            color: #646464;
                            background: #f5f5f5;
                            padding: 6px 12px;
                            border-radius: 0;
                          }
                          
                          .product-name {
                            font-family: rocket , Arial, Helvetica, sans-serif;
                            font-size: 1.7rem;
                            line-height: 1;
                            margin-bottom: 6px;
                            margin-top: 0;
                            color: #000;
                          }
                          
                          .flex-row {
                            display: flex;
                            justify-content: start;
                            align-items: center;
                          }
                          
                          .space-between {
                            justify-content: space-between;
                          }
                          
                          .w-full {
                            width: 100%;
                          }
                          
                          .mb-sm {
                            margin-bottom: 8px;
                          }
                          
                          .price {
                            margin-right: 12px;
                          }
                          
                          .strike {
                            text-decoration: line-through;
                            opacity: 0.4;
                          }
                          
                          .btn-col {
                            width: 100%;
                            margin-top: 24px;
                          }
                          
                          .icon-link {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            width: 100%;
                            color: #fff;
                            background: #000;
                            padding: 1.4em 0;
                            border-radius: 8px;
                            transition: background 0.3s ease;
                            text-decoration: none;
                            line-height: 1;
                            font-size: 14px;
                            font-weight: 700;
                            text-transform: uppercase;
                            letter-spacing: 3px;
                          }
                          
                          .rubicons {
                            width: 24px;
                            margin-left: 8px;
                            transition: transform 0.3s ease;
                          }
                          
                          .icon-link:hover {
                            background: #333;
                          }
                          
                          .icon-link:hover > .rubicons {
                            transform: translate(3px, -3px);
                          }
                          
                          .hide {
                            display: none;
                          }
                          .center-footer p{
                            font-size: 0.7rem !important;
                          }
                          .second-footer p,
                          .third-footer a {
                            font-size: 0.9rem;
                            color: #d8d8d896;
                          }
                          @media screen and (min-width: 640px) {
                            .product-grid {
                              grid-template-columns: 1fr 1fr;
                            }
                          }
                          
                        
                                                 /* Media Query For 428px < devices */

                                                 @media screen and (min-width:435px) {
                                                    body {
                                                        overflow: scroll;
                                                        overflow-x: hidden;
                                                    }
                                                    .container {
                                                        width: 820px;
                                                        margin: 0 auto;
                                                    }
                                                    .rightnav i {
                                                        display: none;
                                                    }
                                                    .leftnav i {
                                                        padding: 0;
                                                    }
                                                    .list-menu {
                                                        display: block;
                                                    }
                                                    .list-menu ul {
                                                        flex-direction: row;
                                                    }
                                                    .header-content h1 {
                                                        display: block;
                                                        font-size: 5rem;
                                                        padding-top: 350px;
                                                        color: #d8d8d860;
                                                    }
                                                    .mobile-menu {
                                                        display: none;
                                                    }
                                                    .product-section-label-btns {
                                                        display: flex;
                                                        flex-direction:row ;
                                                        justify-content: space-around;  
                                                    }
                                                    .second-footer p,
                                                    .third-footer a {
                                                      font-size: 0.9rem;
                                                      color: #d8d8d896;
                                                    }
                                                }
                       