* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'popins' , Sans-Serif;
}

body {
    background: #ffffff;
    color: #333;
}

/* TOP BAR */
.top-bar {
    background: #111;
    color: #fff;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #c62828;
}

.nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.login-btn {
    margin-left: 15px;
    padding: 8px 16px;
    background: #c62828;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* SLIDER */
.slider {
    background: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.slide h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* SECTIONS */
.section {
    padding: 50px 20px;
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
    color: #c62828;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.card {
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fafafa;
}

/* EMI */
.emi {
    background: #c62828;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

/* ADDRESS */
.address {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

/* SOCIAL */
.social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}

.social a {
    text-decoration: none;
    color: #c62828;
    font-weight: bold;
}

/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 15px;
}