:root {
  --bg: #fff7ec;
  --bg-soft: #fff1da;
  --ink: #2b1c1c;
  --muted: #6a4b4b;
  --accent: #ff6f3d;
  --accent-2: #ffb347;
  --accent-3: #3fb9b3;
  --accent-4: #6b6ef9;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(43, 28, 28, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --blue: #1b507c;
}

*{
  scroll-behavior: smooth;
}
 html, body{
  overflow-x: hidden;
 }

ul li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}
.cta-btn {
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(255, 111, 61, 0.25);
  cursor: pointer;
}
.cta-btn:hover{


  color: white !important;
}

a {
  text-decoration: none !important;
  color: unset;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Baloo 2", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 500px at 70% -20%, #ffe6c7 0%, #fff7ec 55%, #fff7ec 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.page {
  position: relative;
  isolation: isolate;
}

.clouds {
  position: absolute;
  inset: 0 0 auto 0;
  height: 320px;
  background:
    radial-gradient(90px 40px at 8% 70%, rgba(255, 255, 255, 0.9) 60%, transparent 62%),
    radial-gradient(120px 50px at 25% 50%, rgba(255, 255, 255, 0.95) 60%, transparent 62%),
    radial-gradient(110px 50px at 50% 65%, rgba(255, 255, 255, 0.9) 60%, transparent 62%),
    radial-gradient(140px 60px at 78% 55%, rgba(255, 255, 255, 0.95) 60%, transparent 62%),
    radial-gradient(90px 40px at 92% 72%, rgba(255, 255, 255, 0.9) 60%, transparent 62%);
  opacity: 0.9;
  z-index: 0;
  animation: floatClouds 28s linear infinite;
}

@keyframes floatClouds {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-40px);
  }

  100% {
    transform: translateX(0);
  }
}

/* header start */

#header{
  border-bottom: 1px solid rgba(255, 181, 120, 0.4);
}
.navbar-toggler{
  padding: .40rem .50rem !important;
    background-color: #db7013 !important;
}
.navbar-toggler .fa-solid{
  color: white !important;
}

#header .nav-link {
    color: black;
    font-weight: 500;
    font-size: 18px;
    padding: 8px 16px;
    transition: 0.5s;
}
#header .navbar-brand img{
  width: 65%;
}
#header .nav-link:hover {
    color:#1b507c !important;
}

#header .nav-link.active {
    color: #1b507c !important;
}


#header .navbar-expand-lg .navbar-nav {
    margin: auto;
}
.navbar-toggler:focus{
  box-shadow: none !important
}
 .navbar-expand-lg .navbar-nav .dropdown-menu{
    background-color: #fff7ec !important;

  }
/* Mega Menu Styling */

.mega-menu {
  left: 0;
  right: 0;
  top: 99%;
}

.mega-title {
    font-weight: 600;
    margin-bottom: 16px;
    color: #d37a25;
    font-size: 18px;
}

.mega-menu ul li {
  margin-bottom: 6px;
}

.mega-menu ul li a {
  text-decoration: none;
  color:black;
  font-size: 15px;
  transition: 0.3s;
  font-weight: 500;
}

.mega-menu ul li a:hover {
  color:#1b507c;
  padding-left: 5px;
}


/* header end */
/* header end */
.ghost {
  background: transparent;
  border: 2px dashed var(--accent-3);
  color: var(--accent-3);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
}
.ghost:hover{
    color: var(--accent-3);

}

.eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-3);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

/* home-banner start */

#home-banner-2 {
  display: none;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, #ffe1d1 0%, transparent 70%);
  top: -70px;
  right: -60px;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-gallery img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(43, 28, 28, 0.12);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pill {
  padding: 12px 14px;
  border-radius: 18px;
  background: #fff4e9;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffd0b2;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 24px;
}
.section-title p{
      color: var(--muted);
    font-size: 1.02rem;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 15px;
  font-family: "Baloo 2", sans-serif;
  font-size: 40px;
  font-weight: 600 !important;
  flex-wrap: wrap

}

.sub-head {
  color: #d97013;
  font-size: 18px;
  font-family: "Baloo 2", sans-serif;

}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 10px 12px 14px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.category-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.18;
  right: -30px;
  top: -30px;
  background: var(--accent-4);
}

