/* ===============================
   FIX HEADER ↔ CAROUSEL GAP
   =============================== */

/* Header bottom space remove */
header,
.navbar,
.top-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Carousel top space remove */
.carousel,
.hero,
.slider,
.banner {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Agar section wrapper ho */
section {
  margin-top: 0;
}

/* Body default margin reset */
body {
  margin: 0;
  padding: 0;
}


/*==== header css === */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #f5f8ff, #e6ebf5);
}

/* ================= WRAPPER ================= */
.header {
  padding: 30px;
}

/* ================= NAV BAR (DESIGNER BOSS) ================= */
.nav {
  max-width: 1200px;
  margin: auto;
  padding: 18px 28px;
  border-radius: 24px;

  /* BHAYANAK DESIGNER GRADIENT */
  background:
    linear-gradient(180deg,
      #8fb2ff 0%,
      #5f84ff 30%,
      #3c5edc 60%,
      #253c9b 100%);

  /* REAL GLASS FEEL */
  backdrop-filter: blur(10px) saturate(140%);

  /* DEEP 3D SHADOW */
  box-shadow:
    0 30px 70px rgba(10, 20, 60, .55),
    inset 0 1px 0 rgba(255, 255, 255, .45),
    inset 0 -10px 20px rgba(0, 0, 0, .35);

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;

  position: relative;
  overflow: hidden;

  transform-style: preserve-3d;
  perspective: 1200px;

  animation: designerEntry .9s ease-out;
}

/* ===== LIGHT GLASS STREAK (IMAGE KA SOUL) ===== */
.nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .8),
      transparent);
}

/* ===== MOVING REFLECTION ===== */
.nav::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 40%,
      rgba(255, 255, 255, .18),
      transparent 60%);
  animation: glassMove 6s linear infinite;
  pointer-events: none;
}

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;

  transform: translateZ(40px);
  text-shadow: 0 6px 15px rgba(0, 0, 0, .45);
}

.logo img {
  width: 42px;
}

/* ================= MENU ================= */
.menu {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.menu a {
  color: #f0f4ff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .3px;
  opacity: .95;
  position: relative;
}

/* ================= WHATSAPP BUTTON (FACTORY LEVEL) ================= */
.whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 34px;

  background:
    linear-gradient(180deg,
      #3dff98,
      #16c969);

  color: #ffffff;
  font-weight: 600;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, .55),
    inset 0 1px 0 rgba(255, 255, 255, .6),
    inset 0 -6px 12px rgba(0, 0, 0, .35);

  transform: translateZ(60px);
}

.whatsapp img {
  width: 18px;
}

