/* CSS Variables for Theme Colors */
        :root {
            /* Light Theme Colors */
            --body-bg: white;
            --header-bg-color : #ffffff;
            --personal-footer-link-text: #f26b3f;
			--personal-footer-link-text-hover: #ff4000;
			--personal-footer-link-bg-hover: rgba(255, 107, 53, 0.1);
            --social-link-bg-adi : #ff6b35;
            --social-link-bg-adi-hover : #e55a2b;
            --language-country-bg : #ff6b35;
            --language-country-text : white;
            --header-option-bg  : #ffffff;
            --header-option-text : #333;
            --header-option-bg-hover: rgba(255, 107,53, 0.1);
			--header-option-text-hover: #ff6b35;
			--header-marquee-bg: #ff6633;
			--date-time-text-color: #f26b3f;
			--left-panel-bg : white;
			--tab-btn-bg: rgba(255, 107, 53, 0.1);
			--tab-btn-color: #333;
			--tab-btn-border: rgba(255, 107, 53, 0.2);
			--tab-btn-bg-active: #ff6b35;
			--tab-btn-color-active: white;
			--tab-btn-border-active: #ff4000;
			--tab-content-bg: rgba(255, 107, 53, 0.04);
			--tab-content-border: rgba(255, 107, 53, 0.15);
			--tab-links-text: #f26b3f;
			--tab-links-text-hover: #ff4000;
			--tab-links-bg-hover: rgba(255, 107, 53, 0.1);
			--ssl-certificate-text: #f26b3f;
			--welcome-content-bg: rgba(255, 255, 255, 0.7);
			--welcome-content-h1-p-text: black;
			--phishing-vishing-text: #ff4000;
			--phishing-vishing-link-hover: #ff6633;
			--login-btn-bg: linear-gradient(45deg, #ff6b35, #ff6b35);
			--login-btn-text: white;
			--login-btn-bg-hover: linear-gradient(45deg, #e55a2b, #ff4000);
            --right-panel-bg: white;
            --right-panel-h3-text: #ff6b35;
            --useful-link-bg: rgba(255, 107, 53, 0.04);
			--useful-link-border: rgba(255, 107, 53, 0.15);
            --useful-link-text: #f26b3f;
			--useful-link-text-hover: #ff4000;
			--useful-link-bg-hover: rgba(255, 107, 53, 0.1);
			--useful-link-leftborder-hover: #ff6b35;
			
			--scrollbar-track-bg: rgba(255, 107, 53, 0.2);
			--scrollbar-thumb-bg: rgba(255, 107, 53, 0.6);
			--scrollbar-bg-hover: #ff6b35;
			--header-footer-border: #ff6b35;
			--copyright-text: #f26b3f;
			
			--popup-header-content-bg: #f26b3f;
			--popup-header-text: white;
			--popup-body-bg: #f8f9fa;
			--popup-body-text: #555;
			--popup-close-button: white;
			
			--accent-primary: #ff6633;
            --shadow-color: rgba(0, 0, 0, 0.1);
			--icon-border-color: white;
    		--icon-bg-left: black;
    		--icon-bg-right: white;
    		--icon-border-color-active: white;
    		--icon-bg-left-active: transparent;
    		--icon-bg-right-active: white;	
        }

        /* Dark Theme Colors */
        [data-theme="dark"] {
            --body-bg: #333;
            --header-bg-color : #838383de;
            --personal-footer-link-text: white;
            --personal-footer-link-text-hover: #000000;
            --personal-footer-link-bg-hover: #ffffff;
            --social-link-bg-adi : #ffffff;
            --social-link-bg-adi-hover : #e55a2b;
            --language-country-bg : #ffffff;
            --language-country-text : #333;
            --header-option-bg  : #000000;
            --header-option-text : #ffffff;
            --header-option-bg-hover: white;
			--header-option-text-hover: #333;
            --header-marquee-bg: black;
            --date-time-text-color: white;
            --left-panel-bg : black;
            --tab-btn-bg: #333;
            --tab-btn-color: white;
            --tab-btn-border: white;
            --tab-btn-bg-active: darkgray;
            --tab-btn-color-active: black;
            --tab-btn-border-active: white;
			--tab-content-bg: darkgray;
			--tab-content-border: white;
			--tab-links-text: black;
			--tab-links-text-hover: black;
			--tab-links-bg-hover: rgba(255, 255, 255, 0.3);
            --ssl-certificate-text: white;
            --welcome-content-bg: rgba(0, 0, 0, 0.4);
			--welcome-content-h1-p-text: white;
			--phishing-vishing-text: #00f1ff;
			--phishing-vishing-link-hover: black;
			--login-btn-bg: darkgray;
			--login-btn-text: black;
			--login-btn-bg-hover: gray;
            --right-panel-bg: black;
            --right-panel-h3-text: white;
            --useful-link-bg: darkgray;
			--useful-link-border: white;
            --useful-link-text: black;
            --useful-link-text-hover: black;
            --useful-link-bg-hover: rgba(255, 255, 255, 0.3);
            --useful-link-leftborder-hover: white;
            
            --scrollbar-track-bg: rgba(255, 255, 255, 0.2);
            --scrollbar-thumb-bg: rgba(255, 255, 255, 0.6);
            --scrollbar-bg-hover: rgba(255, 255, 255, 1);
            --header-footer-border: rgba(255, 255, 255, 0.6);
            --copyright-text: #ffffff;
            
            --popup-header-content-bg: darkgray;
            --popup-header-text: #333;
            --popup-body-bg: #333;
            --popup-body-text: white;
            --popup-close-button: black;
            
            --accent-primary: darkgray;
            --shadow-color: rgba(0, 0, 0, 0.3);
            --icon-border-color: white;
    		--icon-bg-left: white;
    		--icon-bg-right: transparent;
    		--icon-border-color-active: white;
    		--icon-bg-left-active: black;
    		--icon-bg-right-active: white; 
        }

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
	min-height: 100vh;
	background: var(--body-bg);
}
/*
body::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../Images/BOB-Identifier.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 32%;
	filter: drop-shadow(2px 4px 6px black);
	z-index: -1;
}
*/

/* Header Styles */
.header {
	padding: 12px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 75px;
	box-shadow: 0px 2px 10px 0px rgb(0 0 0/ 40%);
	position: relative;
	z-index: 1000;
	flex-shrink: 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 15px;
}

.social-links {
	display: flex;
	gap: 10px;
	align-items: center;
}

.social-link {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	transform: translateY(-2px);
}

.social-link.adi {
	background: var(--social-link-bg-adi);
}

.social-link.adi:hover {
	background: var(--social-link-bg-adi-hover);
	transform: translateY(-2px);
}

.personal-links {
	display: flex;
	gap: 0px;
	align-items: center;
}

.personal-link {
	color: var(--personal-footer-link-text);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 13px;
}

.personal-link:hover {
	color: var(--personal-footer-link-text-hover);
	background: var(--personal-footer-link-bg-hover);
}

.language-selector {
	position: relative;
}

.language-btn {
	background: var(--language-country-bg);
	color: var(--language-country-text);
	border: none;
	padding: 8px 14px;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 12px;
}

.language-btn:hover {
	background: #e55a2b;
}

.language-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background: var(--header-option-bg);
	border: 2px solid #ff6b35;
	border-radius: 6px;
	padding: 6px 0;
	min-width: 110px;
	display: none;
	z-index: 1000;
	box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.language-dropdown.show {
	display: block;
}

.language-option {
	padding: 6px 14px;
	cursor: pointer;
	color: var(--header-option-text);
	transition: all 0.3s ease;
	font-size: 13px;
}

.language-option:hover {
	background: var(--header-option-bg-hover);
	color: var(--header-option-text-hover);
}

.size-option:hover {
	background: var(--header-option-bg-hover);
	color: var(--header-option-text-hover);
	border-radius: 5px;
}

.country-selector {
	position: relative;
}

.img-fluid {
	width: 15px;
	height: 15px;
	margin: 0px 8px 0px -3px;
}

.country-btn {
	padding: 6px 10px;
	font-size: 11px;
}

.country-btn {
	background: var(--language-country-bg);
	color: var(--language-country-text);
	border: none;
	padding: 8px 14px;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 12px;
	align-items: center;
	display: flex;
}

.country-btn:hover {
	background: #e55a2b;
}

.country-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background: var(--header-option-bg);
	border: 2px solid #ff6b35;
	border-radius: 6px;
	padding: 6px 0;
	min-width: max-content;
	display: none;
	z-index: 1000;
	box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.country-dropdown.show {
	display: block;
}

.country-option {
	padding: 5px 12px;
	cursor: pointer;
	color: var(--header-option-text);
	transition: all 0.3s ease;
	font-size: 13px;
}

.country-option:hover {
	background: var(--header-option-bg-hover);
	color: var(--header-option-text-hover);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	background: #ff6b35;
	border: none;
	color: white;
	padding: 8px 12px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
}

/* Main Content Styles */
.main-content {
	flex: 1;
	display: flex;
	height: calc(100vh - 120px); /* Adjusted for header and footer */
	overflow: hidden;
}

/* Left Navigation Panel */
.left-panel {
	width: 20%;
	background: var(--left-panel-bg);
	border-right: 2px solid rgba(255, 107, 53, 0.2);
	padding: 18px;
	filter: drop-shadow(5px 0px 10px rgba(0, 0, 0, 0.4));
	overflow-y: auto;
	flex-shrink: 0;
}

.tab-container {
	margin-bottom: 16px;
}

.tab-buttons {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.tab-btn {
	background: var(--tab-btn-bg);
	color: var(--tab-btn-color);
	border: 1px solid var(--tab-btn-border);
	padding: 12px 16px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
	font-weight: 600;
	font-size: 13px;
}

.tab-btn.active {
	background: var(--tab-btn-bg-active);
	color: var(--tab-btn-color-active);
	border-color: var(--tab-btn-border-active);
	transform: translateX(6px);
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.tab-btn:hover:not (.active ) {
	background: rgba(255, 107, 53, 0.15);
	border-color: #ff6b35;
	transform: translateX(3px);
}

.tab-content {
	display: none;
	background: var(--tab-content-bg);
	border: 1px solid var(--tab-content-border);
	border-radius: 6px;
	padding: 14px;
}

.tab-content.active {
	display: block;
}

.tab-links {
	list-style: none;
}

.tab-links li {
	margin-bottom: 8px;
}

.tab-links a {
	color: var(--tab-links-text);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: block;
	padding: 4px 10px;
	border-radius: 4px;
	position: relative;
	font-weight: 500;
}

.tab-links a:hover {
	color: var(--tab-links-text-hover);
	background: var(--tab-links-bg-hover);
	padding-left: 16px;
	font-weight: bold;
}

/* Details Section */
.details-section {
	flex: 1;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	overflow: hidden;
}

.welcome-content {
	max-width: 550px;
	background: var(--welcome-content-bg);
	padding: 15px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), -4px -4px 10px
		rgba(0, 0, 0, 0.1), 4px -4px 10px rgba(0, 0, 0, 0.1), -4px 4px 10px
		rgba(0, 0, 0, 0.1);
}

.welcome-content h1 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--welcome-content-h1-p-text);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	font-weight: 700;
}

