     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
           
        }

      

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 80px;
             font-family: Arial, sans-serif;
        }

        .logo img {
            height: 75px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .tagline {
            font-size: 10px;
            color: #555;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-top: -8px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin: 0 20px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #e42626;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: #e42626;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }

        .social-icons {
            display: flex;
            align-items: center;
            border-left: 1px solid #eee;
            padding-left: 20px;
            margin-left: 10px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            margin-left: 10px;
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .social-icons a:hover {
            transform: scale(1.1);
        }

        .whatsapp { background-color: #25D366; }
        .instagram { background-color: #E1306C; }
        .youtube { background-color: #FF0000; }
        .linkedin { background-color: #0077B5; }
        .facebook { background-color: #1877F2; }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 24px;
            color: #333;
        }

        /* Responsive Styles */
        @media screen and (max-width: 1024px) {
            .nav-menu {
                margin-right: -10px;
            }
            
            .nav-menu li {
                margin: 0 10px;
            }
            
            .nav-menu a {
                font-size: 14px;
            }

            
        }

        @media screen and (max-width: 768px) {
            .header {
                padding: 0 4%;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.9);
                width: 60%;
                height: 100vh;
                text-align: left;
                transition: 0.3s;
                padding: 80px 0 20px 0;
                z-index: 999;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .nav-menu a {
                color: white;
                display: block;
                padding: 20px 30px;
                font-size: 16px;
            }
            
            .nav-menu a:hover {
                background-color: rgba(255, 255, 255, 0.05);
            }
            
            .hamburger {
                display: block;
                margin-left: 15px;
                z-index: 1000;
            }
            
            /* Close button styling */
            .hamburger .fa-times {
                color: white;
            }
            
            /* Social icons in mobile menu */
            .mobile-social-container {
                display: flex;
                justify-content: center;
                padding: 30px;
                margin-top: 20px;
            }
            
            .mobile-social-icons {
                display: flex;
                justify-content: space-between;
                width: 80%;
            }
            
            .mobile-social-icons a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                background-color: #FFC55C;
                color: black;
                border-radius: 0;
                font-size: 18px;
            }
            
            /* Hide desktop social icons on mobile */
            .social-icons {
                display: none;
            }
        }

        @media screen and (max-width: 480px) {
            .header {
                padding: 0 3%;
            }
            
            .logo img {
                height: 60px;
            }
            
            .social-icons {
                display: none;
            }
        }