/* ═══════════════════════════════════════════════════
   ROOT VARS
═══════════════════════════════════════════════════ */
:root {
  --red: #D92B2B;
  --orange: #F5871A;
  --yellow: #F5C518;
  --green: #2E9E50;
  --teal: #1B7FA8;
  --blue: #1A4FA0;
  --purple: #6B2FB5;
  --dark: #12192B;
  --mid: #2A3555;
  --light: #F4F8FF;
  --border: rgba(0, 0, 0, 0.07);
  --shadow: 0 8px 40px rgba(18, 25, 43, 0.13);
  --radius: 14px;
  --trans: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  /* Brand Colors */
    --primary: #f05836;     
    --Secondary: #2d4667;     
    --text-light:#dddddd;
    --text-dark:#424242;
    --accent-color: #ffc107;       /* Energy Yellow */
    --grey-color: #f3f3f3f3;
    --light-bg: #e8ebf5; 
    --accent-green: #ffb300;
    --light-gray: #ffffff;
    --text-gray: #e7e7e7;
    --dark-gray: #333; 
     --gold: #f05836;
      --gold-light: rgba(240, 208, 128, 0.589);
      --dark: #0d0d0d;
      --card-bg: rgba(10, 10, 10, 0.72);
      --border: rgba(201,168,76,0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
    font-family: 'LilitaOne';
    src: url('lilita-one/LilitaOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
  font-family: 'cursive';
  background: #eef2f8;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ═══════════════════════════════════════════════════
SITE HEADER WRAPPER
═══════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: var(--trans);
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  height: 38px;
  display: flex;
  align-items: center;
  transition: height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.top-bar.hidden {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.top-bar-item:hover {
  color: var(--yellow);
}

.top-bar-item i {
  font-size: 17px;
  color: var(--orange);
}

.top-bar-sep {
  color: rgba(255, 255, 255, 0.2);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-social {
  display: flex;
  gap: 6px;
}

.top-social a {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  transition: transform 0.2s;
}

.top-social a:hover {
  transform: scale(1.2);
}

.ts-fb {
  background: #1877F2;
}

.ts-ig {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
}

.ts-yt {
  background: #FF0000;
}

.ts-wa {
  background: #25D366;
}

.top-bar-tag {
  background: linear-gradient(90deg, var(--red), var(--orange));
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ─── MAIN NAV BAR ─── */
.main-nav {
  background: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
  position: relative;
}

/* Rainbow accent line at bottom */
.main-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      var(--red) 0%,
      var(--orange) 20%,
      var(--yellow) 38%,
      var(--green) 56%,
      var(--teal) 75%,
      var(--blue) 100%);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── LOGO ── */
.nav-logo {
  flex-shrink: 0;
  margin-right: 28px;
}

.nav-logo img {
  height: 58px;
  display: block;
  transition: height 0.3s;
}

#site-header.scrolled .nav-logo img {
  height: 46px;
}

#site-header.scrolled .main-nav .nav-inner {
  height: 60px;
}

#site-header.scrolled .top-bar {
  height: 0;
  opacity: 0;
  pointer-events: none;
}

/* ── MAIN MENU ── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  margin-top: 20px;
}

/* ── Each top-level item ── */
.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 15px;
  height: 72px;
  font-size: 0.83rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
  border: none;
  background: none;
  font-family: 'Nunito', sans-serif;
}

#site-header.scrolled .nav-link {
  height: 60px;
}

/* underline bar */
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent, var(--orange));
  border-radius: 3px 3px 0 0;
  transition: width 0.25s, left 0.25s;
}

.nav-item:hover>.nav-link::before,
.nav-item.active>.nav-link::before {
  width: 100%;
  left: 0;
}

.nav-item:hover>.nav-link,
.nav-item.active>.nav-link {
  color: var(--accent, var(--orange));
}

/* chevron icon */
.nav-link .nav-chevron {
  font-size: 0.6rem;
  transition: transform 0.25s;
  opacity: 0.5;
}

.nav-item:hover>.nav-link .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ── DROPDOWN PANEL ── */
.dropdown {
  position: absolute;
  top: calc(100% + 0px);
  /* just below the rainbow line */
  left: 0;
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent, var(--orange));
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
}

.nav-item:hover>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

/* Dropdown item */
.dd-item {
  position: relative;
}

.dd-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  color: #374151;
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}

.dd-link .dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.2s;
  background: var(--icon-bg, #f3f4f6);
  color: var(--icon-color, var(--dark));
}

.dd-link:hover {
  background: var(--hover-bg, #fff8f0);
  color: var(--accent, var(--orange));
  padding-left: 16px;
}

.dd-link:hover .dd-icon {
  transform: scale(1.15);
}

.dd-link .dd-chevron {
  margin-left: auto;
  font-size: 0.58rem;
  opacity: 0.4;
  transition: transform 0.2s, opacity 0.2s;
}

.dd-item:hover>.dd-link .dd-chevron {
  opacity: 1;
  transform: rotate(-90deg);
  color: var(--accent, var(--orange));
}

/* ── SUBMENU (level 2) ── */
.submenu {
  position: absolute;
  top: -8px;
  left: calc(100% + 4px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent, var(--orange));
  padding: 8px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
  z-index: 10;
}

.dd-item:hover>.submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: all;
}

/* Divider in dropdown */
.dd-divider {
  height: 1px;
  background: var(--border);
  margin: 5px 8px;
}

/* Section label inside dropdown */
.dd-label {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent, var(--orange));
  padding: 6px 12px 2px;
}

/* ── MEGA DROPDOWN ── */
.mega-dropdown {
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 680px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.nav-item:hover>.mega-dropdown {
  transform: translateX(-50%) translateY(0);
}

.mega-col-head {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mid);
  padding: 0 10px 8px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-col-head i {
  color: var(--accent, var(--orange));
  font-size: 0.9rem;
}

.mega-card {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--trans);
}

