* {
  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;
  }

  .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;
  }
}
/*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 h4 {
  font-size: 14px;
  /* Smaller heading */
  margin-bottom: 10px;
  position: relative;
}

.footer-col h4::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 h4 {
    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 h4::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 h4 {
  color: #ffd700;
  letter-spacing: 0.6px;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}

/* Heading Underline Glow */
.footer-col h4::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 h4 {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.footer-col h4::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 h4 {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.footer-col h4::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;
  }
}
.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);
}
nav a,
.menu a {
  display: block;
  padding: 14px 18px;   /* increases touch area */
  font-size: 16px;
  line-height: 1.5;
}
nav li,
.menu li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  nav a {
    padding: 16px 20px;
    font-size: 17px;
  }
}
button,
.icon-btn {
  min-width: 48px;
  min-height: 48px;
}
@media (max-width: 768px) {
  .footer-col ul li a {
    padding: 16px 0;
    font-size: 17px;
  }
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px; /* spacing between links */
}

.footer-col ul li a {
  display: block;          /* makes full clickable area */
  padding: 14px 0;         /* touch target height */
  font-size: 16px;
  line-height: 1.6;
}

