/* style.css */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

header {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.logo {
    height: 50px;
    width: auto;
}

.btn-primary {
    background: #1976d2;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    text-decoration: none;
}

.hero {
    background: url('assets/cvyatra.png') no-repeat center center/cover;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    background-color: #004080;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.tools, .about, .contact {
    padding: 3rem 2rem;
    text-align: center;
}

.tool-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.tool-card {
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

footer {
    background: #eee;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

.logo-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slogan {
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