.mega-card:hover {
  background: var(--hover-bg, #fff8f0);
  transform: translateX(4px);
}

.mega-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.mega-card-text .mc-title {
  font-size: 0.83rem;
  font-weight: 800;
  color: var(--dark);
  display: block;
  margin-bottom: 2px;
}

.mega-card-text .mc-desc {
  font-size: 0.73rem;
  font-weight: 600;
  color: #9ca3af;
  line-height: 1.4;
}

.mega-card:hover .mc-title {
  color: var(--accent, var(--orange));
}

/* ── MEGA FOOTER BANNER ── */
.mega-footer {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--dark), var(--mid));
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 8px;
}

.mega-footer-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.mega-footer-text span {
  color: var(--yellow);
}

.mega-footer-btn {
  background: linear-gradient(90deg, var(--red), var(--orange));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 25px;
  white-space: nowrap;
  transition: transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mega-footer-btn:hover {
  transform: scale(1.04);
  color: #fff;
}

/* ── NAV RIGHT ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--dark);
  transition: var(--trans);
}

.nav-phone-btn i {
  color: var(--green);
  font-size: 0.9rem;
}

.nav-phone-btn:hover {
  border-color: var(--green);
  background: rgba(46, 158, 80, 0.06);
  color: var(--green);
  transform: translateY(-1px);
}

.nav-phone-btn .ph-label {
  font-size: 0.62rem;
  color: #9ca3af;
  display: block;
  line-height: 1;
  font-weight: 700;
}

.nav-phone-btn .ph-num {
  font-size: 0.85rem;
  font-weight: 900;
  display: block;
  line-height: 1.3;
}

.nav-quote-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(217, 43, 43, 0.35);
  transition: var(--trans);
}

.nav-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217, 43, 43, 0.5);
  color: #fff;
}

.nav-quote-btn i {
  font-size: 0.9rem;
}

/* ── MOBILE HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: #fff;
  cursor: pointer;
  gap: 5px;
  transition: var(--trans);
  margin-left: 10px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--trans);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-hamburger:hover {
  border-color: var(--orange);
}

.nav-hamburger:hover span {
  background: var(--orange);
}

/* ═══════════════════════════════════════════════════
COLOR ACCENT OVERRIDES PER MENU ITEM
═══════════════════════════════════════════════════ */
/* Sky Balloons – Red */
.ni-sky {
  --accent: var(--red);
  --hover-bg: #fff4f4;
}

.ni-sky .dd-icon {
  --icon-bg: #ffe8e8;
  --icon-color: var(--red);
}

/* Air Dancers – Orange */
.ni-air {
  --accent: var(--orange);
  --hover-bg: #fff8f0;
}

.ni-air .dd-icon {
  --icon-bg: #fff0dc;
  --icon-color: var(--orange);
}

/* Inflatables – Green */
.ni-inflate {
  --accent: var(--green);
  --hover-bg: #f0faf3;
}

.ni-inflate .dd-icon {
  --icon-bg: #dff5e6;
  --icon-color: var(--green);
}

/* Custom – Teal */
.ni-custom {
  --accent: var(--teal);
  --hover-bg: #eef7fb;
}

.ni-custom .dd-icon {
  --icon-bg: #d8eef7;
  --icon-color: var(--teal);
}

/* Moving – Blue */
.ni-moving {
  --accent: var(--blue);
  --hover-bg: #eef1fb;
}

.ni-moving .dd-icon {
  --icon-bg: #d8e2f7;
  --icon-color: var(--blue);
}

/* ═══════════════════════════════════════════════════
MOBILE MENU OVERLAY
═══════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 25, 43, 0.55);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu.open .mobile-panel {
  transform: translateX(0);
}

.mobile-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-header img {
  height: 40px;
}

.mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  transition: var(--trans);
}

.mobile-close:hover {
  background: #ffe8e8;
  color: var(--red);
}

.mobile-nav {
  padding: 10px 12px 20px;
}

.mob-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2px;
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark);
  cursor: pointer;
  border-radius: 10px;
  transition: var(--trans);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'Nunito', sans-serif;
}

.mob-link i.mob-icon {
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
}

.mob-link i.mob-chev {
  margin-left: auto;
  font-size: 0.65rem;
  transition: transform 0.2s;
}

.mob-link:hover,
.mob-link.active {
  background: var(--light);
  color: var(--orange);
}

.mob-link.active i.mob-chev {
  transform: rotate(90deg);
}

.mob-sub {
  display: none;
  padding: 0 8px 8px 14px;
}

.mob-sub.open {
  display: block;
}

.mob-sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4b5563;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--trans);
}

.mob-sub-link i {
  font-size: 0.7rem;
  color: var(--orange);
}

.mob-sub-link:hover {
  background: #fff8f0;
  color: var(--orange);
  padding-left: 16px;
}

.mob-sub-group-label {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
  padding: 6px 12px 2px;
}

/* Mobile CTA */
.mob-cta {
  padding: 0 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mob-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: var(--trans);
}

.mob-cta-phone {
  background: var(--light);
  color: var(--dark);
  border: 2px solid var(--border);
}

.mob-cta-phone:hover {
  border-color: var(--green);
  color: var(--green);
}

.mob-cta-phone i {
  color: var(--green);
}

.mob-cta-quote {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
}

.mob-cta-quote:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 6px 20px rgba(217, 43, 43, 0.35);
}

/* ═══════════════════════════════════════════════════
SCROLL TO TOP
═══════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(217, 43, 43, 0.4);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: var(--trans);
  z-index: 9990;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .nav-link {
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .mega-dropdown {
    min-width: 580px;
  }
}

@media (max-width: 991px) {

  .nav-menu,
  .nav-phone-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .top-bar-left .top-bar-item:not(:first-child) {
    display: none;
  }
}

@media (max-width: 576px) {
  .top-bar {
    height: 0;
    opacity: 0;
    pointer-events: none;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .mobile-panel {
    width: 100%;
  }
}

.carousel{
  margin-top: 110px;
}

.carousel-caption  {
    position: absolute;
    right: 15%;
    bottom: 35%;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

.carousel-caption span{
  font-size: 50px;
  font-weight: 600;
}

.carousel-item {
  position: relative;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* Dark overlay */
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
}

