/* === Base Reset & Typography === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fc;
    color: #222;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}

/* === Container === */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* === Header === */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: #111;
}
.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}
.nav-link {
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
    color: #0066ff;
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, #ffffff, #f0f5ff);
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-content {
    max-width: 650px;
    margin: 0 auto;
}
.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}
.cta-button {
    display: inline-block;
    background: #0066ff;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}
.cta-button:hover {
    background: #004ec7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}
.cta-button.large {
    font-size: 1.2rem;
}
.hero-note {
    margin-top: 1rem;
    color: #444;
    font-size: 0.95rem;
}

/* === Blog Section === */
.blog {
    padding: 5rem 0;
    background: #fff;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: #f9faff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}
.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.5rem 0;
}
.blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}
.blog-link {
    font-weight: 600;
    color: #0066ff;
}
.blog-link:hover {
    text-decoration: underline;
}

/* === Show All Button === */
.show-all {
    display: block;
    margin: 2rem auto 0 auto;
    text-align: center;
    padding: 0.9rem 2rem;
    background: #0066ff;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}
.show-all:hover {
    background: #004ec7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

/* === Blog List Page === */
.blog-list {
    padding: 4rem 0;
    background: #fff;
}
.blog-list .section-title {
    margin-bottom: 3rem;
}
.blog-list .blog-card {
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

/* === Single Blog Post Page === */
.blog-post {
    padding: 4rem 0;
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
}
.blog-post h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.blog-post .blog-date {
    color: #666;
    margin-bottom: 2rem;
}
.blog-post p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #333;
}
.blog-post img {
    max-width: 100%;
    margin: 2rem 0;
    border-radius: 8px;
}

/* === Footer === */
footer {
    background: #111;
    color: #ddd;
    padding: 3rem 0;
    margin-top: 3rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
}
.footer-links h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li a {
    color: #ddd;
    transition: color 0.3s;
}
.footer-links ul li a:hover {
    color: #0066ff;
}
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #aaa;
}

/* === Responsive === */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* added by sairam */
general {
    color: #0066ff;
}