/* ================= ENTRY ================= */
@keyframes designerEntry {
  from {
    opacity: 0;
    transform: translateY(-18px) rotateX(6deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* ================= GLASS MOVE ================= */
@keyframes glassMove {
  from {
    transform: translateX(-100%)
  }

  to {
    transform: translateX(100%)
  }
}

/* ================= TABLET (2 ROW – SAME LAYOUT) ================= */
@media(max-width:1024px) {
  .nav {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .logo {
    grid-column: 1/2;
    grid-row: 1/2;
    width: 100px;
  }

  .whatsapp {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .menu {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

/* ================= MOBILE ================= */
@media(max-width:768px) {
  .menu {
    gap: 18px;
  }
}

.menu a {
  cursor: pointer;
  transition:
    transform .2s ease,
    text-shadow .2s ease,
    opacity .2s ease;
}

/* Hover – subtle lift + glow */
.menu a:hover {
  transform: translateY(-2px);
  text-shadow: 0 6px 14px rgba(0, 0, 0, .45);
  opacity: 1;
}

/* Click feel */
.menu a:active {
  transform: translateY(0);
  opacity: .85;
}

.whatsapp {
  cursor: pointer;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

/* HOVER – button upar aaye + glow */
.whatsapp:hover {
  transform: translateZ(60px) translateY(-3px);
  box-shadow:
    0 22px 45px rgba(0, 0, 0, .6),
    0 0 25px rgba(60, 255, 160, .65),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  filter: brightness(1.1);
}

/* CLICK / PRESS – real button feel */
.whatsapp:active {
  transform: translateZ(40px) translateY(0);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, .45),
    inset 0 4px 10px rgba(0, 0, 0, .4);
  filter: brightness(.95);
}

/* ================= MOBILE FIX ONLY ================= */
@media (max-width: 480px) {

  .header {
    padding: 16px;
  }

  .nav {
    width: 100%;
    padding: 14px 16px;
    border-radius: 20px;
    gap: 14px;
  }

  /* Logo text break allowed */
  .logo {
    font-size: 18px;
    line-height: 1.1;
  }

  .logo span {
    display: block;
  }

  .logo img {
    width: 36px;
  }

  /* Menu smaller & centered */
  .menu {
    gap: 14px;
  }

  .menu a {
    font-size: 13px;
  }

  /* WhatsApp button shrink + safe */
  .whatsapp {
    padding: 8px 14px;
    border-radius: 26px;
    font-size: 13px;
    box-shadow:
      0 10px 20px rgba(0, 0, 0, .45),
      inset 0 1px 0 rgba(255, 255, 255, .4);
  }

  .whatsapp img {
    width: 16px;
  }
}

/* ===============================CAROUSEL CONTAINER================================ */
.neo-carousel {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, #1b1b1b, #000);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

/* ===============================
   IMAGE TRACK
================================ */
.neo-track {
  display: flex;
}

.neo-track img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===============================
   LOGO
================================ */
.neo-logo {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.neo-logo img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  box-shadow: 0 0 25px gold;
}

/* ===============================
   TEXT
================================ */
.neo-title {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 34px;
  font-weight: 700;
  color: rgb(250, 8, 197);
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.9);
  z-index: 20;
}

.neo-top-text {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: #0c0c0c;
  z-index: 20;
}

/* ===============================
   PREV / NEXT BUTTONS (FIXED)
================================ */
.neo-prev,
.neo-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  font-size: 26px;
  color: #07f107;
  background: rgba(19, 3, 247, 0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 30;
  /* 👈 ABOVE EVERYTHING */
}

.neo-prev {
  left: 15px;
}

.neo-next {
  right: 15px;
}

/* ===============================
   NEON BUTTONS
================================ */
.neo-btn {
  position: absolute;
  bottom: 18px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  /* 👈 ABOVE OVERLAY */
  transition: 0.3s;
}

.neo-btn img {
  width: 28px;
}

.neo-btn.wa,
.neo-btn.call {
  background: #25D366;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.9);
}

.neo-btn.wa {
  right: 90px;
}

.neo-btn.call {
  right: 20px;
}

/* ===============================
   CLICKABLE OVERLAY (SAFE)
================================ */
.neo-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  /* 👈 BELOW BUTTONS */
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .neo-track img {
    height: 260px;
  }

  .neo-title {
    font-size: 26px;
  }

  .neo-top-text {
    font-size: 18px;
  }
}

/* ================= LONG CARD ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #fff;
}

.page {
  padding: 16px;
  display: flex;
  justify-content: center;
}

/* ================= MAIN CARD ================= */
.lux-card {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: flex-start;
  /* top align */
  gap: 20px;
  background: linear-gradient(180deg, #1a1206, #050301);
  border-radius: 26px;
  border: 4px solid #d4af37;
  padding: 20px;
  box-shadow:
    0 0 60px rgba(212, 175, 55, 0.8),
    inset 0 0 30px rgba(255, 215, 0, 0.25);
  position: relative;
  overflow: hidden;
  flex-wrap: nowrap;
}

/* ================= GOLD SHINE ================= */
.lux-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: linear-gradient(120deg, transparent, rgba(255, 215, 0, 0.25), transparent);
  animation: shine 7s linear infinite;
}

@keyframes shine {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

/* ================= LEFT IMAGE ================= */
.lux-left {
  flex: 0 0 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lux-img-border {
  padding: 5px;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
  width: 180px;
  height: 180px;
}

.lux-img-border img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* ================= RIGHT CONTENT ================= */
.lux-right {
  flex: 1 1 auto;
  padding: 16px;
  color: #f2f2f2;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  overflow: hidden;
}

.lux-right h2 {
  font-size: 24px;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lux-right p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* max 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ================= BUTTONS ================= */
.lux-btns {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 40px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
}

.icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}


.call,
.wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
}

.call:hover,
.wa:hover {
  transform: scale(0.9);
  box-shadow: 0 0 45px rgba(37, 211, 102, 1);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

  /* tablet */
  .lux-left {
    flex: 0 0 140px;
  }

  .lux-img-border {
    width: 140px;
    height: 140px;
  }

  .lux-right h1 {
    font-size: 20px;
  }

  .lux-right p {
    font-size: 13px;
  }

  .btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {

  /* mobile */
  .lux-left {
    flex: 0 0 100px;
  }

  .lux-img-border {
    width: 100px;
    height: 120px;
  }

  .lux-right h1 {
    font-size: 16px;
  }

  .lux-right p {
    font-size: 12px;
  }

  .btn {
    padding: 4px 8px;
    font-size: 11px;
  }
}

.lux-right h1 {
  font-size: 24px;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
  /* smooth effect */
}

/* HOVER EFFECT */
.lux-right h1:hover {
  color: #25d366;
  /* green */
  cursor: pointer;
}

.lux-right h1:hover {
  color: #25d366;
  text-shadow: 0 0 10px rgba(37, 211, 102, 0.8);
}

/* REMOVE DEFAULT LINK STYLE */
.lux-title-link {
  color: #f2f2f2;
  /* h1 ka original color */
  text-decoration: none;
  /* underline remove */
}

/* HOVER EFFECT */
.lux-title-link:hover {
  color: #25d366;
  text-shadow: 0 0 10px rgba(37, 211, 102, 0.8);
}

/* VISITED LINK BLUE/PURPLE FIX */
.lux-title-link:visited {
  color: #f2f2f2;
}

/*footer css*/
/* Premium Footer */
.premium-footer {
  background: linear-gradient(135deg, #0a1f44, #1b3c8f);
  color: #fff;
  padding: 50px 15px 40px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 -20px 60px rgba(255, 215, 0, 0.25);
}

/* Footer Wrapper */
.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  /* Reduced gap */
  justify-content: space-between;
  align-items: flex-start;
}

/* Brand Column */
.footer-col.brand {
  flex: 1 1 200px;
  /* Smaller width */
  min-width: 180px;
}

.footer-logo {
  font-size: 24px;
  /* Smaller text */
  font-weight: 700;
  color: #ffd700;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}

.footer-desc {
  font-size: 12px;
  /* Smaller text */
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 15px;
}

/* Other Columns */
.footer-col:not(.brand) {
  flex: 1 1 120px;
  min-width: 100px;
}

.footer-col h2 {
  font-size: 14px;
  /* Smaller heading */
  margin-bottom: 10px;
  position: relative;
}

.footer-col h2::after {
  width: 30px;
  /* Shorter underline */
  height: 2px;
  bottom: -6px;
}

/* Links */
.footer-col a {
  display: block;
  margin: 6px 0;
  /* Reduced gap */
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  /* Smaller link text */
  position: relative;
  transition: 0.3s;
}

.footer-col a::before {
  content: '➤';
  position: absolute;
  left: -14px;
  opacity: 0;
  transition: 0.3s;
  color: gold;
}

.footer-col a:hover {
  color: gold;
  transform: translateX(4px);
}

.footer-col a:hover::before {
  opacity: 1;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 8px;
  /* Smaller gap */
  margin-top: 15px;
}

.social-icons a {
  width: 32px;
  /* Smaller icons */
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: gold;
  font-size: 16px;
  transition: 0.4s;
}

.social-icons a:hover {
  background: gold;
  color: #000;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 15px gold;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding: 12px;
  font-size: 12px;
  /* Smaller */
  background: rgba(0, 0, 0, 0.35);
  margin-top: 25px;
}

.footer-bottom a {
  color: gold;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-wrapper {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-col.brand {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-col:not(.brand) {
    flex: 1 1 100px;
    text-align: left;
  }

  .footer-col h2 {
    font-size: 13px;
  }

  .footer-desc,
  .footer-col a {
    font-size: 12px;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .premium-footer {
    padding: 35px 10px 25px;
  }

  .footer-col h2::after {
    width: 20px;
    height: 2px;
  }

  .footer-desc,
  .footer-col a {
    font-size: 11px;
  }

  .social-icons a {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 11px;
    padding: 8px;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.footer-logo span {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
}

/* Brand Logo Wrapper */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Premium Circular Logo */
.logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 3px;
  /* space for gradient ring */
  background: linear-gradient(135deg,
      #ffd700,
      #ffcc33,
      #fff3b0,
      #c9a227);
  box-shadow:
    0 0 15px rgba(255, 215, 0, 0.6),
    0 0 30px rgba(255, 215, 0, 0.3);
  animation: luxuryGlow 3s infinite ease-in-out;
}

/* Inner Image */
.logo-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #0a1f44;
}

/* Brand Text */
.footer-logo span {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffd700, #fff3b0, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

/* Hover Effects */
.footer-logo:hover .logo-circle {
  transform: scale(1.1) rotate(6deg);
  box-shadow:
    0 0 25px rgba(255, 215, 0, 0.9),
    0 0 50px rgba(255, 215, 0, 0.6);
}

.footer-logo:hover span {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Smooth Transitions */
.footer-logo,
.logo-circle,
.footer-logo span {
  transition: all 0.4s ease;
}

/* Glow Animation */
@keyframes luxuryGlow {
  0% {
    box-shadow:
      0 0 12px rgba(255, 215, 0, 0.5),
      0 0 25px rgba(255, 215, 0, 0.3);
  }

  50% {
    box-shadow:
      0 0 22px rgba(255, 215, 0, 0.9),
      0 0 45px rgba(255, 215, 0, 0.6);
  }

  100% {
    box-shadow:
      0 0 12px rgba(255, 215, 0, 0.5),
      0 0 25px rgba(255, 215, 0, 0.3);
  }
}

/* ===============================
   PREMIUM EFFECTS (NO LAYOUT CHANGE)
   =============================== */

/* Footer Background Enhancement */
.premium-footer {
  background: linear-gradient(135deg,
      #050b1e,
      #0a1f44,
      #1b3c8f);
  position: relative;
  overflow: hidden;
}

/* Subtle Gold Glow Overlay */
.premium-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
      rgba(255, 215, 0, 0.12),
      transparent 45%);
  pointer-events: none;
}

/* Column Soft Glow */
.footer-col {
  position: relative;
}

/* Headings Premium Look */
.footer-col h2 {
  color: #ffd700;
  letter-spacing: 0.6px;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}

/* Heading Underline Glow */
.footer-col h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, gold, transparent);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

/* Footer Links Premium Hover */
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.35s ease;
}

.footer-col a:hover {
  color: gold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

/* Social Icons Luxury Glass */
.social-icons a {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
}

.social-icons a:hover {
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.9),
    0 0 40px rgba(255, 215, 0, 0.6);
}

/* Brand Description Refinement */
.footer-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* Bottom Bar Premium Divider */
.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.25);
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.45),
      rgba(255, 215, 0, 0.05),
      rgba(0, 0, 0, 0.45));
}

/* Bottom Text Glow */
.footer-bottom a {
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

/* Subtle Floating Animation */
.footer-col,
.social-icons a {
  animation: softFloat 6s ease-in-out infinite;
}

@keyframes softFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* ===============================
   COLOR MATCH – PREMIUM FOOTER
   (NO LAYOUT CHANGE)
   =============================== */

/* Footer Background – match header blue */
.premium-footer {
  background: linear-gradient(135deg,
      #2f5dff,
      #1e3fa8,
      #132b73);
  box-shadow: 0 -20px 60px rgba(47, 93, 255, 0.35);
}

/* Soft Light Overlay (like banner card) */
.premium-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
      rgba(255, 255, 255, 0.18),
      transparent 45%);
  pointer-events: none;
}

/* Brand Name Color Match */
.footer-logo span {
  background: linear-gradient(90deg,
      #ffffff,
      #dbe5ff,
      #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Headings – soft white + blue glow */
.footer-col h2 {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.footer-col h2::after {
  background: linear-gradient(90deg,
      #ffffff,
      transparent);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

/* Links – clean premium hover */
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-col a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

/* Social Icons – WhatsApp Green Match */
.social-icons a {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #25d366;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
  background: #25d366;
  color: #ffffff;
  box-shadow:
    0 0 18px rgba(37, 211, 102, 0.9),
    0 0 35px rgba(37, 211, 102, 0.6);
}

/* Footer Description – softer white */
.footer-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Bottom Bar – same blue family */
.footer-bottom {
  background: linear-gradient(90deg,
      rgba(19, 43, 115, 0.9),
      rgba(47, 93, 255, 0.9),
      rgba(19, 43, 115, 0.9));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom a {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

/* ===============================
   COLOR MATCH – PREMIUM FOOTER
   (NO LAYOUT CHANGE)
   =============================== */

/* Footer Background – match header blue */
.premium-footer {
  background: linear-gradient(135deg,
      #2f5dff,
      #1e3fa8,
      #132b73);
  box-shadow: 0 -20px 60px rgba(47, 93, 255, 0.35);
}

/* Soft Light Overlay (like banner card) */
.premium-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
      rgba(255, 255, 255, 0.18),
      transparent 45%);
  pointer-events: none;
}

/* Brand Name Color Match */
.footer-logo span {
  background: linear-gradient(90deg,
      #ffffff,
      #dbe5ff,
      #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Headings – soft white + blue glow */
.footer-col h2 {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.footer-col h2::after {
  background: linear-gradient(90deg,
      #f0790a,
      transparent);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

/* Links – clean premium hover */
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-col a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

/* Social Icons – WhatsApp Green Match */
.social-icons a {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #25d366;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
  background: #25d366;
  color: #ffffff;
  box-shadow:
    0 0 18px rgba(37, 211, 102, 0.9),
    0 0 35px rgba(37, 211, 102, 0.6);
}

/* Footer Description – softer white */
.footer-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Bottom Bar – same blue family */
.footer-bottom {
  background: linear-gradient(90deg,
      rgba(19, 43, 115, 0.9),
      rgba(47, 93, 255, 0.9),
      rgba(19, 43, 115, 0.9));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom a {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

/* ===============================
   FULL FOOTER BORDER (PREMIUM)
   =============================== */

.premium-footer {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(47, 93, 255, 0.6),
    0 0 25px rgba(47, 93, 255, 0.45),
    inset 0 0 20px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* Gradient Border Glow Effect */
.premium-footer::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg,
      #ffffff,
      #2f5dff,
      #25d366,
      #2f5dff,
      #ffffff);
  z-index: -1;
  filter: blur(10px);
  opacity: 0.75;
}

/* Strong Bottom Highlight */
.premium-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      #ffffff,
      transparent);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}



/* ===============================
   FIXED GREEN CALL + WHATSAPP
   =============================== */

.fixed-action-buttons {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Common Button */
.fixed-action-buttons .fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  box-shadow:
    0 0 18px rgba(211, 37, 51, 0.9),
    0 0 35px rgba(92, 211, 37, 0.6),
    0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  animation: floatBtn 4s ease-in-out infinite;
  position: relative;
}

/* Hover Effect */
.fixed-action-buttons .fab:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 30px rgb(2, 248, 55),
    0 0 55px rgb(4, 252, 136);
}

/* Floating Animation */
@keyframes floatBtn {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Pulse Ring Animation */
.fixed-action-buttons .fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulseRing 2.5s infinite;
  z-index: -1;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Mobile Adjust */
@media (max-width: 480px) {
  .fixed-action-buttons {
    right: 16px;
    bottom: 16px;
  }

  .fixed-action-buttons .fab {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}
/* ===============================
   FIXED GREEN PHOTO BUTTONS
   (IMAGE ORIGINAL BACKGROUND)
   =============================== */

.fixed-action-buttons {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Button Base */
.fixed-action-buttons .fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  box-shadow:
    0 0 20px rgba(37, 211, 102, 0.9),
    0 0 40px rgba(37, 211, 102, 0.6),
    0 10px 25px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: floatBtn 4s ease-in-out infinite;
  transition: all 0.35s ease;
}

/* IMAGE — NO background, NO padding */
.fixed-action-buttons .fab img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

/* Hover Effect */
.fixed-action-buttons .fab:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 30px rgba(37, 211, 102, 1),
    0 0 55px rgba(37, 211, 102, 0.8);
}

/* Floating Animation */
@keyframes floatBtn {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Pulse Ring */
.fixed-action-buttons .fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulseRing 2.5s infinite;
  z-index: -1;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .fixed-action-buttons {
    right: 16px;
    bottom: 16px;
  }

  .fixed-action-buttons .fab {
    width: 52px;
    height: 52px;
  }
}
/* SECTION – NO EFFECT */
.premium-info{
  padding:50px 16px;
  display:flex;
  justify-content:center;
  background:#f6f9ff;   /* simple light bg */
}

/* CARD – EFFECT ONLY HERE */
.info-wrap{
  max-width:900px;
  width:100%;
  padding:36px 30px;
  background:#ffffff;
  border-radius:22px;

  /* ⭐ CONTROLLED SHADOW (NOT FULL SCREEN) */
  box-shadow:
    0 12px 30px rgba(0,0,0,0.12);

  text-align:center;
}

/* HEADING */
.info-title{
  font-size:32px;
  font-weight:700;
  color:#2340b8;
  margin-bottom:14px;
}

/* TEXT */
.info-text{
  font-size:15px;
  line-height:1.7;
  color:#555;
  max-width:760px;
  margin:auto;
}

/* RESPONSIVE */
@media(max-width:768px){
  .info-wrap{
    padding:26px 22px;
  }
  .info-title{
    font-size:24px;
  }
}

/*==== Down Card ===*/
    .container {
      margin: auto;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: white;
      color: #fff;

      display: flex;
      flex-direction: column;
      /* ✅ THIS IS IMPORTANT */
      align-items: center;
      /* center horizontally */

      padding: 30px 0;
    }

    .container {
      background-color: #0b0b0f;
      padding: 25px 30px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);

      width: 90%;
      max-width: 700px;

      margin-bottom: 30px;
      /* ✅ THIS SEPARATES CARDS */
    }

    .pky {
      font-size: 1.7rem;
      /* ↓ smaller */
      text-align: center;
      color: gold;
      margin-bottom: 15px;
      /* ↓ reduced */
      text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
    }

    ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    li {
      margin-bottom: 8px;
      /* ↓ reduced */
      padding-left: 18px;
      position: relative;
      font-size: 1rem;
      line-height: 1.4;
      /* ↓ compact */
    }

    li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: gold;
      font-weight: bold;
      font-size: 1.2rem;
      text-shadow: 0 0 4px gold;
    }

    /* Laptop / Desktop */
    @media (min-width: 1024px) {
      .container {
        width: 90%;
        max-width: none;
        padding: 28px 40px;
        /* still compact */
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .container {
        padding: 22px 18px;
        /* very compact */
      }

      h1 {
        font-size: 1.4rem;
      }

      li {
        font-size: 0.95rem;
      }
    }
    .social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.15);
}
.pagination-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin:50px 0;
  flex-wrap:wrap;
}

.pg-btn{
  min-width:40px;
  height:40px;
  padding:0 14px;
  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:600;
  font-size:15px;
  text-decoration:none;
  color:#fff;
  border-radius:14px;

  box-shadow:0 10px 20px rgba(0,0,0,.2);
  transition:all .25s ease;
}

.pg-btn:hover{
  transform:translateY(-3px) scale(1.08);
  box-shadow:0 16px 30px rgba(0,0,0,.3);
}

/* 🔹 DIFFERENT COLORS */
.pg-btn:nth-of-type(1){ background:linear-gradient(135deg,#0ea5e9,#0369a1);} /* Prev */
.pg-btn:nth-of-type(2){ background:linear-gradient(135deg,#22c55e,#15803d);} /* 1 */
.pg-btn:nth-of-type(3){ background:linear-gradient(135deg,#f97316,#c2410c);} /* 2 */
.pg-btn:nth-of-type(4){ background:linear-gradient(135deg,#ef4444,#b91c1c);} /* 3 */
.pg-btn:nth-of-type(5){ background:linear-gradient(135deg,#22c55e,#15803d);} /* 4 */
.pg-btn:nth-of-type(6){ background:linear-gradient(135deg,#0ea5e9,#0369a1);} /* Next */

/* Active page */
.pg-btn.active{
  background:linear-gradient(135deg,#8b5cf6,#6d28d9)!important;
  pointer-events:none;
  box-shadow:inset 0 3px 6px rgba(0,0,0,.4);
}

/* Disabled */
.pg-btn.disabled{
  opacity:.4;
  pointer-events:none;
}

/* Dots */
.pg-dots{
  font-size:22px;
  font-weight:bold;
  color:#64748b;
  padding:0 6px;
}
@media (max-width:600px){

  .pagination-wrap{
    width:100%;
    padding:0 10px;
    gap:6px;
    flex-wrap:nowrap;      /* one line */
  }

  .pg-btn{
    min-width:0;           /* 🔥 important */
    width:auto;
    height:28px;
    padding:0 6px;
    font-size:11px;
    border-radius:7px;
    flex-shrink:1;         /* 🔥 auto shrink */
  }

  .pg-dots{
    font-size:14px;
    padding:0 2px;
    flex-shrink:0;
  }
}

@media (max-width: 900px){

  .pagination-wrap{
    padding:0 20px;   /* 🔥 tablet spacing */
  }

  .pg-btn{
    min-width:20px;
    height:30px;
    padding:0 10px;
    font-size:15px;
    border-radius:10px;
  }

  .pg-dots{
    font-size:18px;
  }
}
