/* style.css */
:root {
    --primary-color: #0d6efd;
    --primary-hover: #0b5ed7;
    --bg-color: #f8f9fa;
    --text-color: #212529;
    --card-bg: #ffffff;
    --border-color: #dee2e6;
    --font-heading: 'Mukta Mahee', sans-serif;
    --font-body: 'Mukta Mahee', sans-serif;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary-color: #3b82f6;
    --primary-hover: #60a5fa;
    --bg-color: #0f172a;
    --text-color: #f1f5f9;
    --card-bg: #1e293b;
    --border-color: #334155;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: var(--transition);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: var(--primary-color);
}

#theme-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

#theme-toggle:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-btn {
    font-weight: 700;
    font-size: 1.1rem;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff !important;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}

.lang-btn:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 1rem;
    background: linear-gradient(to bottom, var(--card-bg), var(--bg-color));
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
    color: #fff;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-title p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Section */
.tools-section,
.blog-section {
    padding: 5rem 5%;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background-color: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

.new-badge {
    background: #ffc107;
    color: #000;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .icon-box {
    background: rgba(59, 130, 246, 0.2);
}

.tool-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.tool-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.tool-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.blog-img {
    height: 220px;
    background-position: center;
    background-size: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-content a {
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--card-bg);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-color);
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }
}@charset " UTF-8\;

/* Discover & AdSense Layout Enhancements */
.hero-badge { background: rgba(255, 255, 255, 0.2); display: inline-block; padding: 0.5rem 1.5rem; border-radius: 2rem; font-size: 0.9rem; margin-bottom: 1.5rem; backdrop-filter: blur(5px); }
.hero-btns { display: flex; gap: 1.5rem; justify-content: center; margin-top: 2rem; }
.cta-button.primary { background: var(--primary-color); color: white; }
.cta-button.secondary { background: transparent; border: 2px solid white; color: white; }
.cta-button.secondary:hover { background: white; color: var(--primary-color); }

.featured-tool-section { max-width: 1000px; margin: -3rem auto 4rem; padding: 0 2rem; position: relative; z-index: 10; }
.featured-tool-card { background: var(--card-bg); padding: 2.5rem; border-radius: 1.5rem; box-shadow: 0 20px 40px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 2rem; border: 1px solid var(--border-color); transition: var(--transition); }
.featured-tool-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.featured-icon { font-size: 3rem; color: #ffc107; background: rgba(255, 193, 7, 0.1); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 1rem; }
.featured-btn { margin-left: auto; background: var(--primary-color); color: white; padding: 1rem 2rem; border-radius: 0.8rem; text-decoration: none; font-weight: 600; white-space: nowrap; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
.blog-card { background: var(--card-bg); border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; border: 1px solid var(--border-color); }
.blog-img-box { width: 100%; height: 240px; overflow: hidden; }
.blog-img-box img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-img-box img { transform: scale(1.05); }
.blog-content { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; justify-content: space-between; font-size: 0.85rem; color: #666; margin-bottom: 1rem; }
.blog-footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--border-color); }
.author { font-weight: 600; font-size: 0.9rem; color: var(--primary-color); }
.read-more { color: var(--primary-color); text-decoration: none; font-weight: 700; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.read-more:hover { gap: 12px; }

@media (max-width: 768px) { .featured-tool-card { flex-direction: column; text-align: center; } .featured-btn { margin-left: 0; width: 100%; } .hero-btns { flex-direction: column; } .blog-grid { grid-template-columns: 1fr; } }

/* Trust Section Styling */
.trust-section { background: rgba(0,0,0,0.02); padding: 5rem 5%; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.trust-card { background: var(--card-bg); padding: 3rem 2rem; border-radius: 1.5rem; text-align: center; border: 1px solid var(--border-color); transition: var(--transition); }
.trust-card i { font-size: 3rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.trust-card h4 { font-size: 1.3rem; margin-bottom: 1rem; }
.trust-card:hover { transform: scale(1.03); box-shadow: var(--hover-shadow); }
