
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /*background: #3a3a3a;*/ /*#1a1a2e;*/
    background: #0d0d0d;
    color: #e0e0e0;
    line-height: 1.6;
}

header {
    background: #2d2d44;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/*nav {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    max-width: 1400px;*/
/*    margin: 0 auto;*/
/*}*/

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.cards-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #1e1e1e;
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #5a7d9a;
    box-shadow: 0 10px 25px rgba(90, 125, 154, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.card p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.features {
    max-width: 1200px;
    margin: 5rem auto 3rem;
    padding: 0 2rem;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.features-subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: #252538;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #5a7d9a;
}

.feature-item h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 2rem;
    margin-top: 5rem;
    background: #252538;
    color: #b0b0b0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }
}
/* SEO Content Section Styling */
.seo-content {
    max-width: 1100px;
    margin: 60px auto; /* Feature section se gap dene ke liye */
    padding: 40px;
    background: #1e1e1e; /* Editor se thoda dark background */
    border-radius: 12px;
    border: 1px solid #333;
    line-height: 1.8;
    color: #b0b0b0; /* Light grey text for readability */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.seo-content h3 {
    color: #7a9d7a; /* Wahi green jo tere buttons mein hai */
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.seo-content h4 {
    color: #9cdcfe; /* Light blue subheaders */
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.seo-content p {
    margin-bottom: 18px;
    font-size: 16px;
    text-align: justify; /* Professional look ke liye */
}

.seo-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.seo-content li {
    margin-bottom: 10px;
    list-style-type: circle;
}

.seo-content strong {
    color: #ce9178; /* Highlighted keywords ka color */
}

/* Link styling agar article ke beech mein links ho */
.seo-content a {
    color: #7a9d7a;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .seo-content {
        margin: 30px 15px;
        padding: 20px;
    }
}