.category-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 5px;
  border: 4px solid #fff7ec;
  box-shadow:
    0 0 0 6px rgba(255, 179, 71, 0.35),
    0 14px 24px rgba(43, 28, 28, 0.12);
}

.category-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: black;
}

.category-card p {
  color: var(--muted);
  font-size: 0.8rem;
}

.category-tag {
  background: #fff1da;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  width: max-content;
  color: black;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.product-card .product-img.two{
  display: none;
}

.product-card:hover .product-img.first{
  display: none;
}

.product-card:hover .product-img.two{
  display: block;
}


.product-img {
  width: 100%;
  border-radius: 16px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.mini-btn {
  background: #fff0e1;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  color: black;
}
.mini-btn:hover{
  color: #1c517c;
}


.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.about-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff4e9 100%);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 181, 120, 0.35);
  position: relative;
  overflow: hidden;
}

.about-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -50px;
  bottom: -50px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 111, 61, 0.25), transparent 70%);
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.about-list {
  margin-top: 14px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.about-list li {
  margin-bottom: 8px;
  font-weight: 600;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.about-video {
  width: 100%;
  height: 600px;
  max-height: 600px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--radius-md) + 6px);
  border: 2px dashed rgba(63, 185, 179, 0.45);
  z-index: -1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover img {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 44px rgba(43, 28, 28, 0.18);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 10, 10, 0.6);
  backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: min(900px, 92vw);
  max-height: 86vh;
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.lightbox-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.feature {
  border-radius: var(--radius-md);
  padding: 22px;
  background: linear-gradient(135deg, #fff0e1 0%, #fff8f1 100%);
  border: 1px solid rgba(255, 181, 120, 0.35);
}

.feature strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature span {
  color: var(--muted);
  font-size: 0.9rem;
}

.deal {
  background: linear-gradient(135deg, #6b6ef9 0%, #9b93ff 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid;
  gap: 12px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(107, 110, 249, 0.3);
}

.deal h3 {
  font-size: 1.6rem;
}

.deal small {
  opacity: 0.8;
}

.deal .timer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.timer div {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 14px;
  border-radius: 14px;
  text-align: center;
  min-width: 70px;
  font-weight: 700;
}

.newsletter {
  background: linear-gradient(180deg, #fff0e1 0%, #fff7ec 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 18px;
  align-items: center;
}

.newsletter form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1 1 220px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid #ffd8b5;
  outline: none;
}

footer {
  padding: 40px 24px 60px;
  background: #fff0e1;
  border-top: 1px solid rgba(255, 181, 120, 0.4);
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer-grid h4 {
  margin-bottom: 8px;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 6px;
  font-weight: 600;
}
.footer-grid a:hover{
  color: black;
  transition: 0.5s;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff7ec;
  color: var(--ink);
  box-shadow: 0 10px 20px rgba(43, 28, 28, 0.12);
  border: 1px solid rgba(255, 181, 120, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background: #fff0e1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 200px;
  height: 120px;
}

.footer-bottom {
  text-align: center;
  color: var(--muted);
}

.float-bubbles span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 180, 96, 0.5);
  animation: floatBubble 8s ease-in-out infinite;
}

.float-bubbles span:nth-child(1) {
  left: 8%;
  top: 36%;
  animation-delay: 0s;
}

.float-bubbles span:nth-child(2) {
  left: 18%;
  top: 62%;
  animation-delay: 2s;
  background: rgba(63, 185, 179, 0.45);
}

.float-bubbles span:nth-child(3) {
  left: 72%;
  top: 30%;
  animation-delay: 1s;
  background: rgba(107, 110, 249, 0.4);
}

.float-bubbles span:nth-child(4) {
  left: 88%;
  top: 58%;
  animation-delay: 3s;
  background: rgba(255, 111, 61, 0.35);
}

@keyframes floatBubble {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-hero {
  padding-top: 60px;
}
button:focus {
    /* outline: 1px dotted; */
    outline: none !important;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff0e1;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 22px;
}

.breadcrumb-banner {
  background:
    linear-gradient(120deg, rgb(255, 247, 236), rgb(255, 220, 190)),
    url("../assets/img/hero/herobanner.png") center/cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 64px 24px;
  margin-bottom: 22px;
  /* box-shadow: var(--shadow); */
  border: 1px solid rgba(255, 181, 120, 0.35);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 180px;
  display: flex;
  align-items: center;
}

.breadcrumb {
  background: rgba(255, 247, 236, 0.92);
  box-shadow: 0 10px 20px rgba(43, 28, 28, 0.12);
  margin: auto;
}

.breadcrumb a {
  text-decoration: none;
  color: #1b507c;
}

.faq-hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.faq-hero-content h1 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin-bottom: 12px;
}

.faq-hero-content p {
  color: var(--muted);
  font-size: 1.02rem;
}

.faq-hero-card {
  background: linear-gradient(135deg, #fff4e9 0%, #ffffff 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 181, 120, 0.35);
  position: relative;
  overflow: hidden;
}

.faq-hero-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 179, 71, 0.35), transparent 70%);
}

.faq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 181, 120, 0.25);
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