.carousel-caption div{
  background: linear-gradient(270deg, #ff4d4d, #ff9800, #ffeb3b, #4caf50, #2196f3, #9c27b0);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite;
  font-family: 'LilitaOne', sans-serif;
  font-size: clamp(28px, 4vw, 25px);
  font-weight: 800;
  line-height: 1;
}

/* category-Card Style */
.funky-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden; 
    text-align: center;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.funky-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #ff4d4d, #ff9800, #4caf50, #2196f3);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

.funky-card:hover::before {
    opacity: 0.15;
}

.funky-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Floating Animation */
.funky-card {
    animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.funky-img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 20px; 
    position: relative;
    z-index: 1;
}

.funky-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.funky-card:hover .funky-img img {
    transform: scale(1.1) rotate(3deg);
}

.funky-title {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.funky-card:hover .funky-title {
    color: #ff4d4d;
}

/* about-section  */
.about-section { 
}

.section-title h1 {
    color: #2196F3;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: "Lilita One", sans-serif;
}



.section-subtitle h1 {
  
    font-family: 'LilitaOne', sans-serif;
    background: linear-gradient(
        270deg,
        #ff4d4d,
        #ff9800,
        #ffeb3b,
        #4caf50,
        #2196f3,
        #9c27b0
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.floating-image {
    float: left;
    width: 45%;
    margin: 0 30px 20px 0;
}

.floating-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-text {
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.content-text p {
    margin-bottom: 20px;
}

.highlight {
    color: #000;
    font-weight: 600;
}

.content-text::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .floating-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

/* ── TICKER STRIP ── */
  .ticker-wrap {
      width: 100%;
      background: #fff;
      padding: 18px 0;
      overflow: hidden;
      /* mask edges to soft-fade */
      -webkit-mask-image: linear-gradient(
          to right,
          transparent 0%,
          black 8%,
          black 92%,
          transparent 100%
      );
      mask-image: linear-gradient(
          to right,
          transparent 0%,
          black 8%,
          black 92%,
          transparent 100%
      );
  }

  .ticker-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: ticker 22s linear infinite;
  }

  .ticker-track:hover {
      animation-play-state: paused;
  }

  @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
  }

  /* ── SINGLE ITEM (text + badge pair) ── */
  .ticker-item {
      display: flex;
      align-items: center;
      gap: clamp(18px, 3vw, 40px);
      padding-right: clamp(18px, 3vw, 40px);
      white-space: nowrap;
  }

  .ticker-text {
      font-family: 'LilitaOne', sans-serif;
      font-weight: 800;
      font-size: clamp(28px, 5vw, 68px);
      color: #0d2b1e;
      line-height: 1;
      letter-spacing: -0.02em; 
      background: linear-gradient(
          270deg,
          #ff4d4d,
          #ff9800,
          #ffeb3b,
          #4caf50,
          #2196f3,
          #9c27b0
      );
      background-size: 400% 400%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientMove 6s ease infinite;
  }

  /* ── CIRCULAR BADGE ── */
  .badge {
      flex-shrink: 0;
      width: clamp(36px, 5vw, 72px);
      height: clamp(36px, 5vw, 72px);
      border-radius: 50%;
      background: #0d2b1e;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* Lambda / arrow icon inside badge */
  .badge svg {
      width: 45%;
      height: 45%;
  }

  /* product-section  */

  .products-section {
      padding: 30px 0 100px;
  }

  /* ── SECTION HEADER ── */
  .section-header {
      margin-bottom: 52px;
  }

  .section-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #7cb900;
      background: #e9f5c8;
      border-radius: 50px;
      padding: 5px 14px;
      margin-bottom: 14px;
  }

  .section-title {
      font-family: 'LilitaOne', sans-serif;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 800;
      color: #0d2b1e;
      line-height: 1.15;
      margin-bottom: 12px;
      letter-spacing: 1px;

  }

  .section-title span { 
      background: linear-gradient(
          270deg,
          #ff4d4d,
          #ff9800,
          #ffeb3b,
          #4caf50,
          #2196f3,
          #9c27b0
      );
      background-size: 400% 400%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientMove 6s ease infinite;
  }

  .section-desc {
      font-size: 15px;
      color: #666;
      font-weight: 300;
      max-width: 460px;
      line-height: 1.7;
  }

  .view-all-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid #0d2b1e;
      color: #0d2b1e;
      border-radius: 50px;
      padding: 11px 24px;
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.25s, color 0.25s;
      white-space: nowrap;
  }

  .view-all-btn:hover {
      background: #0d2b1e;
      color: #fff;
  }

  .view-all-btn svg { width: 16px; height: 16px; }

  /* ── PRODUCT CARD ── */
  .product-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease;
      /* stagger fade-in */
      opacity: 0;
      transform: translateY(28px);
  }

  .product-card.visible {
      animation: fadeUp 0.55s cubic-bezier(.22,.68,0,1.2) forwards;
  }

  .col-xl-3:nth-child(1) .product-card { animation-delay: 0s; }
  .col-xl-3:nth-child(2) .product-card { animation-delay: 0.08s; }
  .col-xl-3:nth-child(3) .product-card { animation-delay: 0.16s; }
  .col-xl-3:nth-child(4) .product-card { animation-delay: 0.24s; }
  .col-xl-3:nth-child(5) .product-card { animation-delay: 0.08s; }
  .col-xl-3:nth-child(6) .product-card { animation-delay: 0.16s; }
  .col-xl-3:nth-child(7) .product-card { animation-delay: 0.24s; }
  .col-xl-3:nth-child(8) .product-card { animation-delay: 0.32s; }

  @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
  }

  .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(13,43,30,0.13);
  }

  /* ── IMAGE WRAPPER ── */
  .card-img-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/3;
      background: #eee;
      display: block;
      text-decoration: none;
  }

  .card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.55s cubic-bezier(.22,.68,0,1.2);
      display: block;
  }

  .product-card:hover .card-img-wrap img {
      transform: scale(1.07);
  }

  

  /* ── CARD BODY ── */
  .card-body-inner {
      padding: 18px 20px 22px;
  }

  .product-category {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #000;
      margin-bottom: 7px;
      display: block;
  }

  .product-title-link {
      display: block; 
      font-size: clamp(15px, 1.5vw, 17px);
      font-weight: 700;
      color: #0d2b1e;
      text-decoration: none;
      line-height: 1.35;
      margin-bottom: 8px;
      transition: color 0.2s;
  }

  .product-title-link:hover { color: #7cb900; }

  .product-desc {
      font-size: 13px;
      color: #777;
      font-weight: 300;
      line-height: 1.65;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }


  /* Default fallback color */
.product-card {
    --hover-color: #7cb900;
}

/* Category color */
.product-card .product-category {
    transition: color 0.3s ease;
}

/* Title hover color */
.product-card .product-title-link {
    transition: color 0.3s ease;
}

/* On Hover Apply Dynamic Color */
.product-card:hover .product-category,
.product-card:hover .product-title-link {
    color: var(--hover-color);
}

/* Optional: subtle top border animation */
.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: var(--hover-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}


/* ── Bubbly background ── */
  .why-section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: clamp(50px, 8vw, 30px) clamp(20px, 5vw, 60px);
    position: relative;
  }

  /* Soft background blobs */
  body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
  }
  body::before {
    width: 600px; height: 600px;
    background: rgba(255, 100, 130, 0.12);
    top: -150px; left: -150px;
  }
  body::after {
    width: 500px; height: 500px;
    background: rgba(99, 102, 241, 0.12);
    bottom: -100px; right: -100px;
  }

  .why-section > * { position: relative; z-index: 1; }

  /* ── Header ── */
  .header {
    text-align: center;
    margin-bottom: clamp(44px, 7vw, 30px);
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
  }

  .display-title {
    font-family: 'LilitaOne', sans-serif;
    font-size: clamp(34px, 5.5vw, 62px);
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a2e;
    letter-spacing: 1px;
    
  }

  .display-title span {
    background: linear-gradient(
          270deg,
          #ff4d4d,
          #ff9800,
          #ffeb3b,
          #4caf50,
          #2196f3,
          #9c27b0
      );
      background-size: 400% 400%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientMove 6s ease infinite;
  }

  .subtitle {
    margin-top: 14px;
    font-size: 16px;
    color: #64748b;
    font-weight: 400;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  /* ── Decorative dots under header ── */
  .dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
  }
  .dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: block;
  }
  .dots span:nth-child(1){ background:#ff6b6b; }
  .dots span:nth-child(2){ background:#f59e0b; width:24px; border-radius:4px; }
  .dots span:nth-child(3){ background:#6366f1; }

  /* ── Grid ── */
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* Each why-card has its own gradient accent via CSS custom props */
  .why-card {
    --c1: #6366f1;
    --c2: #8b5cf6;
    background: #fff;
    border-radius: 20px;
    padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
    cursor: default;
  }

  .why-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 48px rgba(0,0,0,0.13);
  }

  /* Colored top bar */
  .why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--c1), var(--c2));
  }

  /* Faint blob in corner */
  .why-card::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    opacity: 0.07;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .why-card:hover::after {
    opacity: 0.14;
    transform: scale(1.2);
  }

  /* Per-card color themes */
  .why-card:nth-child(1) { --c1:#ff6b6b; --c2:#ff8e53; }
  .why-card:nth-child(2) { --c1:#f59e0b; --c2:#fbbf24; }
  .why-card:nth-child(3) { --c1:#10b981; --c2:#34d399; }
  .why-card:nth-child(4) { --c1:#3b82f6; --c2:#60a5fa; }
  .why-card:nth-child(5) { --c1:#8b5cf6; --c2:#a78bfa; }
  .why-card:nth-child(6) { --c1:#ec4899; --c2:#f472b6; }
  .why-card:nth-child(7) { --c1:#06b6d4; --c2:#22d3ee; }
  .why-card:nth-child(8) { --c1:#f97316; --c2:#fb923c; }

  .card-number {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--c1);
    opacity: 0.7;
  }

  .icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--c1) 40%, transparent);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    z-index: 1;
  }

  .why-card:hover .icon-wrap {
    transform: rotate(-8deg) scale(1.1);
  }

  .card-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    position: relative;
    z-index: 1;
  }

  .why-card-body {
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.75;
    color: #64748b;
    flex: 1;
    position: relative;
    margin: 0;
    z-index: 1;
  }

  .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--c1);
    text-decoration: none;
    letter-spacing: 0.04em;
    font-family: 'Nunito', sans-serif;
    transition: gap 0.2s ease;
    position: relative;
    z-index: 1;
  }
  .why-card:hover .card-link { gap: 10px; }

  /* ── Load animation ── */
  @keyframes popUp {
    from { opacity: 0; transform: translateY(28px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .header { animation: popUp 0.6s ease both; }

  .why-card {
    opacity: 0;
    animation: popUp 0.55s cubic-bezier(0.34,1.3,0.64,1) forwards;
  }
  .why-card:nth-child(1){ animation-delay:0.08s; }
  .why-card:nth-child(2){ animation-delay:0.15s; }
  .why-card:nth-child(3){ animation-delay:0.22s; }
  .why-card:nth-child(4){ animation-delay:0.29s; }
  .why-card:nth-child(5){ animation-delay:0.36s; }
  .why-card:nth-child(6){ animation-delay:0.43s; }
  .why-card:nth-child(7){ animation-delay:0.50s; }
  .why-card:nth-child(8){ animation-delay:0.57s; }

  /* ── Responsive ── */
  @media (max-width: 1024px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .grid { grid-template-columns: 1fr; }
  }
  

  .custon-banner img{
    background-size: cover;
    width: 100%;
  }

  .funky-testimonial-section {
  background: linear-gradient(135deg, #ffe0f7, #e0f7ff);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #2c5aa0;
  margin-bottom: 10px;
  font-family: 'Comic Sans MS', cursive;
}

.testimonial-subtitle {
  text-align: center;
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.testimonial-item {
  position: relative;
  /* padding-top: 50px; */
}

.testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px dashed #ff5e78;
  margin: auto;
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 2;
}

.testimonial-avatar img {
  width: 100%;
}

.testimonial-box {
  background: #bfe9f5;
  border-radius: 30px;
  padding: 40px 30px;
  margin-top: -40px;
  position: relative;
  text-align: center;
  border-bottom: 8px solid #ff4d4d;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Balloon Tail */
.testimonial-box:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 20px 20px 0 20px;
  border-style: solid;
  border-color: #ff4d4d transparent transparent transparent;
}

.quote-icon {
  font-size: 40px;
  color: #ffb703;
  margin-bottom: 10px;
}

.testimonial-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

.client-name {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #2c5aa0;
}

/* Owl Dots */
.owl-dots {
  text-align: center;
  margin-top: 30px;
}

.owl-dot span {
  background: #ff5e78 !important;
}

.owl-dot.active span {
  background: #2c5aa0 !important;
}

/* WRAPPER */
    .ddx-wrapper {
      position: relative;
      background: transparent;
    }

    /* WAVES */
    .ddx-wave-top,
    .ddx-wave-bottom {
      display: block;
      width: 100%;
      line-height: 0;
      overflow: hidden;
    }

    .ddx-wave-top svg,
    .ddx-wave-bottom svg {
      display: block;
      width: 100%;
    }

    /* MAIN SECTION */
    .ddx-section {
      background: #1aadce;
      position: relative;
      padding: 3rem 1rem 4rem;
      overflow: hidden;
    }

    .ddx-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, .06) 60px, transparent 61px),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, .06) 80px, transparent 81px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .04) 120px, transparent 121px);
      pointer-events: none;
    }

    /* TITLE */
    .ddx-title {
      font-family: 'Nunito', sans-serif;
      font-style: italic;
      font-weight: 800;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: #fff;
      text-align: center;
      margin-bottom: 1rem;
    }

    .ddx-lead {
      color: rgba(255, 255, 255, .9);
      text-align: center;
      max-width: 780px;
      margin: 0 auto 3rem;
      font-size: clamp(.85rem, 1.5vw, 1rem);
      line-height: 1.7;
    }

    /* CARDS */
    .ddx-card {
      border-radius: 16px;
      padding: 0 0 1.8rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .ddx-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
    }

    /* COLOR VARIANTS */
    .ddx-green {
      background: #5daf6a;
    }

    .ddx-teal {
      background: #2bc0b4;
    }

    .ddx-gold {
      background: #d4a017;
    }

    .ddx-orange {
      background: #e86c3a;
    }

    /* IMAGE AREA */
    .ddx-img-wrap {
      aspect-ratio: 3 / 3;
      overflow: hidden;
      position: relative;
    }

    .ddx-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }

    .ddx-card:hover .ddx-img-wrap img {
      transform: scale(1.06);
    }

    /* CARD TEXT */
    .ddx-body {
      padding: 2.2rem 1.4rem 0;
      flex: 1;
    }

    .ddx-label {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: clamp(.95rem, 1.5vw, 1.05rem);
      color: #fff;
      margin-bottom: .6rem;
      display: block;
    }

    /* RESPONSIVE */
    @media (max-width: 767px) {
      .ddx-img-wrap {
        height: 140px;
      }
    }

    @media (max-width: 575px) {
      .ddx-section {
        padding: 2rem .8rem 3rem;
      }
    }


    /* ============================================================
       BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    .footer-wave {
      display: block;
      line-height: 0;
      overflow: hidden;
    }

    .footer-wave svg {
      display: block;
      width: 100%;
    }

    /* ============================================================
       FOOTER BODY
    ============================================================ */
    .footer-body {
      background: #18aece;
      padding: 3rem 0 0;
    }

    /* --- column divider (desktop only) --- */
    .col-border-right {
      border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    @media (max-width: 991px) {
      .col-border-right {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        padding-bottom: 2rem;
        margin-bottom: 1rem;
      }
    }

    /* ============================================================
       COLUMN TITLE  (no heading tags)
    ============================================================ */
    .col-title {
      display: block;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-style: italic;
      font-size: clamp(1.05rem, 1.8vw, 1.28rem);
      color: #fff;
      margin-bottom: 1.2rem;
    }

    /* ============================================================
       NAV LINKS
    ============================================================ */
    .footer-link {
      display: block;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-size: 0.875rem;
      padding: 0.22rem 0;
      transition: color 0.2s, transform 0.2s;
    }

    .footer-link:hover {
      color: #fff;
      transform: translateX(5px);
    }

    /* ============================================================
       PRODUCTS  2-COLUMN GRID
    ============================================================ */
    .products-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 1rem;
    }

    /* ============================================================
       OPEN HOUR ROW
    ============================================================ */
    .open-hour-sep {
      border-top: 1px solid rgba(255, 255, 255, 0.22);
      margin-top: 1.6rem;
      padding-top: 1.5rem;
    }

    .hour-row {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.875rem;
    }

    .hour-row i {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.9);
    }

    /* ============================================================
       CONTACT INFO ROWS
    ============================================================ */
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.875rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .contact-row a{
      color:#fff;
      text-decoration: none;
    }

    .contact-row i {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.9);
      margin-top: 3px;
      flex-shrink: 0;
    }

    .contact-row strong {
      color: #fff;
      font-weight: 600;
    }

    /* ============================================================
       BOTTOM SCENE IMAGE
    ============================================================ */
    .footer-scene {
      margin-top: 2.5rem;
      line-height: 0;
      overflow: hidden;
    }

    .footer-scene img {
      width: 100%;
      display: block;
      object-fit: cover;
    }

    /* ============================================================
       COPYRIGHT BAR
    ============================================================ */
    .footer-copy {
      background: #0f8faa;
      padding: 0.85rem 1rem;
    }

    .copy-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 0.4rem;
    }

    .copy-text {
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.8rem;
    }

    .copy-text a {
      color: #fff;
      text-decoration: none;
    }

    .copy-text .fa-heart {
      color: #ff6b6b;
    }

    @media (max-width: 575px) {
      .copy-inner {
        justify-content: center;
        text-align: center;
      }
    }

    /* ===== BX Breadcrumb ===== */

    .bx-breadcrumb-wrap{
        background: linear-gradient(135deg,#2196F3,#1565C0);
        padding: 60px 0;
        position: relative;
        overflow: hidden;
        margin-top: 110px;
    }

    .bx-breadcrumb-box{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .bx-breadcrumb-title{
        font-size: 32px;
        font-weight: 700;
        color: #ffffff;
    }

    .bx-breadcrumb-nav{
        display: flex;
        align-items: center;
    }

    .bx-breadcrumb-list{
        display: flex;
        align-items: center;
        gap: 10px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .bx-breadcrumb-item{
        font-size: 14px;
        color: rgba(255,255,255,0.85);
        position: relative;
    }

    .bx-breadcrumb-item a{
        text-decoration: none;
        color: rgba(255,255,255,0.85);
        transition: .3s ease;
    }

    .bx-breadcrumb-item a:hover{
        color: #ffffff;
    }

    .bx-breadcrumb-item:not(:last-child)::after{
        content: "/";
        margin-left: 10px;
        color: rgba(255,255,255,0.6);
    }

    .bx-active{
        color: #ffffff;
        font-weight: 600;
    }

    @media (max-width:768px){

        .bx-breadcrumb-wrap{
            padding: 40px 0;
            text-align: center;
        }

        .bx-breadcrumb-box{
            flex-direction: column;
            align-items: center;
        }

        .bx-breadcrumb-title{
            font-size: 24px;
        }

        .bx-breadcrumb-list{
            justify-content: center;
            flex-wrap: wrap;
        }
    }

    /* sitemap-section  */
    .dynamic-sitemap {
        padding: 80px 0;
        background: #f4f6fb;
    }

    .sitemap-title {
        text-align: center;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 50px;
        color: #6c5ce7;
        font-family: 'Poppins', sans-serif;
    }

    .sitemap-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }

    .sitemap-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 22px 20px;
        border-radius: 16px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        color: #fff;
        transition: 0.4s ease;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .sitemap-item:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }


    /* ========== CTA SECTION ========== */
    #cta {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* Background image layer */
    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgb(255 179 0 / 22%) 0%, rgb(255 179 0 / 22%) 100%), url(https://www.shree-ganesh.digipromotionsolutions.co.in/assets/image/img/bg.jpg?auto=format&fit=crop&w=1600&q=80) center / cover no-repeat;
      z-index: 0;
      animation: bgPan 18s ease-in-out infinite alternate;
    }

    @keyframes bgPan {
      from { background-position: center top; }
      to   { background-position: center bottom; }
    }

    /* Grain overlay */
    #cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      z-index: 1;
      pointer-events: none;
      opacity: 0.4;
    }

    #cta .container { position: relative; z-index: 2; }

    /* -------- Section header -------- */
    .cta-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0;
      animation: fadeUp 0.7s 0.2s forwards;
    }

    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      opacity: 0;
      animation: fadeUp 0.7s 0.35s forwards;
    }

    .cta-title span {
      color: var(--gold);
      display: inline-block;
      position: relative;
    }

    .cta-title span::after {
      content: '';
      position: absolute;
      left: 0; bottom: 2px;
      width: 0; height: 3px;
      background: var(--gold);
      animation: lineGrow 1s 1.2s forwards;
    }

    @keyframes lineGrow { to { width: 100%; } }

    .cta-subtitle {
      color: rgba(255,255,255,0.6);
      font-size: 1rem;
      font-weight: 300;
      opacity: 0;
      animation: fadeUp 0.7s 0.5s forwards;
    }

    /* -------- Gold divider -------- */
    .gold-divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.6s forwards;
    }

    /* -------- Form card -------- */
    .form-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      backdrop-filter: blur(18px);
      padding: 2.5rem 2rem;
      box-shadow: 0 32px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(201,168,76,0.15);
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUp 0.8s 0.5s forwards;
    }

    .form-card .form-label {
      color: rgba(255,255,255,0.75);
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.35rem;
    }

    .input-icon-wrap {
      position: relative;
    }

    .input-icon-wrap .fa-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold);
      font-size: 0.9rem;
      pointer-events: none;
      z-index: 5;
    }

    .input-icon-wrap .form-control,
    .input-icon-wrap .form-select {
      padding-left: 2.4rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      color: #fff;
      border-radius: 10px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.92rem;
      transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    }

    .input-icon-wrap .form-control:focus,
    .input-icon-wrap .form-select:focus {
      background: rgba(201,168,76,0.08);
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
      color: #fff;
      outline: none;
    }

    .input-icon-wrap .form-control::placeholder { color: rgba(255,255,255,0.3); }

    .form-select option { background: #1a1a1a; color: #fff; }

    /* Textarea */
    .textarea-wrap { position: relative; }
    .textarea-wrap .fa-icon { top: 16px; transform: none; }
    .textarea-wrap textarea { padding-top: 0.65rem; resize: none; }

    /* Submit button */
    .btn-gold {
      background: linear-gradient(135deg, var(--gold), #ffb300);
      color: #000;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1rem;
      border: none;
      border-radius: 50px;
      padding: 0.75rem 2.5rem;
      letter-spacing: 0.06em;
      transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
      position: relative;
      overflow: hidden;
    }

    .btn-gold::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      transition: background 0.25s;
    }

    .btn-gold:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 12px 40px rgba(201,168,76,0.45);
      filter: brightness(1.1);
    }

    .btn-gold:hover::after { background: rgba(255,255,255,0.07); }
    .btn-gold:active { transform: scale(0.98); }

    /* -------- Info card -------- */
    .info-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      backdrop-filter: blur(18px);
      padding: 2.5rem 2rem;
      height: 100%;
      box-shadow: 0 32px 80px rgba(0,0,0,0.55);
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUp 0.8s 0.7s forwards;
    }

    .info-card span { 
      color: #fff;
      font-size: 15px;
      margin-bottom: 0.35rem;
      line-height: 1;
    }

    .info-card p.sub {
      color: rgba(255,255,255,0.45);
      font-size: 0.85rem;
      margin-bottom: 1.8rem;
    }

    /* Contact item */
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.6rem;
      text-decoration: none;
      transition: transform 0.25s;
      cursor: pointer;
    }

    .contact-item:hover { transform: translateX(6px); }

    .icon-box {
      width: 46px; height: 46px;
      border-radius: 12px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
      font-size: 1rem;
      transition: background 0.3s, box-shadow 0.3s;
    }

    .contact-item:hover .icon-box {
      background: rgba(201,168,76,0.22);
      box-shadow: 0 0 18px rgba(201,168,76,0.25);
    }

    .contact-label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2px;
      display: block;
    }

    .contact-value {
      color: #fff;
      font-size: 0.95rem;
      font-weight: 600;
      word-break: break-word;
    }

    a.contact-item .contact-value:hover { text-decoration: underline; }

    /* Separator */
    .info-sep {
      border: none;
      border-top: 1px solid rgba(201,168,76,0.2);
      margin: 1.4rem 0;
    }

    /* Hours table */
    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.4rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 0.88rem;
    }

    .hours-row:last-child { border-bottom: none; }
    .hours-day { color: rgba(255,255,255,0.55); }
    .hours-time { color: #fff; font-weight: 600; }
    .hours-time.closed { color: rgba(255,50,50,0.8); font-weight: 400; }

    /* -------- Social strip -------- */
    .social-strip {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .social-btn {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      transition: all 0.3s;
      text-decoration: none;
    }

    .social-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #000;
      transform: translateY(-3px);
    }

    /* -------- Floating particles -------- */
    .particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

    .particle {
      position: absolute;
      width: 2px; height: 2px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0;
      animation: float linear infinite;
    }

    @keyframes float {
      0%   { opacity: 0; transform: translateY(100vh) scale(0); }
      10%  { opacity: 0.6; }
      90%  { opacity: 0.3; }
      100% { opacity: 0; transform: translateY(-20px) scale(1.5); }
    }

    /* -------- Keyframes -------- */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* -------- Floating label animation delay for form rows -------- */
    .form-row-anim {
      opacity: 0;
      animation: fadeUp 0.5s forwards;
    }
    .d1 { animation-delay: 0.65s; }
    .d2 { animation-delay: 0.75s; }
    .d3 { animation-delay: 0.85s; }
    .d4 { animation-delay: 0.95s; }
    .d5 { animation-delay: 1.05s; }
    .d6 { animation-delay: 1.15s; }

    /* Pulse badge */
    .pulse-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(201,168,76,0.12);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 0.3rem 0.9rem;
      color: var(--gold);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.1s forwards;
    }

    .pulse-dot {
      width: 7px; height: 7px;
      background: var(--primary);
      border-radius: 50%;
      animation: pulse 1.6s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
      50%       { box-shadow: 0 0 0 6px rgba(46,204,113,0); }
    }



