/* Exact CSS Clone from https://velki-official.com/ */

:root {
  --yellow: #f3d66a;
  --nav-gray: #d6d6d6;
  --nav-border: #cfcfcf;
  --accent: #ff7a00;
  --dark: #222;
  --cream: #fff8e1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Serif Bengali", serif;
  background: #fff;
  color: #111;
  padding-bottom: 30px;
}

.wrap {
  max-width: 450px;
  margin: 0 auto;
}

/* Header */
.header-logo {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.banner medium {
  text-align: center !important;
  width: 100%;
  display: block;
  margin-top: 5px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Nav Section */
.nav-wrapper {
  margin-top: 10px;
  margin-bottom: .6rem;
}

.nav-divider-top, .nav-divider-bottom {
  height: 6px;
  background: var(--yellow);
}

.nav-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  background: #ff7a00;
  position: relative;
  width: 100%;
}

.nav-row::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2.4px;
  background: #c55a11;
  z-index: 0;
  opacity: 0.5;
}

.nav-btn {
  flex: 1;
  text-align: center;
  padding: .65rem .2rem;
  font-size: .9rem;
  font-weight: 800;
  border-right: 1px solid var(--nav-border);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  text-decoration: none;
  position: relative;
  z-index: 2;
  background: #e6e6e6;
  transition: background-color 0.2s ease;
}

.nav-btn:hover {
  background: #d8d8d8;
}

.nav-btn:last-child {
  border-right: none;
}

@media (max-width: 360px) {
  .nav-btn {
    font-size: .78rem;
    padding: .55rem .1rem;
  }
}

/* Info Cards */
.info-block {
  background: var(--dark);
  color: #fff;
  margin: 1rem .6rem;
  padding: 1rem;
  border-radius: 8px;
  border-left: 6px solid #b8860b;
}

.info-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.info-inner {
  background: var(--cream);
  padding: .8rem;
  border-radius: 8px;
  border: 6px solid rgba(0,0,0,0.05);
  color: #222;
  line-height: 1.7;
}

.info-inner p {
  margin: 0 0 0.8rem 0;
}

.info-inner p:last-child {
  margin-bottom: 0;
}

/* Agent Specific */
.agent-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: .5rem;
}

.agent-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
}

.agent-id {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}

.phone {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
}

.wa-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: block;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.highlight-link {
  color: #004bff;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 4px;
}

.highlight-link:hover {
  color: #001f88;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 18px 10px;
  margin-top: 40px;
  border-top: 6px solid #c69219;
  font-family: 'Noto Serif Bengali', serif;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-desc {
  font-size: .95rem;
  color: #ccc;
}

.footer-link-wrap {
  margin-top: 10px;
}

.footer-link {
  color: #f3d66a;
  font-weight: 700;
  text-decoration: none;
}

.footer-copy {
  margin-top: 12px;
  font-size: .85rem;
  color: #888;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}