.faq-item::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: -40px;
  top: -50px;
  background: rgba(63, 185, 179, 0.18);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 6px 32px 6px 0;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  color: var(--ink);
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 2px;
  font-size: 1.4rem;
  color: var(--accent-3);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 10px;
  padding-right: 10px;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-callout-card {
  background: linear-gradient(135deg, #fff0e1 0%, #ffffff 100%);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(255, 181, 120, 0.35);
  box-shadow: var(--shadow);
}

.faq-callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-hero-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  align-items: center;
}

.contact-hero-head h1 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin-bottom: 10px;
}

.contact-hero-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-badge {
  background: linear-gradient(135deg, #fff4e9 0%, #ffffff 100%);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 181, 120, 0.35);
  display: grid;
  gap: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  /* gap: 24px; */
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 16px;
}
.contact-details .contact-card a:hover{
cursor: pointer;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 181, 120, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: -40px;
  top: -50px;
  background: rgba(255, 179, 71, 0.22);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contact-note {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-form-card {
  background: linear-gradient(135deg, #fff0e1 0%, #ffffff 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 181, 120, 0.35);
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #ffd8b5;
  outline: none;
  font-size: 0.95rem;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 181, 120, 0.35);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.map-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 247, 236, 0.95);
  padding: 10px 14px;
  border-radius: 999px;
  display: grid;
  gap: 2px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(43, 28, 28, 0.12);
}

.image-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.mosaic-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mosaic-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mosaic-card:hover img {
  transform: scale(1.05);
}

.mosaic-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(255, 247, 236, 0.95);
  color: var(--ink);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }



  .menu-btn {
    display: inline-flex;
    flex-direction: column;
    ;
  }

  .hero {
    padding-top: 60px;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mosaic-card img {
    height: 200px;
  }
}

@media (max-width: 600px) {


  .cta-btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-card {
    padding: 18px;
  }

  .section {
    padding: 40px 18px;
  }

  .newsletter form {
    flex-direction: column;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-card img {
    height: 180px;
  }

  .faq-callout-actions {
    justify-content: flex-start;
  }

  .map-wrap iframe {
    height: 260px;
  }
}

/* about-page start */
.about-section {
  background: #fff7ec;
}

.about-keypoints {
  list-style: none;
  padding-left: 0;
}
.about-section .left img{
  border-radius: 20px;
}
.about-keypoints li {
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
}

#why-choose .feature-box .img-box {
  height: 70px;
  width: 70px;
  margin: auto;
  margin-bottom: 10px;
}

#why-choose .feature-box {
  text-align: center;
}

#why-choose .feature-box h5 {
  font-size: 24px;
}

#why-choose .feature-box p {
  font-size: 16px;
}

#why-choose .feature-box .img-box img {
  height: 100%;
  width: 100%;
}

.about-section h2 {
  color: #222;
}

.mission-box {
  background: #ffffff;
  transition: 0.3s ease;
}

.mission-box:hover {
  transform: translateY(-5px);
}

.feature-box {
  /* background: #ffffff; */
  border-radius: 10px;
  transition: 0.3s ease;
}

