/* State Setting Start */
	
/* मुख्य बुकमार्क बार का कंटेनर */
.state-links-bookmark-bar {
    background-color: #ffffff;
    padding: 6px 5%;
    border-bottom: 1px solid #e8eaed;
    display: flex !important;
    align-items: center;
    justify-content: space-between; /*  यह दोनों तरफ के एलिमेंट्स को कोनों पर फैला देगा */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
    flex-wrap: nowrap !important;
    overflow: visible !important;
}



/* सीधे दिखने वाले लिंक्स का रैपर */
.visible-links-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap !important;
    overflow: hidden; /* सिर्फ यहाँ अंदर के लिंक्स छुपेंगे */
	max-width: 100%;
}

.bookmark-title {
    font-size: 13px;
    color: #5f6368;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* मुख्य पट्टी के लिंक्स की स्टाइल */
.state-bookmark-link {
    font-size: 13px;
    color: #3c4043;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 4px;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.15s ease;
    flex-shrink: 0 !important; /* बटन को पिचकने से रोकेगा */
}

.state-bookmark-link:hover {
    background-color: #f1f3f4;
    color: #1a73e8;
    text-decoration: none;
}




/* पट्टी में अगर नाम बहुत बड़ा हो या कोने पर आ जाए तो ... लगेगा */
.state-bookmark-link span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
    display: inline-block;
    max-width: 180px; /* नाम को पूरा फैलने की आज़ादी दें */
}

/* ड्रॉपडाउन के अंदर नाम बिना कटे पूरा साफ़ दिखेगा */
.dropdown-link-item span {
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

.bookmark-favicon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

/* "More" ड्रॉपडाउन बॉक्स का कंटेनर */
.more-links-dropdown {
    margin-left: auto; /* हमेशा दाईं तरफ चिपका रहेगा */
    position: relative; /* इसके रिस्पेक्ट में मेनू अलाइन होगा */
    display: none;
}

/* "More" बटन का स्टाइल */
.more-btn {
    font-size: 13px;
    color: #5f6368;
    background: #f1f3f4;
    border: 1px solid #dadce0;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.more-btn:hover {
    background: #e8eaed;
    color: #1a73e8;
}

/* सबसे महत्वपूर्ण: ड्रॉपडाउन मेनू जो अब हवा में तैरता हुआ दिखेगा */
.more-links-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 99999 !important;
    display: none;
    min-width: 260px;          /* ड्रॉपडाउन को चौड़ा किया ताकि पूरा नाम दिखे */
    max-width: 350px;
    padding: 6px 0;
}
/* ड्रॉपडाउन के अंदर की लिस्ट के लिंक्स का बिल्कुल नया स्टाइल */
.more-links-menu .dropdown-link-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: #3c4043;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.15s ease;
    width: 100%;
    box-sizing: border-box;
}

.more-links-menu .dropdown-link-item span {
    white-space: normal;       /* यहाँ नाम कटेगा नहीं, पूरा दिखेगा */
    word-break: break-word;
}

.more-links-menu .dropdown-link-item img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* State Setting End */

/* Footer Styles */
.cyber-footer {
    background-color: #1a1e29; /* Dark professional background */
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 60px 0 20px 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-column h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-column h2 span {
    color: #ff6b6b; /* Orange/Red accent color matching your UI */
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
    color: #f1f2f6;
}

/* Heading ke niche choti line */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 2px;
    background-color: #2ed573; /* Green accent line */
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #a4b0be;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #a4b0be;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.footer-column ul li a:hover {
    color: #2ed573;
    padding-left: 5px;
}

/* Social Media Icons */
.footer-socials {
    margin-top: 20px;
}

.footer-socials a {
    color: #ffffff;
    background: #2f3542;
    padding: 8px 12px;
    border-radius: 4px;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #ff6b6b;
}

/* Copyright Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #2f3542;
    font-size: 14px;
    color: #a4b0be;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cyber-footer {
        padding: 40px 0 20px 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-column ul li a:hover {
        padding-left: 0;
    }
}