*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
}

/* LEFT LOGO SECTION */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    height: 80px;
    margin-right: 10px;
}

/* TEXT PART */
.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.logo-text h1 span {
    color: #b22222; /* red for 'सेवा' */
}

.logo-text small {
    font-size: 13px;
    color: #333;
    margin-left:2px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* TEXT LOGO */
.logo-text h1 {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* Color Styling */
.logo-text .one {
    color: #ff5a00; /* orange */
}

.logo-text .stop {
    color: #444; /* dark gray */
}

.logo-text .utility {
    color: #2e7d32; /* green */
}


/* NAVIGATION */
.nav {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 16px;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* Vertical separator */
.nav span {
    color: #999;
}

/* FOOTER */
.footer {
    background: #1f3d1f;
    color: #fff;
    padding: 40px 50px 20px;
}

/* FOOTER GRID */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

/* FOOTER COLUMN */
.footer-col {
    flex: 1;
    min-width: 220px;
}

/* FOOTER TITLE */
.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #a5d6a7;
}

/* LINKS */
.footer-col a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 15px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px;
}

/* FOOTER TEXT */
.footer-col p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    color: #aaa;
}