.welcome-content p {
	font-size: 1rem;
	margin-bottom: 10px;
	line-height: 1.6;
	color: var(--welcome-content-h1-p-text);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.login-btn {
	background: var(--login-btn-bg);
	color: var(--login-btn-text);
	border: none;
	width: 150px; padding : 8px 0px;
	margin: 0px 30px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 1px 5px black;
	letter-spacing: 0.5px;
	padding: 8px 0px;
}

.login-btn span {
	color: #000000;
	font-size: 12px;
}

.login-btn:hover {
	background: var(--login-btn-bg-hover);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Right Navigation Panel */
.right-panel {
	width: 20%;
	background: var(--right-panel-bg);
	border-left: 2px solid rgba(255, 107, 53, 0.2);
	padding: 18px;
	filter: drop-shadow(-5px 0px 10px rgba(0, 0, 0, 0.4));
	flex-shrink: 0;
}

.right-panel h3 {
	color: var(--right-panel-h3-text);
	margin-bottom: 14px;
	font-size: 15px;
	font-weight: 700;
	border-bottom: 2px solid var(--right-panel-h3-text);
	padding-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.useful-links {
	list-style: none;
    overflow-y: auto;
    height: -webkit-fill-available;
    margin-bottom: 35px;
    background: var(--useful-link-bg);
    border: 1px solid var(--useful-link-border);
    border-radius: 6px;
    padding: 10px;
    padding-top: 5px;
}

.useful-links li {
	margin-bottom: 6px;
}

.useful-links a {
	color: var(--useful-link-text);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: block;
	padding: 8px 12px;
	border-radius: 4px;
	position: relative;
	border-left: 3px solid transparent;
	font-weight: 500;
}

.useful-links a:hover {
	color: var(--useful-link-text-hover);
	background: var(--useful-link-bg-hover);
	border-left-color: var(--useful-link-leftborder-hover);
	padding-left: 16px;
	font-weight: bold;
}

/* Footer Styles */
.footer {
	border-top: 2px solid var(--header-footer-border);
	padding: 12px 30px;
	box-shadow: inset 0px 3px 14px 0px rgb(0 0 0/ 40%);
	flex-shrink: 0;
	height: min-content;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1000;
}

.footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.footer-links {
	display: flex;
	list-style: none;
	align-items: center;
	flex-wrap: wrap;
}

.footer-links li {
	font-size: 14px;
}

.footer-links a {
	color: var(--personal-footer-link-text);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
	padding: 5px 10px;
}

.footer-links a:hover {
	color: var(--personal-footer-link-text-hover);
	background: var(--personal-footer-link-bg-hover);
	border-radius: 4px;
}

.footer-links .separator {
	color: #ccc;
	margin: 0 5px;
}

.copyright {
	font-size: 14px;
	color: var(--copyright-text);
	font-weight: 500;
}

.disclaimer-div {
	display: none; /* Hidden by default for clean layout */
	background: rgba(255, 107, 53, 0.05);
	padding: 8px 30px;
	font-size: 10px;
	color: #666;
	text-align: center;
	border-top: 1px solid rgba(255, 107, 53, 0.1);
}

/* Custom Scrollbar */
.left-panel::-webkit-scrollbar, .right-panel::-webkit-scrollbar,
	.useful-links::-webkit-scrollbar, .popup-body::-webkit-scrollbar {
	width: 6px;
}

.left-panel::-webkit-scrollbar-track, .right-panel::-webkit-scrollbar-track,
	.useful-links::-webkit-scrollbar-track, .popup-body::-webkit-scrollbar-track {
	background: var(--scrollbar-track-bg);
	border-radius: 2px;
}

.left-panel::-webkit-scrollbar-thumb, .right-panel::-webkit-scrollbar-thumb,
	.useful-links::-webkit-scrollbar-thumb, .popup-body::-webkit-scrollbar-thumb {
	background: var(--scrollbar-thumb-bg);
	border-radius: 2px;
}

.left-panel::-webkit-scrollbar-thumb:hover, .right-panel::-webkit-scrollbar-thumb:hover,
	.useful-links::-webkit-scrollbar-thumb:hover, .popup-body::-webkit-scrollbar-thumb:hover {
	background: var(--scrollbar-bg-hover);
}

.welcome-content {
	animation: fadeInUp 0.6s ease-out;
}

/* Ripple Effect */
.ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	animation: ripple-animation 0.6s linear;
	pointer-events: none;
}

@
keyframes ripple-animation {to { transform:scale(2);
	opacity: 0;
}

}
.BobInternetLogo {
	height: 50px;
}
.BobInternetLogo2 {
	height: 50px;
}
.datetime {
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--date-time-text-color);
	font-family: Arial, sans-serif;
	margin: -7px 0px 10px 20px;
}

#fontSizeToggle {
	cursor: pointer;
	font-size: 14px;
	background: var(--language-country-bg);
	color: var(--language-country-text);
	padding: 4px 8px;
    border-radius: 5px;
}
.bob-down-arrow-svg{
	color: var(--language-country-text);
	fill: var(--language-country-text);
}
#currentSizeLabel{
	font-weight: bold;
	font-size: 14px;
}

