*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* 🚨 Step 2: Font Family ko BODY tag par apply karein 🚨 */
body {
    /* Sabse pehle apna chuna hua font dein, phir backup font (sans-serif ya serif) */
    font-family: "Poppins", Arial, sans-serif;
}

h1,
h2,
h3 {
    font-weight: 700;
    font-family: "Montserrat";
}

.btn-success {
    background-color: #1a965a;
    /* Custom green for the CTA button */
    border-color: #1a965a;
}

/* Base Top Bar Background */
.top-bar {
    background-color: #f7f7f7;
    /* Light gray background */
}

/* Ensure menu links are dark by default */
.nav-link.fw-bold {
    color: #333;
}
