/* फाइल का नाम: style.css */
/* इसका काम: वेबसाइट की पूरी डिज़ाइन को संभालना। */

/* --- Google Fonts & Global Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    /* बदलने के लिए: अपनी वेबसाइट के मुख्य रंगों को यहाँ बदलें। */
    --primary-color: #007BFF; /* मुख्य रंग - नीला */
    --heading-color: #1a1a1a; /* हेडिंग का रंग */
    --text-color: #4a4a4a;    /* सामान्य टेक्स्ट का रंग */
    --background-color: #f8f9fa; /* पेज का बैकग्राउंड */
    --white-color: #ffffff;
    --border-color: #dee2e6;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    --border-radius: 8px;
}

/* --- ग्लोबल रीसेट और बेसिक स्टाइल --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- हेडर और नेविगेशन का स्टाइल --- */
.site-header { background-color: var(--white-color); box-shadow: 0 2px 4px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.navbar-container { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 40px; }
.logo-text { font-size: 1.4rem; font-weight: 700; color: var(--heading-color); margin-left: 10px; }
.nav-main { display: flex; }
.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-link { color: var(--text-color); font-weight: 500; text-decoration: none; transition: color 0.3s ease; padding: 5px 0; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary-color); }
.nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--primary-color); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.hamburger { display: none; cursor: pointer; background: none; border: none; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--heading-color); transition: all 0.3s ease-in-out; }

/* --- हीरो सेक्शन का स्टाइल --- */
.hero-section { background: var(--white-color); text-align: center; padding: 4rem 20px; }
.hero-section h1 { font-size: 3rem; color: var(--heading-color); margin-bottom: 1rem; }
.hero-section p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; }

/* --- मुख्य कंटेंट और टूल ग्रिड का स्टाइल --- */
.page-container { padding-top: 3rem; padding-bottom: 3rem; }
.section-title { text-align: center; font-size: 2.2rem; color: var(--heading-color); margin-bottom: 3rem; }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.tool-card { background-color: var(--white-color); border: 1px solid var(--border-color); border-radius: var(--border-radius); padding: 2rem; text-decoration: none; color: var(--text-color); transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; text-align: center; }
.tool-card:hover { transform: translateY(-8px); box-shadow: var(--box-shadow); border-color: var(--primary-color); }
.tool-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.tool-title { font-size: 1.4rem; color: var(--heading-color); margin-bottom: 0.5rem; }
.tool-description { flex-grow: 1; }

/* --- फुटर का स्टाइल --- */
.site-footer { background-color: #1a1a1a; color: #a9a9a9; padding: 3rem 0 0; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; padding-bottom: 3rem; }
.footer-about h4, .footer-links h4, .footer-legal h4 { color: var(--white-color); margin-bottom: 1rem; font-size: 1.1rem; }
.footer-links ul, .footer-legal ul { list-style: none; }
.footer-links li a, .footer-legal li a { color: #a9a9a9; text-decoration: none; display: inline-block; margin-bottom: 0.7rem; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-links li a:hover, .footer-legal li a:hover { color: var(--white-color); padding-left: 5px; }
.footer-bottom { border-top: 1px solid #333; text-align: center; padding: 1.5rem 0; }

/* --- मोबाइल के लिए रेस्पॉन्सिव स्टाइल --- */
@media (max-width: 768px) {
    .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: var(--white-color); width: 100%; height: calc(100vh - 70px); text-align: center; transition: left 0.3s ease-in-out; padding-top: 2rem; gap: 2.5rem; }
    .nav-menu.active { left: 0; }
    .nav-link { font-size: 1.2rem; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hero-section h1 { font-size: 2.2rem; }
    .hero-section p { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
}





/* --- Homepage Tool Search Bar Styles --- */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 2rem auto 0;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

#toolSearchInput {
    width: 100%;
    padding: 1rem 1rem 1rem 45px; /* बाएं पैडिंग आइकॉन के लिए */
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

#toolSearchInput:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
}





/* --- Header Dropdown Menu Styles --- */
.nav-item.dropdown {
    position: relative; /* ड्रॉपडाउन को इसके सापेक्ष रखना */
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%; /* मेनू के ठीक नीचे दिखेगा */
    left: 0;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    list-style: none;
    min-width: 250px; /* ड्रॉपडाउन की चौड़ाई */
    padding: 0.5rem 0;
    z-index: 1001;
    
    /* शुरुआत में छिपा हुआ रहेगा */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* जब कर्सर 'Tools' पर जाए, तो ड्रॉपडाउन दिखाओ */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--background-color);
    padding-left: 1.7rem; /* थोड़ा सा इफ़ेक्ट */
    color: var(--primary-color);
}

/* मोबाइल के लिए ड्रॉपडाउन का स्टाइल */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static; /* मोबाइल पर स्टैटिक रहेगा */
        box-shadow: none;
        border-top: 1px solid var(--border-color);
        margin-top: 1rem;
        padding-left: 1rem; /* थोड़ा इंडेंट */
        display: none; /* जावास्क्रिप्ट इसे खोलेगा */
    }
    .dropdown-menu.active {
        display: block; /* जावास्क्रिप्ट इसे दिखाएगा */
    }
}