#fontSizeToggle:hover{
	background: #e55a2b;
}

.text-resizer button, .controls button {
	display: block;
	width: 100%;
	padding: 8px 8px;
	font: 0.875rem/1rem Arial;
	letter-spacing: 0;
	color: var(--header-option-text);
	cursor: pointer;
	transition: 0.3s linear;
	border-top: 1px solid rgba(112, 112, 112, 0.1);
	margin: 0 !important;
	overflow: hidden;
	background: var(--header-option-bg);
	border: none;
}

.controls {
	cursor: pointer;
	display: none;
	position: absolute;
	background: var(--header-option-bg);
	border: 1px solid #ccc;
	padding: 5px;
	z-index: 1000;
	transition: all 0.3s ease;
	border-radius: 10px;
	border-top: 1px solid rgba(112, 112, 112, 0.1);
}

.marqueeHeaderDiv {
	border-bottom: 2px solid var(--header-footer-border);
	padding: 1px 30px;
	font-size: 13px;
	font-weight: 500;
	background-color: var(--header-marquee-bg);
	filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.4));
	z-index: 999;
	position: relative;
	height: 30px;
    align-content: center;
}

.marqueeSection1 {
	white-space: nowrap;
	font-size: 14px;
	color: #ffffff;
	word-spacing: 1.2px;
	letter-spacing: 0.5px;
}

