        :root {
            --primary-color: #ffffff;
            --secondary-color: #ffe75c;
            --secondary-color: #b20710;
            --background-color: #000000;
            --text-color: #ffffff;
            --font-family: 'Arial, sans-serif';
            --font-family: "Geologica", sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--background-color);
            color: var(--text-color);
            font-family: var(--font-family);
            width: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        nav {
            width: 100%;
        }

        .responsive-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo img {
            height: 35px;
        }

        .menu {
            display: flex;
            gap: 15px;
        }

        .menu a {
            display: block;
            background: rgb(0, 0, 0);
            display: inline-block;
            color: white;
            border-radius: 0px;
            padding: 2px 10px;
            position: relative;
            outline: none;
            border: none;
            box-sizing: content-box;
            mix-blend-mode: difference;
            text-decoration: none;
            font-weight: 500;
            border-right: 1px solid var(--secondary-color);
            border-bottom: 1px solid var(--secondary-color);
            overflow: hidden;
            text-transform: capitalize;
        }

        .menu a:hover,
        .menu a.active {
            color: #000000;
            /* background-color: #ffffff; */
            border: none;
        }

        .menu a.active {
            background-color: #ffffff;
        }

        .menu a::before {
            transition: all .3s ease-in-out;
            display: inline-block;
            content: "";
            position: absolute;
            border-radius: 100%;
            width: 0;
            height: 0;
            box-sizing: border-box;
            z-index: -2;
            left: 0;
            right: 0;
            top: 50%;
            top: 0;
            bottom: 0;
            margin: 0 auto;
            /* transform: translate(-50%, -50%); */
            transform: translate(0, -50%);
        }

        .menu a:hover::before {
            background: #ffffff;
            width: 100px;
            height: 100px;
            /* left: 0; */
            /* top: 0; */
            border-radius: 0;
        }

        .log-marquee {
            display: flex;
            align-items: center;
            gap: 10px;
            /* border: 1px solid var(--secondary-color); */
        }

        .log img {
            height: 70px;
            margin-left: 20px;
            padding: 10px 0;
        }

        .marquee {
            position: relative;
            width: 100vw;
            max-width: 100%;
            height: 60px;
            background-color: var(--secondary-color);
            color: #ffffff;
            display: flex;
            align-items: center;
            overflow-x: hidden;
        }

        .track {
            position: absolute;
            white-space: nowrap;
            will-change: transform;
            animation: marquee 10s linear infinite;
        }

        .marquee .content {
            font-size: 17px;
            font-weight: 600;
        }

        .marquee .gap {
            display: inline-block;
            width: 6rem;
        }

        @keyframes marquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

        .col-md-4 {
            flex: 0 0 33.3333%;
            max-width: 33.3333%;
            padding: 10px;
        }

        .col-md-5 {
            flex: 0 0 41.6667%;
            max-width: 41.6667%;
            padding: 10px;
        }

        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 10px;
        }

        .col-md-7 {
            flex: 0 0 58.3333%;
            max-width: 58.3333%;
            padding: 10px;
        }

        .col-md-8 {
            flex: 0 0 66.6667%;
            max-width: 66.6667%;
            padding: 10px;
        }

        .section {
            padding: 40px 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn-primary {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--secondary-color);
            color: #ffffff;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            margin-top: 10px;
        }

        .poster {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .service img {
            width: 100%;
            height: auto;
            /* border-radius: 8px; */
            transition: transform 0.3s ease;
        }

        .service img:hover {
            transform: scale(1.05);
        }

        h2 {
            font-size: 40px;
            text-align: center;
        }

        .about-para {
            font-size: 18px;
            line-height: 1.6;
            max-width: 850px;
            margin: 20px auto 0 auto;
            text-align: center;
        }

        .cv-group {
            width: 100%;
            height: auto;
            margin-top: 40px;
            border-radius: 8px;
        }

        .footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            flex-wrap: wrap;
        }

        .footer .left-box {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer .left-box .links a {
            display: block;
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .footer .left-box img {
            height: 40px;
        }

        .footer .right-box {
            text-align: right;
        }

        .footer .right-box .social {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .footer .right-box .social a svg {
            height: 45px;
            width: 45px;
            object-fit: contain;
            object-position: center;
        }

        .footer .right-box p {
            margin: 0px 0 0 0;
            font-size: 14px;
            font-weight: 500;
        }

        .toggle {
            display: none;
            cursor: pointer;
        }

        .toggle svg {
            height: 30px;
            width: 30px;
            object-fit: contain;
            object-position: center;
        }

        @media (max-width: 768px) {

            .menu {
                display: flex;
                flex-direction: column;
                background-color: var(--background-color);
                position: absolute;
                top: -360px;
                right: 20px;
                width: 200px;
                border: 1px solid var(--secondary-color);
                border-radius: 8px;
                padding: 10px;
                transition: all 0.3s ease-in-out;
                z-index: 999;
            }

            .toggle {
                display: block;
            }

            .menu.active {
                display: flex;
                height: auto;
                right: 20px;
                top: 60px;
            }

            .log-marquee {
                flex-direction: column;
                align-items: center;
            }

            .col-md-4,
            .col-md-5,
            .col-md-6,
            .col-md-7,
            .col-md-8 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .footer {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .footer .left-box {
                flex-direction: column;
                gap: 10px;
            }

            .footer .right-box {
                text-align: center;
            }

            .footer .right-box .social {
                justify-content: center;
            }
        }


        /* store page */

         .product-card {
            position: relative;
        }

        .product-card .product-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--secondary-color);
            color: rgb(255, 255, 255);
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            z-index: 3;
        }

        .product-card .product-img {
            position: relative;
            width: 100%;
            aspect-ratio: 1/1;
            padding: 0;
            overflow: hidden;
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .product-card .img-top {
            position: relative;
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: contain;
            z-index: 2;
        }

        .product-card .img-bg {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            filter: blur(8px);
            z-index: 1;
            transition: all 0.3s ease;
        }

        .product-card:hover .img-bg {
            filter: blur(12px) brightness(0.8);
            transform: scale(1.2);
        }

        .name-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 5px 0;
        }

        .name-price h5 {
            font-size: 18px;
            flex: 1;
            margin: 0;
        }

        .name-price p {
            font-size: 18px;
            margin: 0;
            font-weight: bold;
        }

        .product-card .btn-primary {
            width: 100%;
            text-align: center;
            margin: 0;
        }

        .product-card .product-radio {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 10px 0;
        }

        .product-card .product-radio input[type="radio"] {
            display: none;
        }

        .product-card button{
            border: none;
        }

        .product-card .product-radio label {
            padding: 5px 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }

        .product-card .product-radio input[type="radio"]:checked+label {
            background-color: #007bff;
            color: white;
            border-color: #007bff;
        }

        .product-card .product-radio label:hover {
            /* background-color: #0056b3; */
            /* color: white; */
            /* border-color: #0056b3; */
        }

        .product-card .product-radio input[type="radio"]:disabled+label {
            /* background-color: #e0e0e0; */
            color: #616161ff;
            border-color: #a6a6a6ff;
            cursor: not-allowed;
        }