html {
  scroll-behavior: smooth;
}
/* =============================== */
/* PREMIUM PAGE LOAD ANIMATIONS   */
/* =============================== */

/* NAVBAR FADE + SLIDE DOWN */
/* General Header Styles */
.site-header {
    /* position: fixed; */
    top: 0;
    width: 100%;
    background: white;
    z-index: 30;
    box-shadow: 0 2px 6px rgba(15,23,42,0.05);
    opacity: 0;
    transform: translateY(-30px);
    animation: navbarDrop 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.container {
    width: 90%;
    max-width: var(--container, 1200px);
    margin: 0 auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: #5D4037;
    text-align: center;
    display: flex;
}

.nav {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
    /* border: 1px solid red;; */
    /* width: 100%;; */

}

.nav a {
    color: #5D4037;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.6; 
}

.nav a.active,.nav a:hover {
    opacity: 1.0; 
    color: black;
}

.btn-primary {
    padding: 8px 16px;
    background: #5D4037;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #5D4037;
    border-radius: 3px;
}

/* Navbar Drop Animation */
@keyframes navbarDrop {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 980px) {
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-image { width: 80%; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .site-header{position: fixed;}
}

@media (max-width: 600px) {
    .nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 200px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        padding: 10px;
        border-radius: 4px;
    }

    .nav a {
        padding: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav.active {
        display: flex;
    }

    .header-inner { justify-content: space-between; }
    
}
/* ------------------- HEADER BASE ------------------- */
/* NAVBAR ANIMATION */
body {
    opacity: 0;
    transform: translateY(-30px);
    animation: navbarDrop 0.8s ease-out forwards;
    animation-delay: 0.2s;
    color: #5D4037;
}

/* KEYFRAME */
@keyframes navbarDrop {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Root variables */
:root{
  --container: 1100px;
}

/* Basic resets */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  -webkit-font-smoothing:antialiased;
}

/* container */
.container{
  width:90%;
  max-width:var(--container);
  margin:0 auto;
}

/* Header base */
.site-header{
  background:white;
  position:sticky;
  top:0;
  width: 100%;
  z-index:30;
  box-shadow:0 2px 6px rgba(15,23,42,0.05);
}
.site-header {
    /* position: fixed; */
    top: 0;
    width: 100%;
    background: white;
    z-index: 30;
    box-shadow: 0 2px 6px rgba(15,23,42,0.05);
    opacity: 0;
    transform: translateY(-30px);
    animation: navbarDrop 0.8s ease-out forwards;
    animation-delay: 0.2s;
}
/* Inner layout */
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

/* Logo */
.logo{
  font-weight:700; 
  font-size:1.25rem; 
  display:flex; 
  text-align:center;
}

/* Navigation */
.nav{
  display:flex; 
  gap:18px; 
  justify-content:flex-end; 
  width:100%;
}

.nav a{
  color:#5D4037; 
  text-decoration:none; 
  font-weight:500;
}

/* CTA Button */
.btn-primary {
  background-color: #5D4037;
  padding: 10px;
  color: #FFF5E1;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-right: 30px;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
}

.btn-primary:hover {
  background-color: #FFF5E1;
  color: #5D4037;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Mobile responsive */
@media (max-width:600px){
  .nav{display:none}
  .header-inner{justify-content:space-between}
}
/* HAMBURGER BUTTON */
.hamburger {
    width: 32px;
    height: 26px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 200;
}

.hamburger span {
    width: 100%;
    height: 4px;
    background: #5D4037;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* Hamburger → Cross */
.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ------------------------------
   MOBILE MENU (Vertical Dropdown)
------------------------------- */
@media (max-width: 600px) {

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Hide menu by default */
    .nav {
        display: none;
        flex-direction: column !important;
        width: 100%;
        background: white;
        padding: 15px 0;
        gap: 18px;
        border-top: 1px solid #e0e0e0;
        text-align: center;
    }

    /* Show vertically when active */
    .nav.active {
        display: flex;
    }

    /* Make each link full-width centered */
    .nav a {
        padding: 10px 0;
        font-size: 1rem;
        border-bottom: none;
        display: block;
    }

    /* Fix header layout */
    .header-inner {
        justify-content: space-between;
    }
}

/* MOBILE DROPDOWN MENU */
@media (max-width: 600px) {

  .nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 15px;
    background: white;
    flex-direction: column;
    width: 200px;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    z-index: 100;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  /* Fix CTA alignment */
  #cta {
    margin-right: 0;
  }
}
/* Hide CTA on screens below 1024px (tablets & mobile) */
@media (max-width: 1024px) {
    #cta {
        display: none !important;
    }
}

/* Show CTA on laptop/desktop */
@media (min-width: 1025px) {
    #cta {
        display: inline-block !important;
    }
}


/* HERO TEXT FADE + SLIDE UP */
.hero-text {
    opacity: 0;
    transform: translateY(25px);
    animation: heroTextIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

/* HERO IMAGE ZOOM + FADE */
.hero-image {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    animation: heroImgIn 1s ease-out forwards;
    animation-delay: 0.9s;
}

/* =============================== */
/* KEYFRAMES                      */
/* =============================== */

@keyframes heroTextIn {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes heroImgIn {
    0% { opacity: 0; transform: scale(0.85) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
/* =============================== */
/* SCROLL REVEAL BASE STYLES      */
/* =============================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

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

/* Optional: stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.5s; }

:root{
  --container: 1100px;
  --accent: #0b6efd;
  --muted: #6b7280;
  --bg: #f5f0eb;
  --card: #ffffff;
  --radius: 14px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin:0;
  background:var(--bg);
  color:#111827;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.btn-primary
{
  background-color: #5D4037;
  padding: 10px;
  color: #FFF5E1;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  margin-right: 30px;
  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
   
}
.btn-primary:hover
{
  background-color: #FFF5E1;
  color: #5D4037;

  box-shadow: 0px 10px 25px rgba(0,0,0,.15);
  transition: transform 0.3s, box-shadow 0.3s;
  
}
/* container */


/* Header */

.hero{
  padding:48px 0 0 0;
  background: #f5f0eb;
}

.hero-inner{display:flex; gap:30px; align-items:center; justify-content:space-between; padding:20px 0;}
.hero-text{flex:1; max-width:640px;  ; }
.hero-text h1{font-size:3rem; margin:0 0 12px; color: #5D4037;}
.hero-text h2{font-size:2rem; margin:0 0 12px; color: #00b09f; margin-top: 5%;;}
.hero-text p{color:var(--muted); margin:0 0 18px; width: 85%;color: #2b2b2b; font-size: 20px;margin-top: 5%; padding: 0 10px 20px 0;;}
.hero-actions .btn{margin-right:10px}
.hero-image{width:50px; height:100px;; display:flex; align-items:center; justify-content:center; margin-bottom: 25%; }
.btn{margin-top: 5%;display:inline-block; text-decoration:none; padding:10px 16px; border-radius:10px; font-weight:600; border:0; cursor:pointer}
.btn.primary{background:var(--accent); background-color:#5D4037; color: white;}
.btn.outline{background:transparent; border:1px solid #e6e9ee; color:#111}
.trusted{padding:20px 0px 0px 0px; margin-top: 40px;}
.wrapper {
  display: flex;
  width: 100%;
  max-width: var(--container, 1200px);
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center; /* vertically center on desktop */
  color: #5D4037;
  padding: 2rem 1rem;
}

.left {
  flex: 1 1 230px;
  font-size: 20px;
  font-weight: 600;
  padding: 1rem;
}

.right {
  flex: 3 1 710px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: slide 20s linear infinite;
}

.company img {
  display: block;
  height: 50px;
}

/* Marquee animation */
@keyframes slide {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    text-align: center;
  }

  .left {
    flex: 1 1 100%;
    margin-bottom: 1rem;
    font-size: 18px;
  }

  .right {
    flex: 1 1 100%;
  }

  .marquee-track {
    gap: 40px;
  }
}

@media (max-width: 480px)
 {
  .hero-img
  {
    height: 300px;;
  }
  .hero-text h1
  {
    font-size: 50px;
    margin-top: -40px;;
  }
  .hero-text h2
  {
    font-size: 28px;;
  }
  .hero-text p{
    font-size: 20px;
    text-align: center;
    /* border: 1px solid red; */
    width: 100%;;
    padding: 20px;;
    margin: auto;
    
  }
  .hero-actions a
  {
    
    justify-content: center;
    text-align: center;
    margin:auto;
    margin-top: 100px;
  }
  .trusted
  {
    margin-top: -120px;;
  }
  .left {
    font-size: 16px;
  }
  .right
  {
    margin-top: -40px;;
  }

  .marquee-track {
    gap: 20px;
  }

  .company img {
    height: 40px;
  }
  #service
  {
    margin-top: 10px;;
  }
  
}

/* MOBILE & TABLET FIX */
@media (max-width: 868px) {
    .wrapper {
        flex-direction: column;
        padding: 1.5rem;
    }

    .left, .right {
        width: 100%;
        padding: 1rem;
    }

    .left {
        text-align: center;
    }
}


/* .productcontainer
{
  background-color: #f5f0eb;
} */
.sectionHeader h2
{
  padding-top: 5%;;
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #5D4037;
  font-weight: 700;
}
.sectionHeader h3
{
  text-align: center;
  margin-bottom: 10px;
  color: #5D4037;
  font-weight: 600;
  font-size: xx-large;
}
.sectionHeader p
{
  text-align: center;
  margin-bottom: 40px;
  color: #5D4037;
  font-weight: 500;
  font-size: smaller;
}

.title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 26px;
  font-weight: 600;
}
/* Pills container - horizontal scroll on mobile */
.category-container {
  display: flex;
  flex-wrap: nowrap; /* prevent wrapping */
  overflow-x: auto; /* allow horizontal scroll */
  gap: 12px;
  margin-bottom: 35px;
  padding: 0 10px; /* padding to see first and last pills */
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

/* Hide scrollbar (optional) */
.category-container::-webkit-scrollbar {
  display: none;
  
}

/* Pills styling stays the same */
.pill {
  flex: 0 0 auto; /* prevent pills from shrinking */
  padding: 10px 20px;
  border-radius: 25px;
  border: 2px solid #5D4037;
  background: white;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  
}

.pill:hover,
.pill.active {
  background: #5D4037;
  color: #FFF5E1;
}

/* Service cards grid */
.service-cards {
  text-align: left;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* InnerDiv styling remains */
.innerDiv {
  border-radius: 18px;
  /* box-shadow: 0px 5px 20px rgba(0,0,0,0.1); */
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  margin-bottom: 15px; /* spacing between innerDivs */
  padding: 15px 20px;  /* consistent padding */
  background-color: #FFF5E1;
  position: relative;
}

.innerDiv:hover {
  transform: translateY(-2px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.01);
}

/* Headings inside innerDiv */
.innerDiv h5 {
  margin: 0 0 8px 0; /* remove extra left margin */
  font-weight: 600;
  font-size: 1rem;
  color: #5D4037;
  width: 100%;       /* full width */
}

/* Paragraphs inside innerDiv */
.innerDiv p {
  margin: 0;          /* remove extra margin */
  font-size: 0.9rem;
  color: #5D4037;
  font-weight: 500;
  line-height: 1.4;
  width: 100%;        /* full width like h5 */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Pills scrollable horizontal row */
  .category-container {
    justify-content: flex-start;
  }

  /* Service cards 1 column */
  .service-cards {
    grid-template-columns: 1fr;
  }

  
}
.serviceTitle
  {
    margin:auto;
    padding: 10px;
  }
@media (max-width: 480px) 
{
  .innerDiv {
    margin: 5px auto 5px auto;
    width: 90%;
    text-align: center;
    border-radius: 5px;
    box-shadow: none;
    background-color: #fdf7f3;
  }
  .card
  {
    width: 300px;
    margin: auto;
  
  }
  
  .pill {
    padding: 8px 16px;
    font-size: 13px;
  }
  .innerDiv
  {
    padding: 5px;
    
  }

  .innerDiv h5 {
    font-size: 12px;
    
  }

  .innerDiv p {
    font-size: 10px;
    /* margin: 1px solid red;; */
  }
  .serviceTitle
  {
    margin:auto;
    padding: auto;
  }
}

.card {
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
/* =============================
   PRICING CARDS – DESKTOP + MOBILE
============================= */

.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 20px 0;
  margin: auto;
  max-width: 1200px;
  overflow: visible;
}

.card2 {
  background: #ffffff;
  /* border: 2px solid #5D4037; */
  border-radius: 18px;
  padding: 20px;
  width: 270px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect only on desktop */
@media (min-width: 768px) {
  .card2:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
}

/* Titles */
.card2 h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
}

.card2 .sub {
  text-align: center;
  font-size: 14px;
  color: #5D4037;
  margin-bottom: 10px;
}

/* Price label */
.card2 .price {
  text-align: center;
  font-size: 30px;
  margin-top: 0px;;
  margin-bottom: 15px;
}

/* Feature List */
.features-list {
  flex-grow: 1;
  display: flex;
}

.features-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  width: 100%;
}

.features-list li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/* Get Started Button */
.startBtn {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: #5D4037;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.startBtn:hover {
  background: #3E2C27;
}

/* =============================
   MOBILE RESPONSIVE – SCROLL
============================= */

@media (max-width: 768px) {
  .pricing-cards {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px;
    justify-content: flex-start;
  }

  .pricing-cards::-webkit-scrollbar {
    display: none;
  }

  .card2 {
    min-width: 260px;  /* FIXED SIZE ON MOBILE */
    flex: 0 0 auto;
    scroll-snap-align: center;
  }
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}
.card h2 {
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
  color:rgb(0, 0, 0);
}
.price {
  font-size: 28px;
  font-weight: bold;
  color: #1a1030;
  margin-top: 5px;

}




.sectionHeader {
  margin-top: -65px;;
  text-align: center;
  padding: 40px 0;
}

 .category-wrapper::-webkit-scrollbar {
  display: none;
}
/* Scrollable wrapper */
.category-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
  max-width: 1100px;       /* same width as your main content */
  margin: 0 auto;          /* center in the page */
}

/* Pills container */
.category-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow: visible;       /* allow tooltips */
  padding-left: 10px;      /* optional, add some spacing from edge */
  padding-right: 10px;
}

/* Pills */
.pill {
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 25px;
  border: 2px solid #5D4037;
  background: white;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  position: relative;
  transition: 0.3s;
}

/* Active pill */
.pill.active {
  background: #5D4037;
  color: #FFF5E1;
}

/* Hover for active/non-disabled */
.pill:hover:not(.disabled) {
  background: #5D4037;
  color: #FFF5E1;
}

/* Disabled pills */
/* Base pill styling */
.pill.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  position: relative;
}


/* Show tooltip on hover (desktop) */
.pill.disabled:hover::after {
  opacity: 1;
}

/* Show tooltip on touch (mobile) */
/* Disabled pills */
.pill.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  position: relative;
}

/* Tooltip using ::after */
.pill.disabled::after {
  content: "Coming Soon";
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #5D4037;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 15px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 20;
}

/* Desktop hover */
.pill.disabled:hover::after {
  opacity: 1;
}

/* Mobile show */
.pill.disabled.show-tooltip::after {
  opacity: 1;
}

.pill.disabled {
  position: relative;
}

/* Tooltip hidden by default */
.pill.disabled .tooltip {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

/* Show tooltip */
.pill.disabled.show-tooltip .tooltip {
  opacity: 1;
}

/* Desktop specific adjustments */
@media (min-width: 768px) {
  .category-container {
    justify-content: flex-start; /* align left inside the wrapper */
  }
}


@media (max-width: 480px) {
  .pill {
    padding: 8px 16px;
    font-size: 13px;
  }
  .serviceTitle
  {
    margin-bottom: 10px;
  }
}

/* Make all cards same height */
/* Make all cards same height */
/* MOBILE – scrollable carousel */
/* Section */
.pricing-section {
    width: 100%;
    padding: 40px 20px;
    background: #F3EDE7;
}

/* Title */
.pricing-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #5D4037;
    margin-bottom: 30px;
}

/* Scrollable Pills */
.pill-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    margin-bottom: 40px;
    scrollbar-width: none;
}
.pill-container::-webkit-scrollbar { display: none; }

.pill {
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid #C7B8AE;
    white-space: nowrap;
    color: #5D4037;
    background: white;
    font-weight: 500;
    position: relative;
    cursor: pointer;
}
.pill.active {
    background: #5D4037;
    color: white;
}
.pill.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.pill.disabled:hover::after {
    content: "Coming Soon";
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    background: #5D4037;
    color: white;
    border-radius: 10px;
    white-space: nowrap;
    font-size: 12px;
}

/* Pricing Cards Container */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    align-items: stretch; 
}

/* Card */
.card {
    background: white;
    padding: 30px 20px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #5D4037;
}
.card-sub {
    text-align: center;
    color: #8B6F63;
    margin-bottom: 15px;
}
.price {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Features */
.card ul {
    list-style: disc;
    padding-left: 20px;
    flex-grow: 1;
}
.card ul li {
    margin-bottom: 8px;
    color: #5D4037;
}

/* Button */
.btn {
    width: 100%;
    background: #F9EED2;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .pricing-cards {
        display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    align-items: stretch; 
    }
    .card {
        min-width: 260px;
        scroll-snap-align: center;
    }
    
}


.pricing-carousel-wrapper {
  position: relative;
  max-width: 90%;
  margin: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #5D4037;
  color: #FFF5E1;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}


.features-list {
    flex-grow: 1; /* Pushes button down */
}
.get-started {
    margin-top: auto; /* Forces uniform alignment */
}

/* Outer scroll container */
.cards-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

/* Scroll area */
.cards-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 10px;
  scroll-behavior: smooth;
}

/* Hide scrollbar */
.cards-container::-webkit-scrollbar {
  display: none;
}




@media (min-width: 992px) {
  .cards-container {
    justify-content: center;   
    overflow-x: visible;        
    flex-wrap: wrap;            
  }

  .card {
    background: white;
    padding: 30px 20px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 100%;    
}

}


.card h3 {
  margin-bottom: 5px;
  color: #5D4037;
  text-align: center;
  font-weight: 700;

}

.sub {
  margin-top: 0;
  color: #666;
  font-size: 14px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  margin: 15px 0;
}

ul {
  text-align: left;
  padding-left: 18px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 6px;
  color: #444;
}

.startBtn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background-color: #FFF5E1;
  color: #5D4037;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}
.startBtn:hover {
  color: #FFF5E1;
  background-color: #5D4037;
  
}








/* Features grid (4) */

.features{padding:36px 0}
.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.card{
  background:var(--card);
  border-radius:12px;
  padding:18px;
  box-shadow:0 4px 16px rgba(11,17,25,0.03);
  width: 90%;
  margin: auto;
  background-color: #ffffff;
}
.card h4{margin:0 0 8px}
.card p{color:#5D4037; margin:0}

/* Pricing */
.pricing{padding:36px 0}
.pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.pricing-card{background:var(--card); padding:18px; border-radius:12px; text-align:center}
.pricing-card.popular{box-shadow:0 10px 30px rgba(11,110,253,0.08); transform:translateY(-6px)}
.price{font-size:1.4rem; font-weight:700; margin:10px 0}

/* Contact form */
.contact{padding:36px 0}
.contact-form{background:white; padding:18px; border-radius:12px; box-shadow:0 6px 18px rgba(2,6,23,0.04)}
.form-row{display:flex; gap:12px; margin-bottom:12px}
.form-row input, .form-row select, textarea{flex:1; padding:10px 12px; border-radius:8px; border:1px solid #e6e9ee}
textarea{resize:vertical}
.note{font-size:0.9rem; color:var(--muted); margin:10px 0}
#contact
{
  h1{
    padding-top: 100px;;
    color: #5D4037;
    font-weight: 700;
  }
}

#message
{
  font-family: Verdana, Geneva, Tahoma, sans-serif
}
/* Footer */
.site-footer{padding:18px 0; margin-top:30px; background:white}
.footer-inner{display:flex; justify-content:space-between; align-items:center; gap:10px}

/* Responsive */


/* //--test-- */

/* CONTACT SECTION */
.contact-wrapper {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
/* 
/* LEFT FORM */
.contact-form {

  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-form h2 {
  
  font-size: 25px;
  margin-top: 0;
  margin-bottom: 20px;
  color: #5D4037;
}

.contact-form form label {
  font-size: 15px;
  text-align: left;
  display: block;
  margin-top: 15px;
  font-weight: 600;
}
.inputs
 {
  font-size: 12px;
}
input, select, textarea 
{
  background-color: #f5f0eb;
  width: 60%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

textarea {
  height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #f5f0eb;
  color: #5D4037;
  margin-top: 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
}
.submit-btn:hover {
  background: #5D4037;
  color: #f5f0eb;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-form,
  .contact-info {
    max-width: 100%;
  }
  
  input, select, textarea {
    width: 100%;
  }
}
/* Main container enhancement */
.contact-info {
  background: #5D4037;
  padding: 30px;
  border-radius: 15px;
  color: #f5f0eb;
  text-align: start;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: fadeSlide 0.8s ease forwards;
}
.contact-info h3{
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffd27f;
}
.contact-info p{
  font-size: 13px;
  margin-bottom: 25px;
  line-height: 1.5;
  color:#f5f0eb;
}

/* Title icon */
.icon-title {
  font-size: 22px;
  margin-right: 8px;
  color: #ffd27f;
}

/* Reusable flex layout for rows */
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
}

/* Hover effect */
.info-block:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* Icon bubble */
.info-block .icon {
  background: rgba(255,255,255,0.15);
  padding: 10px 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.info-block i {
  font-size: 22px;
  color: #ffd27f;
}

/* Headings inside block */
.info-block h4 {
  margin-top: 0px;;
  font-size: 13px;
  margin-bottom: 3px;
  color: #f5f0eb;
  font-weight: 600;
}
.contactDetails{
  margin-top: 0px;;
  font-size: 10px;
  /* margin-bottom: 3px; */
  color: #f5f0eb;
  font-weight: 600;
  margin-bottom: 10px;;
}

/* Description text */
.info-block p {
  margin-top: 0px;;
  font-size: 10px;
  margin-bottom: 0px;
  color: f5f0eb;
}

/* Response box */
.response-box {
  background: rgba(255,255,255,0.20);
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.response-box i {
  font-size: 18px;
  color: #ffd27f;
}

/* Smooth entry animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

 /* testing for table */
 .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 2 columns */
  gap: 20px 30px;                   
}

.form-item {
  display: flex;
  flex-direction: column;
}
.form-item label{
  color:#5D4037;
}

.full-row {
  grid-column: span 2;              /* full width */
}

.form-grid label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  cursor: pointer;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.form-grid textarea {
  height: 120px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;   /* 1 column on mobile */
  }
  .full-row {
    grid-column: span 1;
  }
}
/* Base styling */
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.25s ease;
  outline: none;
}

/* Hover effect */
.form-grid input:hover,
.form-grid select:hover,
.form-grid textarea:hover {
  border-color: #5D4037;
  box-shadow: 0 0 8px rgba(93, 64, 55, 0.25); /* soft coffee-brown glow */
}

/* Focus (selected) effect */
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #5D4037;
  box-shadow: 0 0 10px rgba(93, 64, 55, 0.35); /* stronger glow */
  background: rgba(93, 64, 55, 0.05);         /* slightly tinted background */
}

/* Submit button hover (matching your theme) */
.submit-btn:hover {
  background: #5D4037;
  box-shadow: 0 4px 14px rgba(93, 64, 55, 0.4);
}


/* Testing pop up msg */
/* Overlay */
/* ===== POPUP OVERLAY ===== */
.dt-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 25, 20, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
  z-index: 999999;
}
.popup-animate {
  animation: popupScale 0.35s ease;
}

/* ===== POPUP BOX ===== */
.dt-popup-box {
  background: #F5E9DD; 
  padding: 35px 40px;
  border-radius: 20px;
  width: 350px;
  max-width: 95%;
  text-align: center;
  position: relative;
  border: 3px solid #5A3E2B;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}


.dt-popup-box.success { border-color: #4CAF50; }
.dt-popup-box.error { border-color: #D32F2F; }

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

/* ===== CLOSE BUTTON ===== */
.dt-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 30px;
  color: #5A3E2B;
  cursor: pointer;
  font-weight: bold;
}

.dt-close-btn:hover {
  color: #2e1c12;
}

/* ===== ICON ANIMATIONS ===== */
.dt-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 10px auto 15px;
}

.dt-circle {
  stroke: #5A3E2B;
  stroke-width: 4;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: dash 1s ease forwards;
}

.dt-tick {
  stroke: #4CAF50;
  stroke-width: 4;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: dash 0.8s 0.3s ease forwards;
}

.dt-cross {
  stroke: #D32F2F;
  stroke-width: 4;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: dash 0.8s 0.3s ease forwards;
}

@keyframes dash {
  to { stroke-dashoffset: 0; }
}

/* Popup Text */
.dt-popup-box h2 {
  color: #5A3E2B;
  margin-bottom: 10px;
}

.dt-popup-box p {
  color: #5A3E2B;
  font-size: 15px;
}


/* footer */
/* FOOTER MAIN */
.dt-footer {
  background: #5D4037; /* Rich Brown */
  color: #FFF5E1; /* Cream */
  padding: 60px 0 20px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

/* Footer Logo */
.footer-logo {
  font-size: 28px;
  color: #FFF5E1;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Description */
.footer-desc {
  font-size: 14px;
  color: #fbe8cb;
  margin-bottom: 20px;
}

/* Social Icons */
.social-icons i {
  font-size: 20px;
  margin-right: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons
{
  color: #FFF5E1;
}
.social-icons i:hover {
  color: #f58f00; /* orange accent */
}

/* Columns */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #FFF5E1;
}

.footer-col ul {
  padding: 0;
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #fbe8cb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li a {
  color: #fbe8cb;
  transition: 0.3s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #f58f00;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

.footer-bottom p {
  font-size: 14px;
  color: #fbe8cb;
}

.policy-links a {
  font-size: 14px;
  color: #fbe8cb;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.policy-links a:hover {
  color: #f58f00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
/* --- MOBILE PILL SCROLL FIX --- */
@media (max-width: 600px) {

  /* Only wrapper scrolls */
  .category-wrapper {
      overflow-x: auto !important;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 5px;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
  }

  .category-wrapper::-webkit-scrollbar {
      display: none;
  }

  /* Inner container MUST NOT shrink or wrap */
  .category-container {
      display: flex !important;
      flex-wrap: nowrap !important;
      gap: 12px;
  }

  /* Pills should remain inline */
  .pill {
      flex: 0 0 auto !important;
      white-space: nowrap !important;
  }
}

/* --- FORCE MOBILE PRICING CAROUSEL --- */
@media (max-width: 600px) {
  .cards-container {
      overflow-x: auto !important;
      white-space: nowrap;
      display: flex !important;
      flex-wrap: nowrap !important;
      gap: 16px;
      scroll-snap-type: x mandatory;
  }

  .card {
      min-width: 260px !important;
      max-width: 260px !important;
      scroll-snap-align: center;
      flex: 0 0 auto;
  }
}


.fade-out {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.25s ease;
}

/*Service section*/


/* ===============================
   SERVICES SECTION (SCOPED)
================================ */

.services-section * {
  box-sizing: border-box;
}

/* SECTION BASE */
.services-section {
  padding-block: min(20vh, 3.5rem);
  width: min(70rem, 90%);
  margin-inline: auto;
  color: #111;
}

/* HEADING */
.services-section h2 {
  padding-top: 5%;;
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #5D4037;
  font-weight: 700;
}

/* HEADING LARGE */
@media screen and (min-width: 53rem) {
  /* .services-section h2 {
    font-size: 3.2rem;
  } */
}

/* PARAGRAPH */
.services-section p {
  font-size: 0.9rem;
  color: #696969;
  margin-top: 0.8em;
  margin-left: 0.3em;
}

/* LINKS (DO NOT RESET BUTTON STYLES) */
.services-section a {
  text-decoration: none;
}

/* GRID CONTAINER */
.services-section .container {
  margin-top: 4em;
  display: grid;
  gap: 2rem;
}

/* 2 COLUMNS */
@media screen and (min-width: 40rem) {
  .services-section .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CARD */
.services-section .card {
  padding: 0.625rem;
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  cursor: pointer;
}

@media screen and (min-width: 53rem) {
  .services-section .card {
    border-radius: 2rem;
  }
}

/* CARD INNER */
.services-section .card-inner {
  position: relative;
  height: 12rem;
  background: var(--clr);
}

/* BOX */
.services-section .box {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 1.6rem;
  overflow: hidden;
  position: relative;
}

/* IMAGE */
.services-section .imgBox {
  position: absolute;
  inset: 0;
}

.services-section .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

@media screen and (min-width: 53rem) {
  .services-section .imgBox img {
    border-radius: 1.6rem;
  }
}

/* ICON BAR */
.services-section .icon {
  position: absolute;
  bottom: -0.375rem;
  right: 0;
  width: 100%;
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  pointer-events: none;
}

@media screen and (min-width: 53rem) {
  .services-section .icon {
    width: 18rem;
    border-top-left-radius: 1rem;
    right: -0.375rem;
    font-size: smaller;
  }

  .services-section .icon::before,
  .services-section .icon::after {
    content: "";
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
  }

  .services-section .icon::before {
    bottom: 0.375rem;
    left: -1.25rem;
    border-bottom-right-radius: 1rem;
  }

  .services-section .icon::after {
    top: -1.25rem;
    right: 0.375rem;
    border-bottom-right-radius: 1.25rem;
  }
}

/* ICON TITLE */
.services-section .icon h3 {
  margin-left: 0.3em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #5a5a5a;
  font-weight: 400;
  opacity: 0.7;
}

@media screen and (min-width: 53rem) {
  .services-section .icon h3 {
    margin-left: 1em;
  }
}

/* CHECKBOX */
.services-section .icon input {
  position: absolute;
  opacity: 0;
}

/* CHECKMARK */
.services-section .checkmark {
  position: absolute;
  top: 0.938rem;
  right: 1.25rem;
  height: 1.063rem;
  width: 1.063rem;
  border: 0.063rem solid #c8c8c8;
  border-radius: 0.438rem;
}

.services-section .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 0.375rem;
  top: 0.188rem;
  width: 0.188rem;
  height: 0.438rem;
  border: solid white;
  border-width: 0 0.125rem 0.125rem 0;
  transform: rotate(45deg);
}

.services-section .icon :hover {
  background-color: #111;
  opacity: 1.0;
  display: block;
   color: #111;
}


/* ACTIVE CARD */
.services-section .card:hover h3 {
  color: #111;
}

.services-section .card:hover  {
  border-color: #111;
}


/* testing for flip in Y-axis */
/* ===============================
   FLIP EFFECT
================================ */

.services-section .box {
  perspective: 1000px;
}

.services-section .box > * {
  backface-visibility: hidden;
  transition: transform 0.6s ease;
}

/* FRONT IMAGE */
.services-section .imgBox {
  transform: rotateY(0deg);
}

/* BACK SIDE */
.services-section .card-back {
  position: absolute;
  inset: 0;
  background: #fff;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transform: rotateY(180deg);
}

.services-section .card-back h4 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  margin-top: -30px;;
  color: #5D4037;
}

.services-section .card-back p {
  font-size: 0.75rem;
  margin-bottom: 1rem;
  color: #555;
}

.services-section .learn-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: #5D4037;
}

/* FLIPPED STATE */
.services-section .card.flipped .imgBox {
  transform: rotateY(180deg);
}

.services-section .card.flipped .card-back {
  transform: rotateY(0deg);
}

/* form validation design */
.error-text {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.input-error {
  border: 1.5px solid #d32f2f !important;
}
