
/* Begin Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img { display: block; }
/* End Reset */ 

 /* --- Sharekhan Inspired White-Dominant Color Tokens --- */
        :root {
            --sk-white: #FFFFFF;
            --sk-orange: #F15A31;
             --sk-orange:#f8c301;/*yellow*/
            --sk-orange-hover: #D44720;
            --sk-dark: #1A1D24;
            --sk-gray-light: #F8F9FA;
            --sk-gray-border: #E9ECEF;
            --sk-text-muted: #5A6270;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* --- Page Reset Rules --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--sk-white);
            color: var(--sk-dark);
            line-height: 1.6;
           
        }
        h1{
            font-size:clamp(1.5rem,5vw+1rem,3.5rem);
        }
        /* --- Prominent White Header Bar --- */
        .header-nav {
            background-color: var(--sk-white);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 5%;
            border-bottom: 1px solid var(--sk-gray-border);
            position: sticky;
            padding: 1rem 2rem;
            top: 0;
            z-index: 1000;
        }

        /* White Theme Text Logo Styling */
        .logo-text {
            color: var(--sk-dark);
            font-size: 24px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
        }

            .logo-text span {
                color: var(--sk-orange);
            }

        /* Minimalist Horizontal Nav Tags */
        .menu-tags {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .tag-item a {
            color: var(--sk-dark);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            padding: 8px 0;
            position: relative;
            transition: color 0.2s ease;
        }

            .tag-item a:hover {
                color: var(--sk-orange);
            }

            /* Subtle Orange accent underline on tag hover */
            .tag-item a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background-color: var(--sk-orange);
                transition: width 0.2s ease;
            }

            .tag-item a:hover::after {
                width: 100%;
            }

        /* Action Controls Layout */
        .auth-actions {
            display: flex;
            gap: 12px;
        }

        .btn {
            font-family: var(--font-main);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            padding: 10px 24px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            border: none;
        }

        /* Deep Charcoal Outline for Login */
        .btn-login {
            background-color: transparent;
            color: var(--sk-dark);
            border: 1px solid var(--sk-dark);
        }

            .btn-login:hover {
                background-color: var(--sk-dark);
                color: var(--sk-white);
            }

        /* Signature Orange for Register Action */
        .btn-register {
            background-color: var(--sk-orange);
            color: var(--sk-dark);
        }
         .btn-register-black {
            background-color: var(--sk-orange);
            color: var(--sk-dark);
        }

            .btn-register:hover {
                background-color: var(--sk-orange-hover);
            }

        /* --- Clean Light Hero Section --- */
        .hero-banner {
            background-color: var(--sk-gray-light);
            background-image: radial-gradient(var(--sk-gray-border) 1px, transparent 0);
            background-size: 24px 24px; /* Subtle high-end grid pattern */
            padding: 140px 5% 160px 5%;
            text-align: center;
            border-bottom: 1px solid var(--sk-gray-border);
        }
        
        .hero-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 48px;
            color: var(--sk-dark);
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

            .hero-title span {
                color: var(--sk-orange);
            }

        .hero-subtitle {
            font-size: 19px;
            color: var(--sk-text-muted);
            margin-bottom: 35px;
        }
        /* ==========================================
           LAYER 3: BOTTOM CATEGORY STRIP (Orange)
           ========================================== */
        .bottom-layer {
            background-color:white;/*#f8c301;/*#ff6600; #e5af63;/* #e2ac5b;/* #ee9643;/* #ee7c11; /* Primary Corporate Orange Strip */
            /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);*/
            position: sticky; /* Locks the primary interface action tier */
            top: 0;
            z-index: 10;
        }

        .bottom-flex-links {
            display: flex;
            list-style: none;
            width: 100%;
        }

        .bottom-item {
            flex: 1; /* Perfectly distributes 5 categories across width */
            text-align: center;
        }

        .bottom-link {
            display: block;
            padding: 12px 10px;
            color: black;/*#ffffff; /* High visibility crisp white layout contrast */
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            transition: background-color 0.2s ease;
        }

            .bottom-link:hover {
                background-color:var(--sk-orange);/* #d66a09; /* Deep nested orange on element select */
            }

            /* nav menu nav item*/

            .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 100;
        }

            .menu-toggle span {
                height: 3px;
                width: 25px;
                background-color: #333;
                margin: 4px 0;
                transition: 0.3s;
                border-radius: 2px;
            }

        /* Main Navigation Desktop */
        .nav-menu {
            margin-top:6px;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-item {
            position: relative;
            margin: 0 15px;

        }

        .nav-link {
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.3px;
    
            position: relative;
    
            color: #333333;
            font-size: 15px;
            font-weight: 600;
            padding: 10px 0;
            display: block;
            transition: color 0.3s;
        }

            .nav-link-home:hover, .nav-link-home.active {
                color: #f8c301;/*#ff6600;*/            }

        /* Responsive Adapters768 */
        @media (max-width: 900px) {
            .header-nav {
                flex-direction: column;
                /*gap: 20px;*/
                padding: 10px;
                     
              
                left: 0;
               width:100%;
            }

            .menu-tags {
                gap: 25px;
                flex:none;
            }

            .hero-title {
                font-size: 34px;
            }
                  .bottom-flex-links {
                width: 100%;
                flex-direction: column;
                text-align: center;
                gap: 2px;
            }
                  /*.hamburger { display: block; }*/
       
       
           

           h1{
            font-size:clamp(1.4rem,5vw+1rem,3.5rem);
        }
                       .bottom-item {
                flex: none;
            }

             .bottom-link {
                padding: 10px;
            }
                 /* Turn Nav into a Full-Width Mobile Slide-down Panel */
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #ffffff;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
                padding: 10px 0;
                z-index: 99;
                border-top: 1px solid #eee;
            }

                /* Interactive active state via JS toggling class */
                .nav-menu.active {
                    display: flex;
                }

            .nav-item {
                width: 100%;
                margin: 0;
            }
             .nav-item a { display: block; padding: 1.5rem; }
            .nav-link {
                padding: 12px 5%;
                border-bottom: 1px solid #f0f0f0;
            }
                        /* Smooth hamburger animation transforms */
            .menu-toggle.open span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .menu-toggle.open span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.open span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
              .menu-toggle {
                display: flex; /* Show hamburger button */
                order: 1;
            }

        }

