/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1766682815
Updated: 2025-12-25 17:13:35

*/

:root {
    --bg-universal: #FFFFFF;
    --text-universal: #1E293B;
    --primary-accent: #0D9488;
    --secondary-accent: #64748B;
    --font-heading: 'ADLaM Display', sans-serif;
}

[data-theme='dark'] {
    --bg-universal: #0f172a;
    --text-universal: #FFFFFF;
    --primary-accent: #FF8C00;
    --secondary-accent: #FF1493;
}

/* सबसे जरूरी हिस्सा: Elementor के हर एलिमेंट को मजबूर करना */
body.elementor-default, body {
    background-color: var(--bg-universal) !important;
    color: var(--text-universal) !important;
}
a{
	text-decoration:none !important;
}
/* हेडिंग्स के लिए */
/* style.css में इसे अपडेट करें */
h1, h2, h3, .elementor-heading-title {
    font-family: 'ADLaM Display', cursive !important; /* 'cursive' यहाँ बैकअप का काम करेगा */
    color: var(--primary-accent) !important;
    font-weight: normal; 
}


/* Primary Text Targeting */
.p-text .elementor-heading-title, 
.p-text { 
    color: var(--primary-accent) !important; 
}

/* Secondary Text Targeting */
.s-text .elementor-heading-title, 
.s-text { 
    color: var(--secondary-accent) !important; 
}

/* --- 1. Solid Button (Hire Me के लिए) --- */
.btn-solid .elementor-button{
    background-color: var(--primary-accent) !important;
    color: #ffffff !important; /* टेक्स्ट हमेशा सफ़ेद रहेगा */
    border: 1px solid var(--primary-accent) !important;
    border-radius: 4px !important;
    transition: 0.3s !important;
}

.btn-solid .elementor-button:hover {
    opacity: 0.8 !important;
    transform: translateY(-2px);
}

/* --- 2. Outline Button (Download CV के लिए) --- */
.btn-outline .elementor-button{
    background-color: transparent !important;
    border: 1px solid var(--primary-accent) !important;
    border-radius: 4px !important;
    transition: 0.3s !important;
}

/* इस बटन के अंदर का टेक्स्ट प्राइमरी कलर का होगा */
.btn-outline .elementor-button .elementor-button-text,
.btn-outline .elementor-button {
    color: var(--primary-accent) !important;
}

.btn-outline .elementor-button:hover {
    background-color: var(--primary-accent) !important;
}
.btn-outline .elementor-button:hover .elementor-button-text {
    color: #ffffff !important;
}

/* Image Blob CSS */
.hero-img img {
    background: radial-gradient(circle, var(--primary-accent) 0%, transparent 70%);
    border-radius: 50%;
    padding: 30px;
    transition: 0.3s;
}






/* Section 2 */
/* Bento Grid Box Styling */
.bento-box {
    background-color: var(--bg-universal) !important; /* मोड के हिसाब से बैकग्राउंड */
    border: 1px solid var(--secondary-accent) !important; /* सेकेंडरी कलर का हल्का बॉर्डर */
    border-radius: 20px !important;
    padding: 25px;
    transition: 0.4s ease-in-out !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* बॉक्स पर होवर (Hover) करने पर ग्लो इफेक्ट */
.bento-box:hover {
    border-color: var(--primary-accent) !important;
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

/* डार्क मोड में होवर ग्लो और बेहतर दिखेगा */
[data-theme='dark'] .bento-box:hover {
    box-shadow: 0px 10px 40px rgba(255, 140, 0, 0.15); /* प्राइमरी ऑरेंज ग्लो */
}



.status-glow {
    color: var(--primary-accent) !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-glow::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}