
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  pointer-events: auto !important;
}

:root{--gold:#ffd700;--darkblue:#0f3b6f;--white:#fff}
body{font-family:system-ui,Arial,Helvetica,sans-serif;background:#f8f9fa}
.text-gold{color:var(--gold)}.text-darkblue{color:var(--darkblue)}
.btn-primary{background:var(--darkblue);color:#fff;border:none;transition:.18s}
.btn-primary:hover{background:#e9e9e9;color:var(--darkblue);border:1px solid var(--darkblue)}
.btn-outline-primary{color:var(--darkblue);border-color:var(--darkblue)}
.card-hover{transition:all .18s ease}.card-hover:hover{transform:translateY(-6px);box-shadow:0 8px 30px rgba(0,0,0,.12)}
.search-dropdown{position:absolute;right:120px;top:64px;background:#fff;border:1px solid #ddd;z-index:1000;padding:6px;max-height:280px;overflow:auto;width:340px;color:#000}
.swatch-badge{border:1px solid #ddd;display:inline-block;margin-right:6px}
footer{background:var(--darkblue);color:#fff}
.btn-white-search{background:#fff;border:1px solid #ccc}
.btn-white-search:hover{background:#eee}
/* FOLLOW US CARD */
.footer-card.follow-us {
  flex-grow: 1;
  flex-basis: 22%;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* content center */
  text-align: center;    /* text center */
  padding: 15px;
  border-radius: 8px;
  background-color: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  margin-top: -20px;   /* thoda upar kheench liya */
}

/* FOLLOW US HEADING */
.footer-card.follow-us h3 {
  margin-bottom: 15px;
  font-weight: bold;   /* bold remove */
  font-size: 26px;       /* thoda balanced */
  color: white;
  text-shadow: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-card.follow-us h3:hover {
  color: #0b3b77;  /* hover blue */
  text-shadow: 0 0 10px white, 0 0 20px white; /* blue glow */
}

/* ICONS WRAP */
.footer-card.follow-us ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;   /* vertical icons */
  align-items: center;      /* center aligned */
  gap: 12px;
}

/* ICON STYLE */
.footer-card.follow-us ul li a {
  font-size: 24px;
  color: white;  /* default white */
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
  text-decoration: none;
}

.footer-card.follow-us ul li a:hover {
  color: #0b3b77; /* hover blue */
  transform: scale(1.2);
  text-shadow: 0 0 10px white, 0 0 20px white; /* blue glow */
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
  .footer-card.follow-us {
    margin-top: 0;  /* mobile pe neeche na jaye */
  }
}

/* include patch styles */
@import 'patch_style.css';
.shine-text {
  background: linear-gradient(90deg, #0f3b6f, #1e90ff, #0f3b6f);
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: shine 3s linear infinite;
  font-weight: bold;
}

@keyframes shine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
