/* ================= GLOBAL FIX ================= */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

/* ================= NAVBAR ================= */
.navbar.fixed-top {
  left: 0;
  right: 0;
}

.main-navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
}

/* BOOTSTRAP CONTAINER WIDTH FIX */
.main-navbar .container {
  max-width: 100%;
}

/* ================= LOGO ================= */
.navbar-brand img {
  max-height: 60px;
}

/* ================= NAV LINKS ================= */
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #111 !important;
  margin: 0 12px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #b89b5e !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: -6px;
  background: linear-gradient(90deg, #c9a14a, #f5e6a8);
  transition: 0.4s;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:focus {
  outline: none;
}

/* ================= FOOTER ================= */
.footer-section {
  background-color: #0c0c0c;
  color: #d0d0d0;
  padding: 50px 0 20px;
  font-size: 14px;
}

.footer-section h5 {
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d0d0d0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-bottom {
  font-size: 13px;
  color: #9b9b9b;
}
.main-navbar .container {
  max-width: 100%;
}
/* ===== FINAL NAVBAR SHAKE FIX ===== */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  overflow-x: hidden;
}

/* FIXED-TOP + CONTAINER JUMP FIX */
.navbar.fixed-top {
  left: 0;
  right: 0;
}
/* ================= GLOBAL FIX ================= */
html {
  overflow-y: scroll;          /* scrollbar hamesha visible */
  scrollbar-gutter: stable;    /* layout shift ko block kare */
}

body {
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.main-navbar {
  position: fixed;            /* already fixed-top */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;                /* full width, container jump fix */
  z-index: 1030;              /* Bootstrap default */
}

/* fix container inside fixed navbar */
.main-navbar .container {
  max-width: 100%;
  padding-left: 15px;         /* Bootstrap default */
  padding-right: 15px;
}
.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030; /* bootstrap default z-index */
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* container ke andar ki width fixed karo */
.main-navbar .container {
  max-width: 100%;
  padding-left: 15px;  /* bootstrap default */
  padding-right: 15px;
}
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  overflow-x: hidden;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #111 !important;
  margin: 0 12px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #b89b5e !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: -6px;
  background: linear-gradient(90deg, #c9a14a, #f5e6a8);
  transition: 0.4s;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:focus {
  outline: none;
}
