/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HEADER */
header {
    position: relative;
    z-index: 9999;
    background: #b02626;
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
}

/* MENU */
nav {
    background: #1f7a3f;
    position: relative;
    z-index: 9999;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 12px 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

/* HERO / BANNER */
.hero {
    position: relative;
    z-index: 1;
    height: 400px;
    background: #eee;
}
.footer-line{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
    text-align:center;

    font-size:17px;        /* 🔼 font size बढ़ा */
    font-weight:700;       /* 🔥 bold */
}

