        /* Genel Stil */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            align-items: center;


        }

        /* Menü Çubuğu */
        .navbar {
            position: fixed;
            top: 0;
            right: 0;
            background-color: transparent;
            color: black;
            padding: 5px 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            width: 80%;
            max-width: 825px;
            box-sizing: border-box;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 0 0 7px 7px;
            transition: 0.4s ease;
        }
        .navbar ul {
            list-style: none;
            display: flex;
            gap: 10px;
            justify-content: center;
            padding: 13px 0;
            margin: 0;
        }

        .navbar ul li a{
            color: black;
            text-decoration: none;
            font-size: 22px;
            font-weight: 700;
            padding: 10px 35px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .home {
            position: relative;
            top: 0.5px;
            right: 7px;
        }
        .inventory {
            position: relative;
            top: 0.5px;
            right: 7px;
        }
        .about {
            position: relative;
            top: 0.5px;
            right: 7px;
        }
        .contact {
            position: relative;
            top: 0.5px;
            right: 7px;  
        }
        .magnet {
            position: relative;
            top: 2px;
            right: 7px;
        }
        .stok {
            position: relative;
            top: 0.5px;
            right: 7px;
        }

        /* Sticky Menu*/

        .navbar.sticky {
            background-color: #929292;
            opacity: 0.96;
            transition: 0.4s ease;
            max-width: 850px;
        }
        .navbar.sticky ul li a {
            color: white;
        }
        .navbar.sticky .sub-menu li a{
            color: white;
        }
        .sticky .sub-menu {
            display: none; /* Başlangıçta gizli */
            list-style: none;
            position: absolute;
            background-color: #929292;
            text-align: center;
            padding: 10px 0;
            margin-top: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        .sticky .home {
            content: url("../int-images/lighthome.png");
        }
        .sticky .inventory {
            content: url("../int-images/lightinventory.png");
        }
        .sticky .about {
            content: url("../int-images/lightabout.png");
        }
        .sticky .contact {
            content: url("../int-images/lightcontact.png");
        }
        .sticky .magnet {
            content: url("../int-images/lightmagnet.png");
        }
        .sticky .stok {
            content: url("../int-images/lightstok.png");
        }

        /* Sub Menü */
        
        .navbar ul li .sub-menu {
            display: none; 
            list-style: none;
            position: absolute;
            background-color: #929292;
            text-align: center;
            padding: 10px 0;
            border-radius: 7px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .navbar ul li .sub-menu li a {
            padding: 10px 15px;
            display: block;
            color: black;
            position: relative;
            text-decoration: none;
        }

        /* Buton stili */

        #productsButton {
            border: none;
            position: relative;
            top: -3px;
            background: transparent;
            cursor: pointer;
        }

        /* Menu Toggle Button */

        .menu-toggle {
            position: fixed;
            top: 15px;
            right: 35px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1002;
            flex-direction: column;
            gap: 6px;
        }
        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: black;
            transition: all 0.3s ease-in-out;
        }
        .menu-toggle.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Responsive Menu */

        @media (max-width: 1000px) {
            .navbar.sticky .sub-menu {
                margin-top: 0;
                border-radius: 0;
            }
            .navbar ul li .sub-menu {
                display: none;
            }
            .navbar ul li .sub-menu li a {
                padding: 10px 15px;
                display: block;
                color: black;
                top: 50px;
                line-height: 35px;
                position: relative;
                text-decoration: none;
            }
            .navbar ul {
                flex-direction: column;
                gap: 20px;
                align-items: center;
                display: none; 
                padding-top: 20px;
                width: 100%;
                position: absolute;
                top: 0px;
                height: 200px;
                left: 0;
                z-index: 1001;
            }
            .navbar {
                box-shadow: none;
                width: 100%;
                max-width: 1470px;
                background-color: transparent;
            }
            .navbar.sticky {
                background-color: transparent;
            }
            .navbar ul.show {
                display: flex; 
                background-color: #929292;
                opacity: 0.96;
            }
            .menu-toggle {
                display: flex;
            } 
        }
        @media (min-width: 1000px) {
            .menu-toggle {
                display: none;
            }
        }
        @media (max-width: 768px) {
            .navbar ul li a {
                font-size: 19px;
                padding: 10px 15px;
            }
        }

        @media (max-width: 480px) {
            .navbar ul li a {
                font-size: 18px;
                padding: 8px 12px;
            }
        }

        /* Footer */

        footer {
            background-color: black;
            color: white;
            width: 100%;
            padding: 60px 0;
            display: flex;
            justify-content: center;
            margin-top: auto;
        }
        footer div {
            padding: 10px;
            text-align: center;
        }
        footer ul {
            list-style: none;
            padding: 0;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        footer li {
            display: inline-block;
        }
        footer a {
            color: white;
            padding: 0 30px;
            font-weight: 600;
            font-size: 1.19rem;
            opacity: 0.7;
            transition: 0.5s;
        }
        footer a:hover {
            opacity: 1.5;
        }
        .intelisio-logo {
            margin-bottom: 50px;
        }
        .copyright {
            width: 100%;
            text-align: center;
            font-size: 15px;
            color: white;
            padding: 10px 0;
            background-color: black;
        }
        @media (max-width: 768px) {
            footer ul {
                flex-direction: column;
                align-items: center;
                line-height: 2;
            }
            footer li {
                display: block;
            }
        }