.feature-box:hover {
  background: white;
  transform: translateY(-5px);
}

.btn-primary {
  background-color: #4a7cff;
  border: none;
}

.btn-primary:hover {
  background-color: #2f5fe3;
}

/* about-page end */


/* safety-section start */


.info-section {
  background-color: #fff7ec;
}

.section-text {
  line-height: 1.7;
}

.custom-list {
  padding-left: 20px;
  line-height: 1.8;
}

.custom-list li {
  margin-bottom: 6px;
}

.custom-btn {
  background-color: #20c6c7;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s ease;
}

.custom-btn:hover {
  background-color: #17a7a8;
  color: #fff;
  transform: translateY(-3px);
}


/* safety-section end */
#features .feature-strip {
  background-color: transparent;
}

.feature-strip {
  background-color: #1b507c;
  /* light beige background */
}

.feature-item h6 {
  font-weight: 600;
  font-size: 18px;
  text-align: start;
  color: white;
}

.feature-item p {
  color: white;
  font-size: 16px;
  text-align: start;
}

.icon-box {
  width: 45px;
  height: 45px;
  background-color: #fff;
  color: #d38e51;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-right: 5px;
  flex-shrink: 0;
}

.feature-item {
  transition: 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

/* review start */
.review .rich {
  text-align: start !important;
}

/* product page start */

#product-page{
  background-color: #fff7ec;
}

#product-page .product-card{
    background:#fff;
    border-radius:12px;
    padding:20px 10px;
    text-align:center;
    transition:0.3s;
    position:relative;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    height:100%;
}

#product-page .product-card:hover .cta-btn {
    transform:translateY(-5px);
    transition: 0.5s;
}

#product-page .wishlist{
    position:absolute;
    top:15px;
    right:15px;
    color:#ff4d6d;
    font-size:18px;
    cursor:pointer;
}

#product-page .product-title{
    font-weight:600;
    letter-spacing:1px;
    margin-bottom: 0;
}

#product-page .rating{
    color:#f4b400;
    font-size:14px;
}

#product-page .product-img{
    transition:0.3s;
}

#product-page .prod-name{
    color:#1b517c;
    font-weight:700;
    font-size:18px;
}

#product-page .product-desc{
margin-bottom: 0;
}


#product-page .color-circle{
    width:28px;
    height:28px;
    border-radius:50%;
    display:inline-block;
    margin:0 5px;
    cursor:pointer;
    border:2px solid transparent;
}

#product-page .color-circle.active{
    border:2px solid #ff763e;
}


/* product page end */

/* logo-scroller start */
.logo-scroller .card-img{
padding: 20px;
}

/* logo-scroller end */

/* icon start */
.floating-btn {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Pulse effect */
.floating-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* WhatsApp Left */
.whatsapp-btn {
    left: 20px;
    background-color: #25D366;
    color: white;
}
.whatsapp-btn i{
  font-size: 30px;
}
.whatsapp-btn:hover{
  color: white;
}

/* Call Right */
.call-btn {
    right: 20px;
    background-color:#d76f0e ;
    color: white;
}
.call-btn i{
    font-size: 30px;

}
.call-btn:hover i{
   color: white;
}

/* Hover effect */
.floating-btn:hover {
    transform: scale(1.15);
}


/* icon end */

/* cat-age start */
#cat-age .content p span{
  font-size: 34px;
  font-weight: bold;
}
#cat-age .content p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  color: black;
}
#cat-age .main{
      display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    

}
#cat-age .main .img-box {
    border-radius: 50%;
    overflow: hidden;
       height: 180px;
    width: 180px;
    position: relative;

}
#cat-age .main .img-box::after{
   content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed red;
  animation: circle-ani 20s linear infinite;
 
}

@keyframes circle-ani {
  0%{
    transform: rotate(0deg);
  }
   100%{
    transform: rotate(360deg);
  }
  
}

#cat-age .main .img-box img{
  border-radius: 50%;
}
#cat-age .main .img-box:hover img{
  transform: scale(1.1);
  transition: 0.5s;
}

#products .product-name{
  font-size: 18px;
  color: black;
}