
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }


 /* Top Contact Bar */
        .top-contact-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 8px 0;
            z-index: 1001;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            font-size: 14px;
        }

        .contact-info {
            display: flex;
            gap: 25px;
            color: #4a5568;
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .contact-info i {
            color: #667eea;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 14px;
        }

        .social-links a:hover {
            transform: translateY(-2px) scale(1.1);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        /* Floating Navigation */
        .floating-nav {
            position: fixed;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 12px 30px;
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            max-width: calc(100vw - 40px);
            width: auto;
        }

        .floating-nav.scrolled {
            top: 15px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 30px;
            white-space: nowrap;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .nav-logo img {
            height: 45px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-menu > li {
            position: relative;
            flex-shrink: 0;
        }

        .nav-menu > li > a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .floating-nav.scrolled .nav-menu > li > a {
            color: #2d3748;
        }

        .nav-menu > li > a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: width 0.3s ease;
        }

        .nav-menu > li > a:hover::before,
        .nav-menu > li.active > a::before {
            width: 100%;
        }

        .nav-menu > li > a:hover {
            color: #667eea;
            transform: translateY(-1px);
        }

        .floating-nav.scrolled .nav-menu > li > a:hover {
            color: #667eea;
        }

        .dropdown-toggle::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
            transition: transform 0.3s ease;
            margin-left: 4px;
        }

        .nav-menu li:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        /* Dropdown Styles */
        .dropdown {
            position: absolute;
            top: calc(100% + 15px);
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            min-width: 220px;
            border-radius: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        .nav-menu li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown li {
            list-style: none;
        }

        .dropdown a {
            display: block;
            padding: 15px 25px;
            color: #4a5568;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            white-space: nowrap;
        }

        .dropdown a:hover {
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            padding-left: 30px;
        }

        .dropdown li:last-child a {
            border-bottom: none;
        }

        /* Auth Buttons */
        .auth-buttons {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .auth-btn {
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn-login {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .floating-nav.scrolled .btn-login {
            color: #667eea;
            border-color: #667eea;
        }

        .btn-login:hover {
            background: #667eea;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            border-color: #667eea;
        }

        .btn-signup {
            background: linear-gradient(45deg, #ff6b6b, #ee5a52);
            color: white;
            border: none;
        }

        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(238, 90, 82, 0.4);
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .mobile-toggle:hover {
            background: rgba(102, 126, 234, 0.1);
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .floating-nav.scrolled .mobile-toggle span {
            background: #4a5568;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Content Area */
        .content-area {
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            color: white;
            text-align: center;
        }

        .content-placeholder h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .content-placeholder p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Auth Modal Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .auth-panel {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 40px;
            border-radius: 25px;
            width: 90%;
            max-width: 420px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
            transform: scale(0.8) translateY(-30px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .popup-overlay.active .auth-panel {
            transform: scale(1) translateY(0);
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 25px;
            background: none;
            border: none;
            font-size: 24px;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.3s;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            transform: rotate(90deg);
        }

        .auth-panel h2 {
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
        }

        .form-group input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(102, 126, 234, 0.2);
            border-radius: 15px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.8);
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            background: white;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
        }

        .remember-me input[type="checkbox"] {
            width: auto;
            margin: 0;
        }

        .auth-submit-btn {
            width: 100%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 16px;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .auth-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .auth-links {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            font-size: 14px;
        }

        .auth-links a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s;
        }

        .auth-links a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        .switch-auth {
            text-align: center;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .switch-auth a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }

        .switch-auth a:hover {
            text-decoration: underline;
        }

        .signup-panel .auth-submit-btn {
            background: linear-gradient(45deg, #ff6b6b, #ee5a52);
        }

        .signup-panel .auth-submit-btn:hover {
            box-shadow: 0 15px 35px rgba(238, 90, 82, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav-menu {
                gap: 20px;
            }
            
            .nav-container {
                gap: 25px;
            }

            .floating-nav {
                padding: 12px 25px;
            }
        }

        @media (max-width: 1024px) {
            .nav-menu {
                gap: 18px;
            }
            
            .nav-container {
                gap: 20px;
            }

            .nav-menu > li > a {
                font-size: 14px;
            }

            .auth-btn {
                padding: 8px 16px;
                font-size: 13px;
            }

            .floating-nav {
                padding: 10px 20px;
            }
        }

        @media (max-width: 900px) {
            .floating-nav {
                left: 20px;
                right: 20px;
                transform: none;
                border-radius: 25px;
                padding: 15px 25px;
                width: auto;
                max-width: none;
            }

            .floating-nav.scrolled {
                top: 10px;
            }

            .nav-container {
                justify-content: space-between;
                gap: 15px;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 100px;
                left: 20px;
                right: 20px;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 30px 25px;
                border-radius: 25px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
                transform: translateY(-20px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                gap: 0;
                border: 1px solid rgba(255, 255, 255, 0.3);
                max-height: calc(100vh - 140px);
                overflow-y: auto;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-menu > li {
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

            .nav-menu > li:last-of-type {
                border-bottom: none;
            }

            .nav-menu > li > a {
                padding: 18px 0;
                color: #2d3748 !important;
                font-size: 16px;
                justify-content: space-between;
            }

            .nav-menu > li > a:hover {
                color: #667eea !important;
                transform: none;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                margin: 10px 0 0 0;
                background: rgba(102, 126, 234, 0.05);
                border-radius: 15px;
                display: none;
                box-shadow: none;
                border: none;
            }

            .nav-menu li:hover .dropdown,
            .nav-menu li.dropdown-open .dropdown {
                display: block;
            }

            .dropdown a {
                padding: 12px 20px;
                font-size: 14px;
            }

            .auth-buttons {
                margin: 20px 0 0 0;
                justify-content: center;
                width: 100%;
                gap: 15px;
                padding-top: 20px;
                border-top: 1px solid rgba(0, 0, 0, 0.1);
            }

            .auth-btn {
                flex: 1;
                text-align: center;
                padding: 12px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .contact-info {
                gap: 15px;
                font-size: 12px;
            }

            .contact-info span:last-child {
                display: none;
            }

            .content-placeholder h2 {
                font-size: 2rem;
            }

            .auth-panel {
                padding: 30px 25px;
                margin: 20px;
                border-radius: 20px;
            }

            .nav-logo img {
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .top-contact-bar {
                padding: 6px 0;
            }

            .contact-container {
                padding: 0 15px;
            }

            .contact-info {
                gap: 10px;
            }

            .social-links {
                gap: 8px;
            }

            .social-links a {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .floating-nav {
                left: 15px;
                right: 15px;
                padding: 12px 20px;
            }

            .nav-logo img {
                height: 35px;
            }

            .nav-menu {
                left: 15px;
                right: 15px;
                padding: 25px 20px;
                top: 95px;
            }

            .auth-panel {
                padding: 25px 20px;
                margin: 15px;
            }

            .auth-panel h2 {
                font-size: 24px;
            }

            .content-placeholder h2 {
                font-size: 1.5rem;
            }

            .auth-btn {
                padding: 10px 16px;
                font-size: 13px;
            }
        }

        /* Dropdown mobile interaction */
        @media (max-width: 900px) {
            .nav-menu > li.has-dropdown > a {
                cursor: pointer;
            }
        } /* Top Contact Bar */
        .top-contact-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 8px 0;
            z-index: 1001;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            font-size: 14px;
        }

        .contact-info {
            display: flex;
            gap: 25px;
            color: #4a5568;
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .contact-info i {
            color: #667eea;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 14px;
        }

        .social-links a:hover {
            transform: translateY(-2px) scale(1.1);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        /* Floating Navigation */
        .floating-nav {
            position: fixed;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 12px 30px;
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            max-width: calc(100vw - 40px);
            width: auto;
        }

        .floating-nav.scrolled {
            top: 15px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 30px;
            white-space: nowrap;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .nav-logo img {
            height: 45px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-menu > li {
            position: relative;
            flex-shrink: 0;
        }

        .nav-menu > li > a {
            color: rgb(1, 11, 101);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .floating-nav.scrolled .nav-menu > li > a {
            color: #2d3748;
        }

        .nav-menu > li > a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: width 0.3s ease;
        }

        .nav-menu > li > a:hover::before,
        .nav-menu > li.active > a::before {
            width: 100%;
        }

        .nav-menu > li > a:hover {
            color: #667eea;
            transform: translateY(-1px);
        }

        .floating-nav.scrolled .nav-menu > li > a:hover {
            color: #667eea;
        }

        .dropdown-toggle::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
            transition: transform 0.3s ease;
            margin-left: 4px;
        }

        .nav-menu li:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        /* Dropdown Styles */
        .dropdown {
            position: absolute;
            top: calc(100% + 15px);
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            min-width: 220px;
            border-radius: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        .nav-menu li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown li {
            list-style: none;
        }

        .dropdown a {
            display: block;
            padding: 15px 25px;
            color: #4a5568;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            white-space: nowrap;
        }

        .dropdown a:hover {
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            padding-left: 30px;
        }

        .dropdown li:last-child a {
            border-bottom: none;
        }

        /* Auth Buttons */
        .auth-buttons {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .auth-btn {
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn-login {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .floating-nav.scrolled .btn-login {
            color: #667eea;
            border-color: #667eea;
        }

        .btn-login:hover {
            background: #667eea;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            border-color: #667eea;
        }

        .btn-signup {
            background: linear-gradient(45deg, #ff6b6b, #ee5a52);
            color: white;
            border: none;
        }

        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(238, 90, 82, 0.4);
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .mobile-toggle:hover {
            background: rgba(102, 126, 234, 0.1);
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .floating-nav.scrolled .mobile-toggle span {
            background: #4a5568;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Content Area */
        .content-area {
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            color: white;
            text-align: center;
        }

        .content-placeholder h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .content-placeholder p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Auth Modal Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .auth-panel {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 40px;
            border-radius: 25px;
            width: 90%;
            max-width: 420px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
            transform: scale(0.8) translateY(-30px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .popup-overlay.active .auth-panel {
            transform: scale(1) translateY(0);
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 25px;
            background: none;
            border: none;
            font-size: 24px;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.3s;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            transform: rotate(90deg);
        }

        .auth-panel h2 {
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
        }

        .form-group input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(102, 126, 234, 0.2);
            border-radius: 15px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.8);
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            background: white;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
        }

        .remember-me input[type="checkbox"] {
            width: auto;
            margin: 0;
        }

        .auth-submit-btn {
            width: 100%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 16px;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .auth-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .auth-links {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            font-size: 14px;
        }

        .auth-links a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s;
        }

        .auth-links a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        .switch-auth {
            text-align: center;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .switch-auth a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }

        .switch-auth a:hover {
            text-decoration: underline;
        }

        .signup-panel .auth-submit-btn {
            background: linear-gradient(45deg, #ff6b6b, #ee5a52);
        }

        .signup-panel .auth-submit-btn:hover {
            box-shadow: 0 15px 35px rgba(238, 90, 82, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav-menu {
                gap: 20px;
            }
            
            .nav-container {
                gap: 25px;
            }

            .floating-nav {
                padding: 12px 25px;
            }
        }

        @media (max-width: 1024px) {
            .nav-menu {
                gap: 18px;
            }
            
            .nav-container {
                gap: 20px;
            }

            .nav-menu > li > a {
                font-size: 14px;
            }

            .auth-btn {
                padding: 8px 16px;
                font-size: 13px;
            }

            .floating-nav {
                padding: 10px 20px;
            }
        }

        @media (max-width: 900px) {
            .floating-nav {
                left: 20px;
                right: 20px;
                transform: none;
                border-radius: 25px;
                padding: 15px 25px;
                width: auto;
                max-width: none;
            }

            .floating-nav.scrolled {
                top: 10px;
            }

            .nav-container {
                justify-content: space-between;
                gap: 15px;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 100px;
                left: 20px;
                right: 20px;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 30px 25px;
                border-radius: 25px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
                transform: translateY(-20px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                gap: 0;
                border: 1px solid rgba(255, 255, 255, 0.3);
                max-height: calc(100vh - 140px);
                overflow-y: auto;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-menu > li {
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }

            .nav-menu > li:last-of-type {
                border-bottom: none;
            }

            .nav-menu > li > a {
                padding: 18px 0;
                color: #2d3748 !important;
                font-size: 16px;
                justify-content: space-between;
            }

            .nav-menu > li > a:hover {
                color: #667eea !important;
                transform: none;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                margin: 10px 0 0 0;
                background: rgba(102, 126, 234, 0.05);
                border-radius: 15px;
                display: none;
                box-shadow: none;
                border: none;
            }

            .nav-menu li:hover .dropdown,
            .nav-menu li.dropdown-open .dropdown {
                display: block;
            }

            .dropdown a {
                padding: 12px 20px;
                font-size: 14px;
            }

            .auth-buttons {
                margin: 20px 0 0 0;
                justify-content: center;
                width: 100%;
                gap: 15px;
                padding-top: 20px;
                border-top: 1px solid rgba(0, 0, 0, 0.1);
            }

            .auth-btn {
                flex: 1;
                text-align: center;
                padding: 12px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .contact-info {
                gap: 15px;
                font-size: 12px;
            }

            .contact-info span:last-child {
                display: none;
            }

            .content-placeholder h2 {
                font-size: 2rem;
            }

            .auth-panel {
                padding: 30px 25px;
                margin: 20px;
                border-radius: 20px;
            }

            .nav-logo img {
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .top-contact-bar {
                padding: 6px 0;
            }

            .contact-container {
                padding: 0 15px;
            }

            .contact-info {
                gap: 10px;
            }

            .social-links {
                gap: 8px;
            }

            .social-links a {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .floating-nav {
                left: 15px;
                right: 15px;
                padding: 12px 20px;
            }

            .nav-logo img {
                height: 35px;
            }

            .nav-menu {
                left: 15px;
                right: 15px;
                padding: 25px 20px;
                top: 95px;
            }

            .auth-panel {
                padding: 25px 20px;
                margin: 15px;
            }

            .auth-panel h2 {
                font-size: 24px;
            }

            .content-placeholder h2 {
                font-size: 1.5rem;
            }

            .auth-btn {
                padding: 10px 16px;
                font-size: 13px;
            }
        }

        /* Dropdown mobile interaction */
        @media (max-width: 900px) {
            .nav-menu > li.has-dropdown > a {
                cursor: pointer;
            }
        }

        /* navbar style end  */

        

/* Hero Section */
    .hero {
        padding-top: 100px;
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    /* video fills the hero */
    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      width: auto;
      height: 100%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: 0;
    }

    /* ensure content sits above video */
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 0 20px;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      white-space: nowrap;
    }

    .separator {
      font-size: 3rem;
      opacity: 0.7;
    }

    .sector-slider {
      display: inline-block;
      overflow: hidden;
      height: 1.2em; /* one line of text */
      vertical-align: bottom;
    }

    .slider-inner {
      display: flex;
      flex-direction: column;
      transition: transform 0.6s ease;
    }

    .slider-inner > div {
      line-height: 1.2em;
      height: 1.2em;
    }

    .hero-subtitle {
      font-size: 1.4rem;
      margin: 2rem 0;
      opacity: 0.95;
      font-weight: 300;
      letter-spacing: 0.5px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1.25rem 2.5rem;
      background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
      color: white;
      font-weight: 600;
      font-size: 1.1rem;
      border-radius: 50px;
      transition: all 0.4s ease;
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
      background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    }



    /* about section css code  */

.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.about-video {
  flex: 1 1 40%;
}

.about-video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.about-text {
  flex: 1 1 55%;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #b30000;
  border-bottom: 3px solid #b30000;
  display: inline-block;
  padding-bottom: 5px;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-video,
  .about-text {
    flex: 1 1 100%;
  }
}


.products-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #e0eafc, #cfdef3);
  display: flex;
  justify-content: center;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.glass {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 30px;
  color: #333;
}

.products-menu {
  flex: 1;
  min-width: 280px;
}

.products-menu h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #111;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-list li {
  padding: 12px 20px;
  margin-bottom: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border-radius: 12px;
}

.product-list li:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

.product-preview {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  min-width: 300px;
}

.product-preview img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 15px;
  object-fit: contain;
  transition: opacity 0.3s ease-in-out;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to right, #eef1f5, #d9e0ec);
  color: #222;
}

.testimonial-section {
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-heading {
  font-size: 2.2rem;
  font-weight: bold;
  color: #f9a825;
  margin-bottom: 10px;
}

.testimonial-subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease-in-out;
  width: max-content;
}

.testimonial-card {
  min-width: 280px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  color: #222;
  border: 2px solid rgba(0, 0, 0, 0.1); /* clean border stroke */
  flex-shrink: 0;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 2px solid #f9a825;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #333;
  margin: 15px 0;
}

.testimonial-name {
  font-weight: bold;
  color: #f9a825;
  font-size: 1rem;
}

.testimonial-name span {
  display: block;
  font-weight: normal;
  font-size: 0.85rem;
  color: #555;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .testimonial-card {
    min-width: 45vw;
    max-width: 45vw;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 70vw;
    max-width: 70vw;
  }

  .testimonial-img {
    width: 60px;
    height: 60px;
  }

  .testimonial-heading {
    font-size: 1.8rem;
  }

  .testimonial-subtext {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    min-width: 85vw;
    max-width: 85vw;
    padding: 15px;
  }

  .testimonial-img {
    width: 55px;
    height: 55px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .testimonial-name {
    font-size: 0.95rem;
  }
}



/* Running Text Bar */
.running-strip {
  background: #000;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
}
.scrolling-text {
  display: inline-block;
  animation: scrollText 20s linear infinite;
}
.scrolling-text span {
  margin-right: 40px;
}

@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Footer Base */
.modern-footer {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  color: #111;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-block h2.brand {
  font-size: 28px;
  text-transform: uppercase;
  color: #000;
}
.footer-block h2.brand span {
  font-size: 14px;
  display: block;
  color: #444;
}

.footer-block h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #111;
  position: relative;
}
.footer-block h3::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-block p, .footer-block label {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}
.footer-block ul {
  list-style: none;
  padding: 0;
}
.footer-block ul li {
  margin: 6px 0;
}
.footer-block ul li a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-block ul li a:hover {
  color: #000;
  transform: translateX(4px);
}

/* Newsletter */
.footer-block input[type="text"],
.footer-block input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  color: #111;
}
.footer-block button {
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 8px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}
.footer-block button:hover {
  background: #333;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #444;
}
.footer-bottom img {
  vertical-align: middle;
  margin-top: 10px;
}

/* ai section css style  */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f5f5f5;
            padding: 50px 0;
        }

        .footer {
            background-color: #f8f9fa;
            padding: 60px 0 30px 0;
            border-top: 1px solid #e9ecef;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            font-size: 16px;
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #6c757d;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #2c2c2c;
        }

        .newsletter-section {
            background: white;
        }

        .newsletter-section h3 {
            color: #2c2c2c;
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-form input[type="text"],
        .newsletter-form input[type="email"] {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            background-color: #f8f9fa;
        }

        .newsletter-form input[type="text"]:focus,
        .newsletter-form input[type="email"]:focus {
            outline: none;
            border-color: #007bff;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 10px 0;
        }

        .checkbox-container input[type="checkbox"] {
            width: 16px;
            height: 16px;
        }

        .checkbox-container label {
            font-size: 12px;
            color: #6c757d;
        }

        .subscribe-btn {
            background-color: #2c2c2c;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background-color 0.3s ease;
        }

        .subscribe-btn:hover {
            background-color: #1a1a1a;
        }

        .app-section {
            margin-top: 30px;
        }

        .app-section h4 {
            font-size: 14px;
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .app-buttons {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .app-btn {
            height: 40px;
            border-radius: 6px;
            overflow: hidden;
            background-color: #000;
            display: flex;
            align-items: center;
            padding: 8px 12px;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
            min-width: 120px;
        }

        .app-btn:hover {
            transform: translateY(-2px);
        }

        .app-btn-content {
            display: flex;
            flex-direction: column;
            margin-left: 8px;
        }

        .app-btn-small {
            font-size: 8px;
            line-height: 1;
            margin-bottom: 2px;
        }

        .app-btn-large {
            font-size: 12px;
            font-weight: bold;
            line-height: 1;
        }

        .social-section h4 {
            font-size: 14px;
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-links a {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background-color: #2c2c2c;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .social-links a.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        }

        .social-links a.facebook:hover {
            background-color: #1877f2;
        }

        .social-links a.whatsapp:hover {
            background-color: #25d366;
        }

        .social-links a.email:hover {
            background-color: #ea4335;
        }

        .social-links a.phone:hover {
            background-color: #0066cc;
        }

        .footer-bottom {
            border-top: 1px solid #e9ecef;
            padding-top: 25px;
            text-align: center;
        }

        .footer-bottom p {
            color: #6c757d;
            font-size: 13px;
            margin: 0;
        }

        /* Enhanced Mobile Responsiveness */
        @media (max-width: 1024px) {
            .footer-content {
                gap: 40px;
            }
            
            .footer-container {
                padding: 0 15px;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px 0;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
                margin-bottom: 30px;
            }
            
            .footer-section h3 {
                font-size: 14px;
                margin-bottom: 15px;
            }
            
            .footer-section ul li {
                margin-bottom: 8px;
            }
            
            .footer-section ul li a {
                font-size: 13px;
            }
            
            .app-buttons {
                justify-content: flex-start;
            }
            
            .social-links {
                justify-content: flex-start;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 30px 0 15px 0;
            }
            
            .footer-container {
                padding: 0 10px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-bottom: 25px;
            }
            
            .footer-section {
                text-align: left;
            }
            
            .footer-section h3 {
                font-size: 13px;
                margin-bottom: 12px;
            }
            
            .footer-section ul li a {
                font-size: 12px;
            }
            
            .newsletter-form input {
                padding: 10px 12px;
                font-size: 13px;
            }
            
            .subscribe-btn {
                padding: 10px 20px;
                font-size: 12px;
            }
            
            .app-buttons {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .app-btn {
                width: 100%;
                max-width: 180px;
            }
            
            .social-links {
                gap: 12px;
            }
            
            .social-links a {
                width: 35px;
                height: 35px;
            }
            
            .footer-bottom p {
                font-size: 11px;
                padding: 0 10px;
            }
        }

        @media (max-width: 320px) {
            .footer-container {
                padding: 0 5px;
            }
            
            .footer-section h3 {
                font-size: 12px;
            }
            
            .footer-section ul li a {
                font-size: 11px;
            }
            
            .social-links a {
                width: 32px;
                height: 32px;
            }
        }
/* Banner Section */
.banner {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0.8rem;
}

.banner-description {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
    text-align:justify;
}

/* Main Container - Full Viewport Height */
.main-container {
    display: flex;
    height: calc(100vh - 160px);
    max-width: 1600px;
    margin: 1rem auto;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

/* AI Editor Section - Full Height */
.ai-editor-section {
    flex: 1;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.ai-toolbar {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 0.8rem 1.2rem;
    color: white;
    flex-shrink: 0;
}

.toolbar-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-actions {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

/* Smaller Button Sizes */
.ai-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.ai-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ai-btn.primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
}

.ai-btn.primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.ai-btn i {
    font-size: 0.75rem;
}

/* AI Document View - Maximized Height */
.ai-document-view {
    flex: 1;
    padding: 1.5rem;
    background: #f8fafc;
    overflow-y: auto;
    height: calc(100vh - 480px);
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.ai-document {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 100%;
    margin: 0 auto;
    min-height: calc(100vh - 340px);
}

/* A4 Paper Style */
.paper-style {
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.doc-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.doc-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.doc-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.doc-section {
    margin-bottom: 2rem;
}

.doc-section h3 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-left: 4px solid #4f46e5;
    padding-left: 1rem;
}

.doc-section p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #374151;
    font-size: 0.95rem;
}

.doc-section strong {
    color: #1e293b;
    font-weight: 600;
}

/* Editable Content Styling - Increased Height */
.editable-section {
    border: 2px dashed transparent;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: text;
}

.editable-section:hover {
    border-color: #e2e8f0;
    background: #f8fafc;
}

.editable-section:focus-within {
    border-color: #4f46e5;
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.editable-content {
    width: 100%;
    min-height: 160px;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
    resize: vertical;
}

.save-section {
    padding: 0.8rem 1.5rem;
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.save-btn {
    background: linear-gradient(135deg, #2a5298 0%, #0284c7 100%);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.save-status {
    color: #10b981;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* PDF Viewer Section - Full Height */
.pdf-viewer-section {
    flex: 1;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pdf-header {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 0.8rem 1.2rem;
    color: white;
    flex-shrink: 0;
}

.pdf-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.pdf-info {
    font-size: 0.8rem;
    opacity: 0.8;
}

.pdf-content {
    flex: 1;
    padding: 1.5rem;
    background: #f8fafc;
    overflow-y: auto;
    height: calc(100vh - 240px);
}

.document-preview {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    min-height: calc(100vh - 300px);
}

/* Legal Categories */
.legal-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.category-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        flex-direction: column;
        height: auto;
        gap: 1rem;
    }
    
    .ai-editor-section,
    .pdf-viewer-section {
        flex: none;
        height: 70vh;
    }

    .ai-document-view {
        height: calc(70vh - 140px);
    }

    .pdf-content {
        height: calc(70vh - 80px);
    }
    
    .ai-document {
        min-height: calc(70vh - 200px);
    }
    
    .document-preview {
        min-height: calc(70vh - 140px);
    }
}

@media (max-width: 768px) {
    .banner {
        padding: 1rem;
    }
    
    .banner h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .banner-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .main-container {
        padding: 0 0.8rem;
        gap: 0.8rem;
        margin: 0.5rem auto;
    }
    
    .ai-toolbar {
        padding: 0.6rem 0.8rem;
        min-height: auto;
        position: relative;
        z-index: 10;
    }
    
    .pdf-header {
        padding: 0.6rem 1rem;
    }
    
    .ai-actions {
        gap: 0.25rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .ai-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
        min-width: auto;
        flex: none;
        border-radius: 6px;
    }
    
    .ai-btn .btn-text {
        display: none;
    }
    
    .ai-btn i {
        font-size: 0.8rem;
        margin: 0;
    }

    .ai-document,
    .document-preview {
        padding: 1.2rem;
    }

    .ai-editor-section,
    .pdf-viewer-section {
        height: 70vh;
        border-radius: 12px;
    }

    /* Fixed AI Document View Height to Account for Toolbar */
    .ai-document-view {
        height: calc(70vh - 120px);
        padding: 1rem;
        overflow-y: auto;
        margin-top: 0;
    }

    .pdf-content {
        height: calc(70vh - 80px);
        padding: 1rem;
    }
    
    .ai-document {
        min-height: calc(70vh - 180px);
        margin-bottom: 1rem;
    }
    
    .document-preview {
        min-height: calc(70vh - 140px);
    }
    
    .doc-section h3 {
        font-size: 1rem;
        padding-left: 0.8rem;
    }
    
    .doc-title {
        font-size: 1.2rem;
    }
    
    .toolbar-title {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .pdf-title {
        font-size: 0.9rem;
    }
    
    .save-section {
        padding: 0.6rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
        position: sticky;
        bottom: 0;
        background: #f1f5f9;
        border-top: 1px solid #e2e8f0;
    }
    
    .save-btn {
        width: 100%;
        justify-content: center;
    }
    
    .save-status {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 0.8rem;
    }
    
    .banner h1 {
        font-size: 1.5rem;
    }

    .banner-subtitle {
        font-size: 0.95rem;
    }

    .banner-description {
        font-size: 0.85rem;
    }
    
    .main-container {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }
    
    .ai-toolbar {
        padding: 0.5rem 0.6rem;
        min-height: auto;
        position: relative;
        z-index: 10;
    }
    
    .ai-actions {
        gap: 0.2rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .ai-btn {
        padding: 0.35rem 0.4rem;
        font-size: 0.6rem;
        min-width: auto;
        flex: none;
        border-radius: 5px;
        width: auto;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .ai-btn .btn-text {
        display: none;
    }
    
    .ai-btn i {
        font-size: 0.75rem;
        margin: 0;
    }

    .ai-document,
    .document-preview {
        padding: 1rem;
    }

    .ai-editor-section,
    .pdf-viewer-section {
        height: 75vh;
        border-radius: 10px;
    }

    /* Increased height calculation for better mobile display */
    .ai-document-view {
        height: calc(75vh - 100px);
        padding: 0.8rem;
        overflow-y: auto;
        margin-top: 0;
    }

    .pdf-content {
        height: calc(75vh - 80px);
        padding: 0.8rem;
    }
    
    .ai-document {
        min-height: calc(75vh - 160px);
        margin-bottom: 1.5rem;
    }
    
    .document-preview {
        min-height: calc(75vh - 160px);
    }
    
    .doc-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .doc-section {
        margin-bottom: 1.5rem;
    }
    
    .doc-section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        padding-left: 0.6rem;
        border-left-width: 3px;
    }
    
    .doc-section p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .editable-content {
        min-height: 120px;
        font-size: 0.9rem;
    }
    
    .editable-section {
        padding: 0.8rem;
    }
    
    .legal-categories {
        gap: 0.3rem;
    }
    
    .category-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .toolbar-title {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .pdf-title {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .pdf-info {
        font-size: 0.75rem;
    }
    
    .save-section {
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 0.6rem;
        align-items: stretch;
        position: sticky;
        bottom: 0;
        background: #f1f5f9;
        border-top: 1px solid #e2e8f0;
        z-index: 10;
    }
}

/* Extra small devices (phones in portrait mode) */
@media (max-width: 320px) {
    .banner h1 {
        font-size: 1.3rem;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
    }
    
    .banner-description {
        font-size: 0.8rem;
    }
    
    .ai-toolbar {
        padding: 0.4rem 0.5rem;
    }
    
    .ai-btn {
        padding: 0.3rem 0.35rem;
        height: 26px;
        width: auto;
        min-width: auto;
    }
    
    .ai-btn i {
        font-size: 0.7rem;
    }
    
    .ai-actions {
        gap: 0.15rem;
    }
    
    .ai-document,
    .document-preview {
        padding: 0.8rem;
    }
    
    .ai-document-view {
        height: calc(75vh - 90px);
        padding: 0.6rem;
    }
    
    .ai-document {
        min-height: calc(75vh - 150px);
    }
    
    .doc-section h3 {
        font-size: 0.9rem;
    }
    
    .doc-section p {
        font-size: 0.85rem;
    }
    
    .doc-title {
        font-size: 1.1rem;
    }
    
    .toolbar-title {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .editable-content {
        min-height: 100px;
        font-size: 0.85rem;
    }
}
 


/* footer css styles  */

  .site-footer {
  background: #f7f7f7;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
}

.footer-col.newsletter input[type="text"],
.footer-col.newsletter input[type="email"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.footer-col.newsletter label {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col.newsletter button {
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  gap: 20px;
}

.app-links h5,
.social-icons h5 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}

.apps img {
  height: 40px;
  margin-right: 10px;
}

.social-icons .icons i {
  font-size: 20px;
  margin-right: 12px;
  cursor: pointer;
}

hr {
  margin: 30px 0 10px;
  border: none;
  border-top: 1px solid #aaa;
}

footer p {
  text-align: center;
  font-size: 14px;
  color: #444;
}
