:root {
    --bg-dark: #060b1a;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    overflow-x: hidden;
    padding-top: 60px; /* Offset for fixed header */
}

/* --- Page Titles --- */
.विभाग-शीर्षकम् {
    text-align: center;
    margin-bottom: 50px;
}
.विभाग-शीर्षकम् h2 {
    font-size: 2.5rem;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}
.विभाग-शीर्षकम् p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Interview Tools Grid */
section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.उपकरण-जालकम् {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.उपकरण-वस्तु {
    border: 1px solid rgba(0, 212, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: rgba(255, 255, 255, 0.05);
}

.उपकरण-वस्तु:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.प्रारम्भ-कुञ्जिका {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    background: transparent;
    margin-top: 15px;
}

.प्रारम्भ-कुञ्जिका:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 20px #00d4ff, 0 0 40px rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
}
/* --- Navigation Header --- */
#शीर्षपट्टिका {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 1000;
    background: rgba(6, 11, 26, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
    padding : 5px;
    box-sizing: border-box;
}

#चिह्नम् {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    transition: all 0.3s ease;
}
#चिह्नम्:hover {
    transform: scale(5);
    transform-origin: top left;
}

#मार्गसञ्चारकडी {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

#मार्गसञ्चारकडी a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

#मार्गसञ्चारकडी a:hover {
    color: yellow;
    transform: translateY(-2px) scale(1.05); 
    display: inline-block;
}

/* --- Coming Soon Page Styles --- */
.प्रचार-शरीरम् {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #060b1a;
    overflow: hidden;
    color: white;
    text-align: center;
}

.प्रचार-पात्रम् {
    max-width: 600px;
    padding: 20px;
}

/* Animated Ring Effect */
.दीप्ति-वलयः {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.दीप्ति-वलयः::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-top: 3px solid #00d4ff;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.स्पन्दन-चिह्नम् {
    font-size: 3rem;
    color: #00d4ff;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.9); } }

.प्रचार-शीर्षकम् {
    font-size: 2.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #ffffff;
}

.प्रचार-पाठः {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}


.पृष्ठ-कुञ्जिका {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.पृष्ठ-कुञ्जिका:hover {
    color: #00d4ff;
}