.marqueeSection2 {
	color: #ff4000;
	font-family: inherit;
	padding: 5px;
	overflow: hidden;
	height: 270px;
	font-size: 14px;
}

.welcome-content h4 {
	color: var(--phishing-vishing-text);
	margin-bottom: 20px;
	font-size: 13px;
	font-weight: 700;
}

.welcome-content h4 a {
	color: deepskyblue;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-decoration: none;
	text-transform: none;
	font-style: italic;
	cursor: pointer;
}

.welcome-content h4 a:hover {
	color: var(--phishing-vishing-link-hover);
}

.ExternalPageTransferLogo {
	height: 10px;
	width: 10px;
	margin-bottom: 0px;
	margin-left: 5px;
}

.SSLCertificateLink {
	color: var(--ssl-certificate-text);
	text-decoration: none;
	font: bold 10px verdana, sans-serif;
	letter-spacing: .5px;
	text-align: center;
	margin: 0px;
	padding: 0px;
}

.welcome-content h4 svg {
	padding-right: 1px;
	vertical-align: sub;
}

.bob-tw-svg:hover, .bob-tw-svg .st0:hover, .bob-tw-svg .st1:hover {
	fill: black;
	transition: all 0.3s linear;
}

.bob-fb-svg:hover, .bob-fb-svg .st0:hover {
	fill: url(#bob-fb-hover);
	transition: 0.3s linear;
}

.bob-insta-svg:hover {
	fill: url(#bob-insta-hover);
	transition: 0.3s linear;
}

.bob-ind-svg:hover {
	fill: #0a66c2;
	transition: 0.3s linear;
}

/* Popup Modal Styles */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: none;
	backdrop-filter: brightness(0.5);
}

.popup-overlay.active {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease;
}

.popup-content {
	width: 70%;
	height: 80%;
	background: var(--popup-header-content-bg);
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	animation: slideUp 0.3s ease;
}

.popup-header {
	background: var(--popup-header-content-bg);
	color: var(--popup-header-text);
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}

.popup-title {
	font-size: 1.5rem;
	font-weight: bold;
}

.popup-close {
	background: none;
	border: none;
	color: var(--popup-close-button);
	font-size: 1.8rem;
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.popup-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.popup-body {
	padding: 2rem;
	height: calc(100% - 80px);
	overflow-y: auto;
	padding: 50px;
	padding-top: 30px;
	background: var(--popup-body-bg);
	border-right: 2px solid var(--popup-header-content-bg);
    border-left: 2px solid var(--popup-header-content-bg);
}
.popup-main-content{
	color: var(--popup-body-text);
}

.popup-body p {
	color: var(--popup-body-text);
	margin-bottom: 1.2rem;
	text-align: justify;
}
.popup-body h4 {
	color: var(--popup-body-text);
	margin-bottom: 0.5rem;
}
.popup-li {
	list-style-type: square;
    color: var(--popup-body-text);
    margin-left: 40px;
    margin-bottom: 0.6rem;
    text-align: justify;
}
.popup-li2{
	list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 0.3rem;
}
.popup-link-a {
	text-decoration : none;
	color: deepskyblue;
}
.popup-link-a:hover {
	text-decoration : none;
	color: #ff6633;
}
.popup-subheading {
	color: #ff6633;
}

/* Animations */
@
keyframes fadeIn {from { opacity:0;
	
}

to {
	opacity: 1;
}

}
@
keyframes slideUp {from { opacity:0;
	transform: translateY(50px) scale(0.9);
}

to {
	opacity: 1;
	transform: translateY(0) scale(1);
}

}

/* Responsive Design */
@media ( max-width : 768px) {
	.popup-content {
		width: 90%;
		height: 80%;
	}
	.footer-links a {
		display: block;
		margin: 0.5rem 0;
	}
	.main-content h1 {
		font-size: 2rem;
	}
}




/*  Theme Change Css  */
/* Theme Toggle Button */


.theme-toggle {
    top: 2rem;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    margin-right: 10px;
    z-index: 1001;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.theme-icon.half-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--icon-border-color);
    background: linear-gradient(90deg, var(--icon-bg-left) 50%, var(--icon-bg-right) 50%);
    transition: all 0.3s ease;
    margin-right: 20px;
    transform: translateX(0px) rotate(0deg);
}

/* Active state */
.theme-icon.half-circle.active {
    transform: translateX(20px) rotate(180deg);
    border-color: var(--icon-border-color-active);
    background: linear-gradient(90deg, var(--icon-bg-left-active) 50%, var(--icon-bg-right-active) 50%);
}






/* ==================== RESPONSIVE DESIGN - MEDIA QUERIES ==================== */

/* Extra Large Desktop */
@media screen and (max-width: 1440px) {
    .left-panel,
    .right-panel {
        width: 22%;
    }
    
    .welcome-content {
        max-width: 500px;
    }
}

/* Large Desktop */
@media screen and (max-width: 1200px) {
    .header {
        padding: 10px 20px;
    }
    
    .left-panel {
        width: 24%;
        padding: 15px;
    }
    
    .right-panel {
        width: 24%;
        padding: 15px;
    }
    
    .BobInternetLogo,
    .BobInternetLogo2 {
        height: 45px;
        
    }
    
    .welcome-content {
        max-width: 480px;
        padding: 20px;
    }
    
    .welcome-content h1 {
        font-size: 1.4rem;
    }
    
    .welcome-content p {
        font-size: 0.95rem;
    }
    
    .login-btn {
        width: 130px;
        margin: 0px 20px;
        font-size: 13px;
    }
}

/* Desktop/Laptop */
@media screen and (max-width: 1024px) {
    .header {
        padding: 10px 15px;
        height: auto;
    }
    
    .logo {
        gap: 10px;
    }
    
    .BobInternetLogo,
    .BobInternetLogo2 {
        height: 45px;
        
    }
    
    .nav-links {
        gap: 12px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .personal-link {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .left-panel,
    .right-panel {
        width: 26%;
        padding: 12px;
    }
    
    .tab-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .tab-links a,
    .useful-links a {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .welcome-content {
        max-width: 440px;
        padding: 18px;
    }
    
    .welcome-content h1 {
        font-size: 1.3rem;
    }
    
    .welcome-content p {
        font-size: 0.9rem;
    }
    
    .welcome-content h4 {
        font-size: 12px;
    }
    
    .login-btn {
        width: 120px;
        margin: 0px 15px;
        font-size: 12px;
    }
    
    .popup-content {
        width: 80%;
        height: 85%;
    }
    
    .popup-body {
        padding: 30px;
    }
}

/* Tablet Landscape */
@media screen and (max-width: 900px) {
    .main-content {
        height: auto;
    }
    
    .left-panel,
    .right-panel {
        width: 28%;
    }
    
    .details-section {
        padding: 25px 15px;
    }
    
    .welcome-content {
        max-width: 400px;
    }
    
    .footer-links li {
        font-size: 12px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

/* Tablet Portrait */
@media screen and (max-width: 768px) {
    body {
        overflow-y: auto;
        height: auto;
    }
    
    body::before {
        background-size: 50%;
    }
    
    .header {
        padding: 10px 15px;
        flex-wrap: wrap;
        gap: 12px;
        height: auto;
    }
    
    .logo {
        order: 1;
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }
    
    .BobInternetLogo,
    .BobInternetLogo2 {
        height: 70px;
    }
    
    .nav-links {
        order: 2;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .personal-links {
        gap: 8px;
    }
    
    .personal-link {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
    }
    
    .theme-toggle {
        margin-right: 5px;
    }
    
    .theme-icon.half-circle {
        width: 20px;
        height: 20px;
        margin-right: 18px;
    }
    
    .theme-icon.half-circle.active {
        transform: translateX(18px) rotate(180deg);
    }
    
    #fontSizeToggle {
        font-size: 12px;
        padding: 3px 6px;
    }
    
    .language-btn,
    .country-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .marqueeHeaderDiv {
        padding: 1px 15px;
        font-size: 12px;
        height: 28px;
    }
    
    .marqueeSection1 {
        font-size: 12px;
    }
    
    .main-content {
        flex-direction: column;
        height: auto;
    }
    
    .left-panel {
        display: none;
        width: 100%;
        order: 1;
        border-right: none;
        border-bottom: 2px solid rgba(255, 107, 53, 0.2);
        max-height: 350px;
        overflow-y: auto;
    }
    
    .left-panel.show {
        display: block;
    }
    
    .datetime {
        font-size: 12px;
        margin: -5px 0px 8px 10px;
    }
    
    .details-section {
        order: 2;
        padding: 30px 20px;
        min-height: 350px;
    }
    
    .welcome-content {
        max-width: 90%;
        padding: 15px;
    }
    
    .welcome-content h1 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .welcome-content p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .welcome-content h4 {
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .login-btn {
        width: 110px;
        margin: 0px 10px;
        padding: 6px 0px;
        font-size: 11px;
    }
    
    .login-btn span {
        font-size: 10px;
    }
    
    .right-panel {
        display: none;
        width: 100%;
        order: 3;
        border-left: none;
        border-top: 2px solid rgba(255, 107, 53, 0.2);
        max-height: 350px;
    }
    
    .right-panel.show {
        display: block;
    }
    
    .right-panel h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .useful-links {
        max-height: 280px;
    }
    
    .footer {
        padding: 12px 15px;
    }
    
    .footer-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .footer-links li {
        font-size: 11px;
    }
    
    .footer-links a {
        padding: 4px 8px;
    }
    
    .copyright {
        font-size: 11px;
    }
    
    .popup-content {
        width: 92%;
        height: 88%;
    }
    
    .popup-header {
        padding: 12px 15px;
    }
    
    .popup-title {
        font-size: 1.2rem;
    }
    
    .popup-body {
        padding: 20px 15px;
    }
    
    .popup-body p {
        font-size: 0.9rem;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 640px) and (orientation: landscape) {
    .header {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .logo {
        width: auto;
        margin-bottom: 0;
    }
    
    .nav-links {
        width: auto;
        flex: 1;
        justify-content: flex-end;
    }
    
    .details-section {
        min-height: 300px;
        padding: 20px 15px;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    body::before {
        background-size: 60%;
    }
    
    .header {
        padding: 8px 10px;
        gap: 8px;
    }
    .BobInternetLogo,
    .BobInternetLogo2 {
        height: 45px;
        
    }
    
    .nav-links {
        gap: 6px;
    }
    
    .personal-links {
        gap: 6px;
    }
    
    .personal-link {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
    
    .ADILogo {
        width: 18px;
        height: 18px;
    }
    
    .theme-icon.half-circle {
        width: 18px;
        height: 18px;
        margin-right: 16px;
    }
    
    .theme-icon.half-circle.active {
        transform: translateX(16px) rotate(180deg);
    }
    
    #fontSizeToggle {
        font-size: 11px;
        padding: 2px 5px;
    }
    
    #currentSizeLabel {
        font-size: 12px;
    }
    
    
    
    .text-resizer button,
    .controls button {
        padding: 6px;
        font-size: 0.75rem;
    }
    
    .language-btn,
    .country-btn {
        padding: 5px 8px;
        font-size: 10px;
    }
    
    .language-dropdown,
    .country-dropdown {
        min-width: 90px;
    }
    
    .language-option,
    .country-option {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .img-fluid {
        width: 12px;
        height: 12px;
        margin: 0px 6px 0px -2px;
    }
    
    .mobile-menu-toggle {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .marqueeHeaderDiv {
        padding: 1px 10px;
        font-size: 11px;
        height: 26px;
    }
    
    .marqueeSection1 {
        font-size: 11px;
    }
    
    .left-panel,
    .right-panel {
        padding: 10px;
    }
    
    .datetime {
        font-size: 11px;
        margin: -5px 0px 6px 5px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .tab-content {
        padding: 10px;
    }
    
    .tab-links a,
    .useful-links a {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .details-section {
        padding: 20px 15px;
        min-height: 320px;
    }
    
    .welcome-content {
        max-width: 95%;
        padding: 12px;
        border-radius: 12px;
    }
    
    .welcome-content h1 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .welcome-content p {
        font-size: 0.8rem;
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .welcome-content h4 {
        font-size: 10px;
        margin-bottom: 12px;
    }
    
    .welcome-content h4 a {
        font-size: 11px;
    }
    
    .login-btn {
        width: 100px;
        margin: 0px 8px;
        padding: 5px 0px;
        font-size: 10px;
    }
    
    .login-btn span {
        font-size: 9px;
    }
    
    .right-panel h3 {
        font-size: 13px;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }
    
    .useful-links {
        padding: 8px;
        max-height: 260px;
    }
    
    .SSLCertificateLink {
        font-size: 9px;
    }
    
    .ExternalPageTransferLogo {
        height: 8px;
        width: 8px;
        margin-left: 3px;
    }
    
    .footer {
        padding: 10px;
    }
    
    .footer-row {
        gap: 8px;
    }
    
    .footer-links {
        gap: 6px;
    }
    
    .footer-links li {
        font-size: 10px;
    }
    
    .footer-links a {
        padding: 3px 6px;
    }
    
    .footer-links .separator {
        margin: 0 3px;
    }
    
    .copyright {
        font-size: 10px;
    }
    
    .popup-content {
        width: 95%;
        height: 90%;
        border-radius: 12px;
    }
    
    .popup-header {
        padding: 10px 12px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .popup-body {
        padding: 15px 12px;
        padding-top: 20px;
    }
    
    .popup-body p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .popup-body h4 {
        font-size: 0.95rem;
    }
    
    .popup-li {
        margin-left: 25px;
        font-size: 0.85rem;
    }
    
    .popup-li2 {
        margin-left: 25px;
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media screen and (max-width: 400px) {
    body::before {
        background-size: 70%;
    }
    
    .header {
        padding: 6px 8px;
        gap: 6px;
    }
    .BobInternetLogo,
    .BobInternetLogo2 {
        height: 40px;
        
    }
    
    .nav-links {
        gap: 5px;
    }
    
    .personal-link {
        font-size: 9px;
        padding: 2px 5px;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
    }
    
    .ADILogo {
        width: 16px;
        height: 16px;
    }
    
    .theme-icon.half-circle {
        width: 16px;
        height: 16px;
        margin-right: 14px;
    }
    
    .theme-icon.half-circle.active {
        transform: translateX(14px) rotate(180deg);
    }
    
    #fontSizeToggle {
        font-size: 10px;
        padding: 2px 4px;
    }
    
    #currentSizeLabel {
        font-size: 11px;
    }
    
    .language-btn,
    .country-btn {
        padding: 4px 6px;
        font-size: 9px;
    }
    
    .mobile-menu-toggle {
        padding: 5px 8px;
        font-size: 12px;
    }
    
    .marqueeHeaderDiv {
        padding: 1px 8px;
        font-size: 10px;
        height: 24px;
    }
    
    .marqueeSection1 {
        font-size: 10px;
    }
    
    .datetime {
        font-size: 10px;
    }
    
    .tab-btn {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .tab-links a,
    .useful-links a {
        font-size: 11px;
    }
    
    .details-section {
        padding: 15px 10px;
        min-height: 280px;
    }
    
    .welcome-content h1 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .welcome-content p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .welcome-content h4 {
        font-size: 9px;
        margin-bottom: 10px;
    }
    
    .welcome-content h4 a {
        font-size: 10px;
    }
    
    .login-btn {
        width: 90px;
        margin: 0px 6px;
        padding: 4px 0px;
        font-size: 9px;
    }
    
    .login-btn span {
        font-size: 8px;
    }
    
    .right-panel h3 {
        font-size: 12px;
    }
    
    .footer-links li {
        font-size: 9px;
    }
    
    .copyright {
        font-size: 9px;
    }
    
    .popup-title {
        font-size: 1rem;
    }
    
    .popup-body {
        padding: 12px 10px;
    }
    
    .popup-body p {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
    .BobInternetLogo,
    .BobInternetLogo2 {
        height: 35px;
        
    }
    
    .personal-link {
        font-size: 8px;
    }
    
    .social-link {
        width: 24px;
        height: 24px;
    }
    
    .welcome-content h1 {
        font-size: 0.95rem;
    }
    
    .welcome-content p {
        font-size: 0.7rem;
    }
    
    .login-btn {
        width: 85px;
        margin: 0px 5px;
        font-size: 8px;
    }
}

/* Print Styles */
@media print {
    .header,
    .marqueeHeaderDiv,
    .theme-toggle,
    .text-resizer,
    .social-links,
    .personal-links,
    .language-selector,
    .country-selector,
    .mobile-menu-toggle,
    .left-panel,
    .right-panel,
    .footer,
    .popup-overlay {
        display: none !important;
    }
    
    body {
        overflow: visible;
        height: auto;
        background: white;
    }
    
    body::before {
        display: none;
    }
    
    .main-content {
        height: auto;
        flex-direction: column;
    }
    
    .details-section {
        padding: 20px;
    }
    
    .welcome-content {
        background: white;
        box-shadow: none;
        border: 1px solid #333;
        color: #333;
    }
    
    .welcome-content h1,
    .welcome-content p,
    .welcome-content h4 {
        color: #333;
    }
    
    .login-btn {
        display: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .tab-btn,
    .tab-content,
    .useful-links,
    .welcome-content {
        border-width: 2px;
    }
    
    .tab-links a:hover,
    .useful-links a:hover {
        outline: 2px solid currentColor;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .popup-overlay.active,
    .popup-content {
        animation: none;
    }
    
    marquee {
        animation: none;
    }
}

/* Animation Enhancements */
@
keyframes fadeInUp {from { opacity:0;
	transform: translateY(20px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}