.elementor-1860 .elementor-element.elementor-element-b5c30e0{--display:flex;}.elementor-1860 .elementor-element.elementor-element-d321cc4{--display:grid;--e-con-grid-template-columns:repeat(3, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;}@media(max-width:1024px){.elementor-1860 .elementor-element.elementor-element-d321cc4{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-1860 .elementor-element.elementor-element-d321cc4{--e-con-grid-template-columns:repeat(1, 1fr);--grid-auto-flow:row;}}/* Start custom CSS for html, class: .elementor-element-89d796c *//* =========================================
   1. Base & Reset
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505; /* एकदम गहरा प्रीमियम ब्लैक */
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    /* बैकग्राउंड में एक बहुत ही सॉफ्ट और बड़ी ग्लोइंग लाइट (Spotlight) */
    background-image: radial-gradient(circle at 50% -20%, #1e293b 0%, #050505 50%);
    background-attachment: fixed;
}

/* =========================================
   2. Header Section
   ========================================= */
.sm-hero {
    text-align: center;
    padding: 70px 20px 50px;
    max-width: 700px;
    margin: 0 auto;
}

.sm-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sm-subtitle {
    font-size: 16px;
    color: #888888;
}

/* =========================================
   3. Smart Responsive Grid
   ========================================= */
.sm-grid {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px 80px;
    display: grid;
    /* अपने आप स्क्रीन के हिसाब से कॉलम बनाएगा (Auto-fit with min-width) */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* =========================================
   4. The "Smooth Floating" Card
   ========================================= */
.sm-card {
    background-color: rgba(255, 255, 255, 0.02); /* हल्का सा ट्रांसपेरेंट डार्क */
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    /* इनसेट शैडो का इस्तेमाल बॉर्डर के लिए किया है, जो बहुत तेज़ है */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 4px 6px rgba(0, 0, 0, 0.1);
    /* एकदम स्मूथ एनिमेशन के लिए Custom Cubic Bezier */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.4s ease;
    will-change: transform, box-shadow;
}

.sm-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px) scale(1.01); /* मक्खन जैसा लिफ्ट और हल्का सा ज़ूम */
    /* होवर पर शानदार स्काई ब्लू ग्लो और आउटलाइन */
    box-shadow: inset 0 0 0 1.5px #38bdf8, 
                0 20px 40px -10px rgba(0, 0, 0, 0.5), 
                0 0 20px -5px rgba(56, 189, 248, 0.3);
}

/* =========================================
   5. Icon Design
   ========================================= */
.sm-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.sm-card:hover .sm-icon {
    background-color: #38bdf8;
    color: #050505;
    transform: rotate(-5deg) scale(1.05); /* आइकॉन में जान डालने के लिए हल्का सा रोटेशन */
}

/* =========================================
   6. Content Layout
   ========================================= */
.sm-content {
    margin-left: 20px;
    flex-grow: 1;
    min-width: 0; /* टेक्स्ट को बाहर जाने से रोकता है */
}

.sm-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.sm-card:hover .sm-card-title {
    color: #38bdf8; /* टाइटल का रंग भी हल्का सा बदल जाएगा */
}

/* =========================================
   7. Soft Pill Tags
   ========================================= */
.sm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sm-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #a1a1aa;
    border-radius: 20px; /* पिल (Pill) शेप */
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sm-card:hover .sm-tag {
    background-color: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
}

/* =========================================
   8. Animated Arrow
   ========================================= */
.sm-arrow {
    color: #444444;
    margin-left: 15px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sm-card:hover .sm-arrow {
    color: #38bdf8;
    transform: translateX(6px); /* एरो आगे की तरफ स्मूथली खिसकेगा */
}

/* =========================================
   9. Mobile Responsiveness
   ========================================= */
@media (max-width: 768px) {
    .sm-grid {
        grid-template-columns: 1fr; /* मोबाइल पर सिंगल कॉलम */
        gap: 16px;
    }
    
    .sm-card {
        padding: 20px; /* मोबाइल पर थोड़ी कम पैडिंग */
    }

    .sm-title {
        font-size: 30px;
    }

    .sm-card:hover {
        transform: translateY(-3px); /* मोबाइल पर लिफ्ट इफ़ेक्ट कम किया है ताकि अलाइनमेंट न बिगड़े */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-63b3cf8 *//* =========================================
   1. Converter Grid Setup
   ========================================= */
.cnv-section {
    padding: 20px 0;
    /* अगर यह एक ही पेज पर है, तो body का डार्क बैकग्राउंड ही काम आएगा */
}

.cnv-hero {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.cnv-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    /* पर्पल/सिल्वर ग्रेडिएंट */
    background: linear-gradient(180deg, #ffffff 0%, #d8b4fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cnv-subtitle {
    font-size: 16px;
    color: #888888;
}

/* =========================================
   2. Auto-Responsive Grid
   ========================================= */
.cnv-grid {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* =========================================
   3. Smooth Floating Card (Purple Glow)
   ========================================= */
.cnv-card {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.4s ease;
    will-change: transform, box-shadow;
}

.cnv-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px) scale(1.01);
    /* होवर पर शानदार Neon Purple ग्लो */
    box-shadow: inset 0 0 0 1.5px #a855f7, 
                0 20px 40px -10px rgba(0, 0, 0, 0.5), 
                0 0 20px -5px rgba(168, 85, 247, 0.3);
}

/* =========================================
   4. Icon Design (Exchange/Sync Icons)
   ========================================= */
.cnv-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.cnv-card:hover .cnv-icon {
    background-color: #a855f7; /* Purple */
    color: #ffffff;
    transform: rotate(180deg) scale(1.05); /* कन्वर्टर के लिए 180 डिग्री रोटेशन बहुत कूल लगता है */
}

/* =========================================
   5. Content Layout
   ========================================= */
.cnv-content {
    margin-left: 20px;
    flex-grow: 1;
    min-width: 0;
}

.cnv-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.cnv-card:hover .cnv-card-title {
    color: #d8b4fe; /* हल्का पर्पल */
}

/* =========================================
   6. Soft Pill Tags
   ========================================= */
.cnv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cnv-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #a1a1aa;
    border-radius: 20px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cnv-card:hover .cnv-tag {
    background-color: rgba(168, 85, 247, 0.15);
    color: #d8b4fe;
}

/* =========================================
   7. Animated Arrow
   ========================================= */
.cnv-arrow {
    color: #444444;
    margin-left: 15px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cnv-card:hover .cnv-arrow {
    color: #a855f7;
    transform: translateX(6px);
}

/* =========================================
   8. Mobile Responsiveness
   ========================================= */
@media (max-width: 768px) {
    .cnv-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cnv-card {
        padding: 20px;
    }

    .cnv-title {
        font-size: 30px;
    }

    .cnv-card:hover {
        transform: translateY(-3px);
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5f9d728 *//* =========================================
   1. Font Download Section Setup
   ========================================= */
.fd-section {
    padding: 20px 0;
}

.fd-hero {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.fd-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    /* ग्रीन/सिल्वर ग्रेडिएंट */
    background: linear-gradient(180deg, #ffffff 0%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fd-subtitle {
    font-size: 16px;
    color: #888888;
}

/* =========================================
   2. Auto-Responsive Grid
   ========================================= */
.fd-grid {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* =========================================
   3. Smooth Floating Card (Green Glow)
   ========================================= */
.fd-card {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.4s ease;
    will-change: transform, box-shadow;
}

.fd-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px) scale(1.01);
    /* होवर पर शानदार Neon Green ग्लो */
    box-shadow: inset 0 0 0 1.5px #10b981, 
                0 20px 40px -10px rgba(0, 0, 0, 0.5), 
                0 0 20px -5px rgba(16, 185, 129, 0.3);
}

/* =========================================
   4. Icon Design (Download Bounce)
   ========================================= */
.fd-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.fd-card:hover .fd-icon {
    background-color: #10b981; /* Emerald Green */
    color: #ffffff;
    /* डाउनलोड का फील देने के लिए आइकॉन हल्का सा नीचे जाएगा */
    transform: translateY(4px) scale(1.05); 
}

/* =========================================
   5. Content Layout
   ========================================= */
.fd-content {
    margin-left: 20px;
    flex-grow: 1;
    min-width: 0;
}

.fd-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.fd-card:hover .fd-card-title {
    color: #6ee7b7; /* लाइट ग्रीन */
}

/* =========================================
   6. Soft Pill Tags
   ========================================= */
.fd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fd-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #a1a1aa;
    border-radius: 20px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.fd-card:hover .fd-tag {
    background-color: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
}

/* =========================================
   7. Animated Download Arrow
   ========================================= */
.fd-arrow {
    color: #444444;
    margin-left: 15px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fd-card:hover .fd-arrow {
    color: #10b981;
    /* डाउनलोड बटन नीचे की तरफ खिसकेगा */
    transform: translateY(4px);
}

/* =========================================
   8. Mobile Responsiveness
   ========================================= */
@media (max-width: 768px) {
    .fd-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .fd-card {
        padding: 20px;
    }

    .fd-title {
        font-size: 30px;
    }

    .fd-card:hover {
        transform: translateY(-3px);
    }
}/* End custom CSS */