
        :root {
            --gseo-primary: #0c4a6e; /* Dark Blue */
            --gseo-primary-dark: #075985; /* Darker Blue */
            --gseo-secondary: #064e3b; /* Dark Green */
            --gseo-secondary-dark: #064e3b; /* Darker Green */
            --gseo-dark: #1e293b;
            --gseo-light: #f8fafc;
            --gseo-gray: #64748b;
            --gseo-border: #e2e8f0;
            --gseo-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --gseo-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --gseo-gradient: linear-gradient(135deg, var(--gseo-primary) 0%, var(--gseo-secondary) 100%);
            --gseo-navbar-bg: linear-gradient(135deg, rgba(12, 74, 110, 0.15) 0%, rgba(6, 78, 59, 0.15) 100%);
            --gseo-second-navbar-bg: linear-gradient(135deg, rgba(12, 74, 110, 0.08) 0%, rgba(6, 78, 59, 0.08) 100%);
            --gseo-footer-bg: linear-gradient(135deg, var(--gseo-primary) 0%, var(--gseo-secondary) 100%);
            --gseo-accent: #fbbf24; /* Amber for accents */
            
            /* Hover effect variables */
            --gseo-primary-hover-bg: rgba(12, 74, 110, 0.1);
            --gseo-primary-hover-text: var(--gseo-primary);
            --gseo-secondary-hover-bg: rgba(6, 78, 59, 0.08);
            --gseo-accent-hover-bg: var(--gseo-accent);
            --gseo-accent-hover-text: white;
            --gseo-accent-hover-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
            --gseo-primary-hover-shadow: rgba(12, 74, 110, 0.15);
            --gseo-primary-button-shadow: rgba(12, 74, 110, 0.5);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--gseo-light);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Main content area */
        .main-content {
            flex: 1;
        }
        
        /* Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Custom Navigation Bar */
        .gseo-navbar {
            background: var(--gseo-navbar-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.6rem 0;
            box-shadow: var(--gseo-shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .gseo-navbar.scrolled {
            padding: 0.4rem 0;
            box-shadow: var(--gseo-shadow-lg);
            background: rgba(255, 255, 255, 0.95);
        }
        
        /* Navbar Container */
        .gseo-navbar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        
                /* Professional Login Button - Matching CTA style */
        .gseo-login-button {
            background: var(--gseo-gradient);
            color: #ffffff;
            padding: 10px 22px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 2px 4px rgba(12, 74, 110, 0.2);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .gseo-login-button i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        
        .gseo-login-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }
        
        .gseo-login-button:hover::before {
            left: 100%;
        }
        
        .gseo-login-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: #ffffff;
        }
        
        .gseo-login-button:hover i {
            transform: translateY(-3px);
        }   
        /*button end */
        
        /* Logo Styles */
        .gseo-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--gseo-primary);
            font-weight: 700;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            animation: slideInLeft 0.6s ease-out;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .gseo-logo i {
            font-size: 1.7rem;
            margin-right: 8px;
            color: var(--gseo-primary);
            transition: all 0.3s ease;
        }
        
        .gseo-logo:hover {
            transform: translateY(-2px);
        }
        
        .gseo-logo:hover i {
            transform: rotate(20deg) scale(1.2);
            color: var(--gseo-primary-dark);
        }
        
        /* Menu Toggle - Updated to match second navbar style */
        .gseo-menu-toggle {
            display: none;
            border: none;
            background: var(--gseo-primary-hover-bg);
            border-radius: 8px;
            padding: 6px 10px;
            color: var(--gseo-primary);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .gseo-menu-toggle:hover {
            background: var(--gseo-primary-hover-bg);
        }
        
        .gseo-menu-toggle:focus {
            outline: none;
        }
        
        .gseo-menu-toggle i {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }
        
        .gseo-menu-toggle.active i {
            transform: rotate(90deg);
        }
        
        /* Navigation Menu */
        .gseo-nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            animation: fadeIn 0.8s ease-out;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gseo-nav-item {
            margin: 0 3px;
            position: relative;
            overflow: hidden;
        }
        
        .gseo-nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--gseo-primary-hover-bg), transparent);
            transition: left 0.5s ease;
        }
        
        .gseo-nav-item:hover::before {
            left: 100%;
        }
        
        .gseo-nav-link {
            display: block;
            padding: 8px 12px;
            color: var(--gseo-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }
        
        .gseo-nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gseo-primary);
            transition: width 0.3s ease;
        }
        
        .gseo-nav-link:hover {
            background: var(--gseo-primary-hover-bg);
            color: var(--gseo-primary-hover-text);
            transform: translateY(-1px);
        }
        
        .gseo-nav-link:hover::before {
            width: 100%;
        }
        
        .gseo-nav-link.active {
            background: var(--gseo-primary-hover-bg);
            color: var(--gseo-primary-hover-text);
            font-weight: 600;
        }
        
        .gseo-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gseo-primary);
            border-radius: 2px 2px 0 0;
            animation: slideIn 0.3s ease;
        }
        
        @keyframes slideIn {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }
        
        /* User Menu */
        .gseo-user-menu {
            margin-left: auto;
            position: relative;
            animation: slideInRight 0.6s ease-out;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .gseo-user-toggle {
            display: flex;
            align-items: center;
            background: var(--gseo-primary-hover-bg);
            border: 2px solid transparent;
            border-radius: 50px;
            padding: 6px 14px;
            color: var(--gseo-dark);
            font-weight: 500;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .gseo-user-toggle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--gseo-primary-hover-bg);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        
        .gseo-user-toggle:hover::before {
            width: 100%;
            height: 100%;
        }
        
        .gseo-user-toggle:hover {
            background: var(--gseo-primary-hover-bg);
            border-color: var(--gseo-primary);
            color: var(--gseo-primary-hover-text);
            transform: translateY(-1px);
        }
        
        .gseo-user-toggle i {
            margin-right: 6px;
            font-size: 14px;
            transition: transform 0.3s ease;
            color: var(--gseo-primary);
        }
        
        .gseo-user-toggle:hover i {
            transform: rotate(360deg);
        }
        
        /* User Dropdown */
        .gseo-user-dropdown {
            position: absolute;
            right: 0;
            top: calc(100% + 10px);
            background: white;
            border-radius: 12px;
            box-shadow: var(--gseo-shadow-lg);
            min-width: 200px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px) scale(0.95);
            transition: all 0.3s ease;
            z-index: 1001;
        }
        
        .gseo-user-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        
        .gseo-dropdown-item {
            display: block;
            padding: 12px 18px;
            color: var(--gseo-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--gseo-border);
            position: relative;
            overflow: hidden;
            font-size: 0.9rem;
        }
        
        .gseo-dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: var(--gseo-primary);
            transition: width 0.3s ease;
            z-index: -1;
        }
        
        .gseo-dropdown-item:hover::before {
            width: 100%;
        }
        
        .gseo-dropdown-item:hover {
            color: white;
            padding-left: 25px;
        }
        
        .gseo-dropdown-item:last-child {
            border-bottom: none;
        }
        
        .gseo-dropdown-divider {
            height: 1px;
            background: var(--gseo-border);
            margin: 5px 0;
        }
        
        /* Second Navigation Bar */
        .gseo-second-navbar {
            background: var(--gseo-second-navbar-bg);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.4rem 0;
            position: sticky;
            top: 60px;
            z-index: 999;
            transition: all 0.3s ease;
        }
        
        .gseo-second-navbar.scrolled {
            top: 56px;
        }
        
        /* Second Navbar Container */
        .gseo-second-navbar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        /* Second Menu Toggle */
        .gseo-second-menu-toggle {
            display: none;
            border: none;
            background: var(--gseo-primary-hover-bg);
            border-radius: 8px;
            padding: 6px 10px;
            color: var(--gseo-primary);
            cursor: pointer;
            transition: all 0.3s ease;
            margin-right: 10px;
        }
        
        .gseo-second-menu-toggle:hover {
            background: var(--gseo-primary-hover-bg);
        }
        
        .gseo-second-menu-toggle i {
            font-size: 1rem;
        }
        
        /* Second Navigation Menu */
        .gseo-second-nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            justify-content: center;
            animation: fadeIn 1s ease-out;
        }
        
        .gseo-second-nav-item {
            margin: 0 8px;
            position: relative;
        }
        
        .gseo-second-nav-link {
            display: flex;
            align-items: center;
            padding: 6px 12px;
            color: var(--gseo-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.8rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .gseo-second-nav-link i {
            margin-right: 5px;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }
        
        .gseo-second-nav-link:hover {
            background: var(--gseo-secondary-hover-bg);
            color: var(--gseo-primary-hover-text);
            transform: translateY(-1px);
        }
        
        .gseo-second-nav-link:hover i {
            transform: scale(1.2);
        }
        
        .gseo-second-nav-link.active {
            background: var(--gseo-primary-hover-bg);
            color: var(--gseo-primary-hover-text);
            font-weight: 600;
        }
        
        /* Second Navbar Dropdown */
        .gseo-second-nav-item.dropdown {
            position: relative;
        }
        
        .gseo-second-nav-link.dropdown-toggle::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 5px;
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }
        
        .gseo-second-nav-item.dropdown.show .gseo-second-nav-link.dropdown-toggle::after {
            transform: rotate(180deg);
        }
        
        .gseo-second-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 8px;
            box-shadow: var(--gseo-shadow-lg);
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .gseo-second-nav-item.dropdown.show .gseo-second-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }
        
        .gseo-second-dropdown-item {
            display: block;
            padding: 10px 15px;
            color: var(--gseo-dark);
            text-decoration: none;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--gseo-border);
        }
        
        .gseo-second-dropdown-item:last-child {
            border-bottom: none;
        }
        
        .gseo-second-dropdown-item:hover {
            background: var(--gseo-light);
            color: var(--gseo-primary-hover-text);
            padding-left: 20px;
        }
        
        /* Badge */
        .badge {
            display: inline-block;
            padding: 0.25em 0.4em;
            font-size: 75%;
            font-weight: 700;
            line-height: 1;
            text-align: center;
            white-space: nowrap;
            vertical-align: baseline;
            border-radius: 0.25rem;
        }
        
        .badge-danger {
            color: #fff;
            background-color: #dc3545;
        }
        
        .badge-warning {
            color: #000;
            background-color: #ffc107;
        }
        
        .ms-1 {
            margin-left: 0.25rem !important;
        }
        
        /* Search Section */
        .gseo-search-section {
            padding: 40px 0;
            background: var(--gseo-second-navbar-bg);
            border-bottom: 1px solid var(--gseo-border);
            animation: slideUp 0.8s ease-out;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gseo-search-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .gseo-search-form {
            display: flex;
            box-shadow: var(--gseo-shadow-lg);
            border-radius: 50px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .gseo-search-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--gseo-primary-hover-bg), transparent);
            transition: left 0.5s ease;
        }
        
        .gseo-search-form:hover::before {
            left: 100%;
        }
        
        .gseo-search-form:focus-within {
            box-shadow: 0 10px 25px var(--gseo-primary-hover-shadow);
            transform: translateY(-2px);
        }
        
        .gseo-search-input {
            flex: 1;
            border: none;
            padding: 12px 15px;
            font-size: 15px;
            font-weight: 500;
            color: var(--gseo-dark);
            background: white;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .gseo-search-input::placeholder {
            color: var(--gseo-gray);
            transition: all 0.3s ease;
        }
        
        .gseo-search-input:focus::placeholder {
            opacity: 0.5;
            transform: translateX(10px);
        }
        
        .gseo-category-select {
            border: none;
            border-left: 1px solid var(--gseo-border);
            padding: 0 15px;
            background: white;
            color: var(--gseo-dark);
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            outline: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .gseo-category-select:hover {
            background: var(--gseo-light);
        }
        
        .gseo-search-button {
            background: var(--gseo-gradient);
            border: none;
            color: white;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            margin: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .gseo-search-button i {
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .gseo-search-button:hover {
            background: linear-gradient(135deg, var(--gseo-primary) 0%, var(--gseo-primary-dark) 100%);
            transform: scale(1.1);
            box-shadow: 0 0 20px var(--gseo-primary-button-shadow);
        }
        
        .gseo-search-button:hover i {
            animation: searchIconPulse 0.6s ease-in-out infinite;
            color: white;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }
        
        @keyframes searchIconPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.3);
            }
        }
        
        .gseo-search-button:active {
            transform: scale(0.95);
        }
        
        /* Footer Styles */
        .gseo-footer {
            background: var(--gseo-footer-bg);
            color: white;
            padding: 60px 0 20px;
            margin-top: auto;
            position: relative;
            overflow: hidden;
        }
        
        .gseo-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gseo-accent);
        }
        
        .gseo-footer-content {
            position: relative;
            z-index: 1;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -15px;
            margin-left: -15px;
        }
        
        [class*="col-"] {
            position: relative;
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
        }
        
        @media (min-width: 768px) {
            .col-md-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }
        
        @media (min-width: 992px) {
            .col-lg-2 {
                flex: 0 0 16.666667%;
                max-width: 16.666667%;
            }
            .col-lg-3 {
                flex: 0 0 25%;
                max-width: 25%;
            }
            .col-lg-4 {
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
            }
        }
        
        .gseo-footer-widget {
            margin-bottom: 40px;
        }
        
        .gseo-footer-widget h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .gseo-footer-widget h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gseo-accent);
        }
        
        .gseo-footer-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .gseo-footer-logo i {
            font-size: 2rem;
            margin-right: 10px;
            color: var(--gseo-accent);
        }
        
        .gseo-footer-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .gseo-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .gseo-footer-links li {
            margin-bottom: 10px;
        }
        
        .gseo-footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .gseo-footer-links a:hover {
            color: var(--gseo-accent-hover-bg);
            transform: translateX(5px);
        }
        
        .gseo-footer-links a i {
            margin-right: 8px;
            font-size: 0.9rem;
        }
        
        .gseo-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .gseo-contact-item i {
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--gseo-accent);
            font-size: 0.9rem;
        }
        
        .gseo-social-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .gseo-social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .gseo-social-link:hover {
            background: var(--gseo-accent-hover-bg);
            color: var(--gseo-accent-hover-text);
            transform: translateY(-3px);
            box-shadow: var(--gseo-accent-hover-shadow);
        }
        
        .gseo-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        .gseo-footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 10px;
        }
        
        .gseo-footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .gseo-footer-bottom-links a:hover {
            color: var(--gseo-accent-hover-bg);
        }
        
        /* Loading Animation */
        .gseo-loading {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 9999;
        }
        
        .gseo-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(12, 74, 110, 0.2);
            border-top-color: var(--gseo-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .gseo-nav-link {
                padding: 8px 10px;
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 992px) {
            .gseo-menu-toggle {
                display: block;
            }
            
            .gseo-nav-menu {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--gseo-shadow-lg);
                z-index: 998;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
                border-radius: 0 0 12px 12px;
            }
            
            .gseo-nav-menu.active {
                display: flex;
            }
            
            .gseo-nav-item {
                margin: 0 0 10px 0;
                width: 100%;
            }
            
            .gseo-nav-link {
                justify-content: flex-start;
                padding: 12px 15px;
                border-radius: 8px;
                font-size: 0.9rem;
            }
            
            .gseo-nav-item:nth-child(1) .gseo-nav-link { animation-delay: 0.1s; }
            .gseo-nav-item:nth-child(2) .gseo-nav-link { animation-delay: 0.2s; }
            .gseo-nav-item:nth-child(3) .gseo-nav-link { animation-delay: 0.3s; }
            .gseo-nav-item:nth-child(4) .gseo-nav-link { animation-delay: 0.4s; }
            .gseo-nav-item:nth-child(5) .gseo-nav-link { animation-delay: 0.5s; }
            .gseo-nav-item:nth-child(6) .gseo-nav-link { animation-delay: 0.6s; }
            .gseo-nav-item:nth-child(7) .gseo-nav-link { animation-delay: 0.7s; }
            
            .gseo-user-menu {
                margin-left: 0;
                margin-top: 10px;
                width: 100%;
            }
            
            .gseo-user-toggle {
                width: 100%;
                justify-content: flex-start;
                font-size: 0.9rem;
                padding: 12px 15px;
                border-radius: 8px;
            }
            
            .gseo-user-dropdown {
                position: static;
                margin-top: 10px;
                box-shadow: none;
                border: 1px solid var(--gseo-border);
                animation: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .gseo-user-dropdown.show {
                max-height: 300px;
            }
            
            .gseo-navbar.scrolled + .gseo-nav-menu.active {
                top: 56px;
                max-height: calc(100vh - 56px);
            }
        }
        
        @media (max-width: 768px) {
            /* Second Navbar Mobile Responsive */
            .gseo-second-menu-toggle {
                display: block;
            }
            
            .gseo-second-nav-menu {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--gseo-shadow-lg);
                z-index: 997;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
                border-radius: 0 0 12px 12px;
            }
            
            .gseo-second-nav-menu.active {
                display: flex;
            }
            
            .gseo-second-nav-item {
                margin: 0 0 10px 0;
                width: 100%;
            }
            
            .gseo-second-nav-link {
                justify-content: flex-start;
                padding: 12px 15px;
                border-radius: 8px;
                font-size: 0.9rem;
            }
            
            .gseo-second-nav-item.dropdown {
                width: 100%;
            }
            
            .gseo-second-dropdown {
                position: static;
                box-shadow: none;
                border: none;
                border-left: 3px solid var(--gseo-primary);
                margin-left: 20px;
                margin-top: 5px;
                opacity: 1;
                visibility: visible;
                transform: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .gseo-second-nav-item.dropdown.show .gseo-second-dropdown {
                max-height: 200px;
            }
            
            .gseo-second-navbar.scrolled + .gseo-second-nav-menu.active {
                top: 56px;
                max-height: calc(100vh - 56px);
            }
            
            /* Adjust first navbar menu position when second navbar is present */
            .gseo-nav-menu.active {
                z-index: 998;
            }
        }
        
        @media (max-width: 768px) {
            .gseo-search-form {
                flex-direction: column;
                border-radius: 15px;
            }
            
            .gseo-search-input {
                border-radius: 15px 15px 0 0;
                padding: 12px 15px;
                font-size: 14px;
            }
            
            .gseo-category-select {
                border: none;
                border-top: 1px solid var(--gseo-border);
                border-radius: 0;
                padding: 12px 15px;
                font-size: 0.85rem;
            }
            
            .gseo-search-button {
                margin: 12px;
                width: calc(100% - 24px);
                border-radius: 10px;
                height: 45px;
            }
            
            .gseo-logo {
                font-size: 1.1rem;
            }
            
            .gseo-logo i {
                font-size: 1.4rem;
            }
            
            /* Footer responsive */
            .gseo-footer {
                padding: 40px 0 20px;
            }
            
            .gseo-footer-widget {
                margin-bottom: 30px;
            }
            
            .gseo-footer-widget h3 {
                font-size: 1.1rem;
            }
            
            .gseo-footer-logo {
                font-size: 1.3rem;
            }
            
            .gseo-footer-logo i {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .gseo-navbar {
                padding: 0.4rem 0;
            }
            
            .gseo-search-section {
                padding: 25px 0;
            }
            
            /* Shorten navigation text on small screens */
            .gseo-nav-item:nth-child(1) .gseo-nav-link::after { content: "Home"; }
            .gseo-nav-item:nth-child(2) .gseo-nav-link::after { content: "Find Sites"; }
            .gseo-nav-item:nth-child(3) .gseo-nav-link::after { content: "Submit"; }
            .gseo-nav-item:nth-child(4) .gseo-nav-link::after { content: "My Posts"; }
            .gseo-nav-item:nth-child(5) .gseo-nav-link::after { content: "Pricing"; }
            .gseo-nav-item:nth-child(6) .gseo-nav-link::after { content: "Blog"; }
            .gseo-nav-item:nth-child(7) .gseo-nav-link::after { content: "Contact"; }
            
            .gseo-nav-link {
                position: relative;
                font-size: 0;
            }
            
            .gseo-nav-link::after {
                content: attr(data-text);
                font-size: 0.8rem;
                position: absolute;
                left: 15px;
                top: 50%;
                transform: translateY(-50%);
            }
            
            /* Footer responsive */
            .gseo-footer {
                padding: 30px 0 15px;
            }
            
            .gseo-footer-widget {
                margin-bottom: 25px;
                text-align: center;
            }
            
            .gseo-footer-widget h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .gseo-contact-item {
                justify-content: center;
            }
            
            .gseo-social-links {
                justify-content: center;
            }
            
            .gseo-footer-bottom-links {
                flex-direction: column;
                gap: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .gseo-nav-link {
                padding: 8px 10px;
            }
            
            .gseo-nav-link::after {
                left: 10px;
                font-size: 0.75rem;
            }
            
            .gseo-logo {
                font-size: 1rem;
            }
            
            .gseo-logo i {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 380px) {
            .container {
                padding: 0 10px;
            }
            
            .gseo-nav-link {
                padding: 6px 8px;
            }
            
            .gseo-nav-link::after {
                left: 8px;
                font-size: 0.7rem;
            }
            
            .gseo-user-toggle {
                padding: 5px 10px;
                font-size: 0.8rem;
            }
            
            .gseo-user-toggle i {
                font-size: 12px;
            }
        }