/* ── Floating blobs ── */
    .blob-bg {
      position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    }
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      opacity: .25;
      animation: drift 12s ease-in-out infinite alternate;
    }
    .blob-1 { width:340px; height:340px; background:var(--pink);   top:-80px; left:-80px;  animation-duration:14s; }
    .blob-2 { width:280px; height:280px; background:var(--cyan);   bottom:0;  right:-60px; animation-duration:10s; }
    .blob-3 { width:220px; height:220px; background:var(--yellow); top:40%;   left:55%;   animation-duration:16s; }
    @keyframes drift {
      from { transform: translate(0,0) scale(1); }
      to   { transform: translate(30px,20px) scale(1.1); }
    }

    /* ── Page wrapper ── */
    .faq-wrapper {
      position: relative; z-index: 1;
      padding: 60px 0 80px;
    }

    /* ── Section label ── */
    .section-chip {
      display: inline-block;
      background: var(--yellow);
      color: #3d2c00;
      font-family: 'Fredoka One', cursive;
      font-size: 1rem;
      letter-spacing: .08em;
      padding: 6px 22px;
      border-radius: 50px;
      border: 3px solid #3d2c00;
      box-shadow: 3px 3px 0 #3d2c00;
      margin-bottom: 10px;
    }

    /* ── Big display title (not a heading tag) ── */
    .faq-title {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      color: #1a1a2e;
      line-height: 1.15;
      margin-bottom: 8px;
    }
    .faq-title span { color: var(--pink); }

    .faq-subtitle {
      font-size: 1.1rem;
      color: #555;
      font-weight: 600;
      max-width: 480px;
    }

    /* ── Sticker emoji ── */
    .sticker {
      font-size: 3.5rem;
      animation: wiggle 3s ease-in-out infinite;
      display: inline-block;
    }
    @keyframes wiggle {
      0%,100% { transform: rotate(-5deg); }
      50%      { transform: rotate(6deg); }
    }



    /* ── FAQ Card ── */
    .faq-card {
      background: #fff;
      border: 2.5px solid #1a1a2e;
      border-radius: 20px;
      margin-bottom: 14px;
      box-shadow: 5px 5px 0 #1a1a2e;
      overflow: hidden;
      transition: box-shadow .2s, transform .2s;
    }
    .faq-card:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 #1a1a2e; }

    /* Color stripe on left */
    .faq-card.c-pink   { border-left: 6px solid var(--pink); }
    .faq-card.c-cyan   { border-left: 6px solid var(--cyan); }
    .faq-card.c-yellow { border-left: 6px solid var(--yellow); }
    .faq-card.c-purple { border-left: 6px solid var(--purple); }
    .faq-card.c-orange { border-left: 6px solid var(--orange); }
    .faq-card.c-green  { border-left: 6px solid var(--green); }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 22px;
      cursor: pointer;
      background: transparent;
      border: none;
      width: 100%;
      text-align: left;
    }

    .faq-q-text {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(1rem, 2.5vw, 1.15rem);
      color: #1a1a2e;
      flex: 1;
    }

    .faq-emoji {
      font-size: 1.5rem;
      flex-shrink: 0;
      transition: transform .3s;
    }

    .faq-icon {
      width: 34px; height: 34px;
      border-radius: 50%;
      border: 2.5px solid #1a1a2e;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      font-weight: 900;
      flex-shrink: 0;
      transition: transform .3s, background .3s;
      background: #fff;
      color: #1a1a2e;
    }

    .faq-card.open .faq-icon {
      transform: rotate(45deg);
      background: #1a1a2e;
      color: #fff;
    }
    .faq-card.open .faq-emoji { transform: scale(1.25) rotate(10deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
      padding: 0 22px;
      font-size: .98rem;
      color: #444;
      font-weight: 600;
      line-height: 1.7;
    }
    .faq-answer.open {
      max-height: 400px;
      padding: 0 22px 20px;
    }

    .faq-divider {
      height: 2px;
      background: #1a1a2e;
      margin: 0;
      opacity: 0;
      transition: opacity .3s;
    }
    .faq-card.open .faq-divider { opacity: 1; }



    /* ── Still curious banner ── */
    .curious-banner {
      background: var(--yellow);
      border: 3px solid #1a1a2e;
      border-radius: 20px;
      box-shadow: 6px 6px 0 #1a1a2e;
      padding: 32px;
      text-align: center;
      margin-top: 36px;
    }
    .curious-banner .banner-title {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(1.4rem, 4vw, 2rem);
      color: #1a1a2e;
      margin-bottom: 8px;
    }
    .curious-banner p { color: #3d2c00; font-weight: 700; margin-bottom: 18px; }
    .btn-fun {
      display: inline-block;
      font-family: 'Fredoka One', cursive;
      font-size: 1rem;
      padding: 12px 32px;
      border-radius: 50px;
      border: 2.5px solid #1a1a2e;
      background: #1a1a2e;
      color: #fff;
      text-decoration: none;
      box-shadow: 4px 4px 0 #FF6B9D;
      transition: all .2s;
    }
    .btn-fun:hover {
      transform: translate(-2px,-2px);
      box-shadow: 6px 6px 0 #FF6B9D;
      color: #fff;
    }

    /* ── Hidden ── */
    .faq-card.hidden { display: none; }

    /* ── Responsive tweaks ── */
    @media (max-width: 576px) {
      .faq-question { padding: 14px 16px; }
      .faq-answer.open { padding: 0 16px 16px; }
    }

    .sm-widget {
        position: fixed;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 99999;
    }

    .sm-panel {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .sm-item {
        position: relative;
        display: flex;
        align-items: center;
        animation: smSlideIn 0.5s ease backwards;
    }

    .sm-item:nth-child(1){ animation-delay: .1s; }
    .sm-item:nth-child(2){ animation-delay: .2s; }
    .sm-item:nth-child(3){ animation-delay: .3s; }
    .sm-item:nth-child(4){ animation-delay: .4s; }
    .sm-item:nth-child(5){ animation-delay: .5s; }

    .sm-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #fff;
        border: 2px solid #fff;
        transition: .3s ease;
        position: relative;
        z-index: 2;
    }

    .sm-btn:hover {
        transform: scale(1.1);
    }

    .sm-info {
        position: absolute;
        left: 60px;
        top: 50%;
        transform: translateY(-50%) translateX(-20px);
        background: #fff;
        padding: 12px 16px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: .3s ease;
    }

    .sm-item:hover .sm-info {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
    }

    .sm-info-icon {
        font-size: 18px;
    }

    .sm-title {
        font-size: 13px;
        font-weight: 600;
        color: #333;
    }

    .sm-text {
        font-size: 12px;
        color: #666;
    }

    /* Colors */
    .sm-bg-1{ background:#25D366; }
    .sm-bg-2{ background:#FF6B6B; }
    .sm-bg-3{ background:#4267B2; }
    .sm-bg-4{ background:#EA4335; }
    .sm-bg-5{ background:#FFA500; }

    .sm-color-1{ color:#25D366; }
    .sm-color-2{ color:#FF6B6B; }
    .sm-color-3{ color:#4267B2; }
    .sm-color-4{ color:#EA4335; }
    .sm-color-5{ color:#FFA500; }

    @keyframes smSlideIn {
        from { opacity:0; transform:translateX(-30px); }
        to { opacity:1; transform:translateX(0); }
    }

    @media (max-width:768px){
        .sm-widget{ left:10px; }
        .sm-btn{
            width:45px;
            height:45px;
            font-size:18px;
        }
        .sm-info{
            left:55px;
            padding:10px 12px;
        }
    }

    .sm-top-btn{
        position: fixed;
        right: 25px;
        bottom: 25px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        background: #111;
        color: #fff;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all .3s ease;
        z-index: 99999;
    }

    .sm-top-btn.sm-show{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .sm-top-btn:hover{
        transform: translateY(-3px);
    }

    @media (max-width:768px){
        .sm-top-btn{
            width:45px;
            height:45px;
            font-size:18px;
            right:15px;
            bottom:15px;
        }
    }