:root {
  --color-taupe: #483C32;          /* Rich, warm base color */
  --color-gold-sand: #CBAF87;      /* Elegant accent */
  --color-white-smoke: #F5F5F5;    /* Clean, soft background */
  --color-dark-taupe: #3B322A;     /* Deeper taupe for depth */
  --color-gold-hover: #B7986C;     /* Hover variation of gold */
  --color-1:#e64b03;/*red*/
  --color-2:#2ba58b; /* Teal */
  --color-3:#4cb748; /* Green */
  --color-4:orange; /* Orange */
  --color-5:#0e0a09; /* Dark (likely the background) */
  --darkoverlay: rgba(0, 0, 0, 0.336);
}




/* HTML: <div class="loader"></div> */
/* Anchor link style */
.loader-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: #d9c6b0;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}

/* Loader overlay */
p{
  font-family: "Poppins", sans-serif!important;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

path {
  fill-opacity: 0;                /* Make fill transparent initially */
  stroke: currentColor;           /* Can be any color or match the fill */
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: 
    draw 2s ease forwards,
    fillin 2s ease 2s forwards,
    pulse-loader 1.5s ease-in-out 4s infinite; /* pulse starts after draw + fillin */ 
}

/* Keyframes to animate stroke drawing */
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Keyframes to animate fill appearance */
@keyframes fillin {
  to {
    fill-opacity: 1;
  }
}

/* Optional pulse effect (you can modify as needed) */
@keyframes pulse-loader {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05 );
    opacity: 0.6;
  }
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .svg-logo {
    max-width: 120px;
  }
}



.logo-loader {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: pulse-loader 1.5s ease-in-out infinite;
  opacity: 0.8;
}

.loader-svg {
  width: 800px;
  height: 603px;
}

/* Smaller size for mobiles */
@media (max-width: 600px) {
  .loader-svg {
    max-width: 380px; /* reduce for mobile */
  }
}



html {
  scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: 100px; /* equal to your fixed header height */
}
h1,h2,h4 ,h3, h5, h6 {
  /* font-family: 'Playfair Display', serif; */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

p {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.hero-section {
    background-color: #000;
    height: 100vh;
}

.floating-btn-wrapper {
  position: relative;
}

.floating-btn-expand {
  border-radius: 50px;
  padding: 0.5rem 1.8rem;
  font-size: 0.9rem;
  display: inline-flex; /* Keeps it inline while flex */
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  line-height: 1;
  text-decoration: none;
}

.floating-btn-expand i {
  display: flex;
  align-items: center;
  justify-content: center;
}


.heading
{
  font-weight: 900!important;
  text-transform: uppercase;
}


.floating-btn-expand:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.label-text {
  font-size: 0.875rem;
}

/* Make sure other floating buttons stay circular */
.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  bottom: 80px!Important;
  position: fixed;
  background-color: var(--color-2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.26);
  right: 20px;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.form-submit-btn
{
   --btn-bg-start: var(--color-2); /* red */
  --btn-bg-end: white;   /* teal */
  --btn-shadow: rgba(0, 0, 0, 0.4); /* soft glow from red */

  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--btn-bg-start), white);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--btn-shadow);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}
/* Optional media query for smaller screens */
@media (max-width: 768px) {
  .floating-btn {
    width: 44px;
    height: 44px;
  }
}

.btn
{
    margin-top: 1rem;
    color: rgb(255, 255, 255);
    background-color: var(--color-1);
    border: none;
    transition: all 0.1s ease-in-out;
}
.btn-vertical,.btn-vertical2
{
  background-color: rgba(0, 0, 0, 0.278);
}
.btn-vertical:hover,.btn-vertical2:hover
{
  transform: scale(1.03);
}
.btn-purple {
    background-color: var(--color-2);
    color: white;
    transition: all 0.1s ease-in-out;
}

.btn-purple:hover {
    background-color:var(--color-2);
    color: rgb(0, 0, 0);
    transform: scale(1.03);
}
.svg:hover{
  fill: gold;
}

/* CSS for the navbars */
#navbar
{
  background-color: rgba(19, 19, 19, 0);
}

.navbar-white {
  background-color: #fffffff9 !important;
  transition: background-color 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-white .nav-link,
.navbar-white {
  color: #000 !important;
  font-size: 1.2rem;
}
.navbar-white .nav-item::after
{
  background-color: #000000;
}
.nav-link2{
  color: #ffffff !important;
  font-size: 1.2rem;
  text-decoration: none;
}
.nav-item2
{
  padding: 20px;
}
.nav-item {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.navbar-white .nav-item:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #000; /* Adjust to your theme color */
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.nav-item:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #ffffff; /* Adjust to your theme color */
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

/* Brand Wrapper */
.navbar-brand-block {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  line-height: 1;
}

/* Main Brand (HOME DEN) */
.brand-main {
  font-size: 1.94rem;
  font-weight: 600;
  color: var(--color-2)!important;
  text-decoration: none;
  margin-bottom: 0;
  line-height: 1.1;
  display: flex;
  width: 100px;
}

/* Highlighted DEN text */
.brand-highlight {
  font-weight: 600;
  font-size: 1.94rem;
  background: linear-gradient(to right, #e3c882, #cfa64e, #a8732a, #7a4e14);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Superscript ® symbol */
.brand-sup {
  font-size: 0.9rem;
  vertical-align: super;
  color: var(--color-2);
}

/* Subtext (INTERIOR FIRM) */
.brand-sub {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.9px;
  margin-left: 15px;
  line-height: 1.1;
  text-decoration: none;
  background: linear-gradient(to right, #e3c882, #cfa64e, #a8732a, #7a4e14);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: flex;
}

/* Highlighted "FIRM" */
.firm-highlight {
  color: var(--color-2);
}



.navbar-dark-icon .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas Base Styles */
.offcanvas {
  background-color: #1e1e1e; /* dark background for modern look */
  color: white;
}

.offcanvas .offcanvas-title {
  font-weight: 700;
  font-size: 1.25rem;
}

.offcanvas .btn-close {
  filter: invert(1);
}

/* Nav Links */
.offcanvas-body .nav-link {
  color: #ffffff;
  text-align: center;
  padding: 12px 0;
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2)!important;
}

/* Active & Hover States */
.offcanvas-body .nav-link:hover,
.offcanvas-body .dropdown-item:hover {
  background-color: #2ba58b;
  color: #ffffff;
  border-radius: 4px;
}

/* Dropdown Menu */
.offcanvas-body .dropdown-menu {
  background-color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 6px;
  text-align: center;
}

.offcanvas-body .dropdown-item {
  color: #000;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.offcanvas-body .dropdown-item:hover {
  background-color: #303030;
  backdrop-filter: blur(5px);
  color: #fff;
}


.dropdown-menu {
  transform-origin: top;
  animation: fadeSlideDown 0.3s ease;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.btn-close-white {
  filter: invert(1);
}


/* Elegant Modal Background & Padding */
.elegant-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  animation: fadeInModal 0.4s ease;
}

/* Responsive modal width */
@media (min-width: 576px) {
  .responsive-modal {
    max-width: 500px;
  }
}

/* Form Control Enhancements */
.elegant-modal .form-control {
  border-radius: 12px;
  border: 1px solid #ced4da;
  padding: 0 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.elegant-modal .form-control:focus {
  border-color: #2ba58b;
  box-shadow: 0 0 0 0.2rem rgba(43, 165, 139, 0.25);
}

/* Submit Button Styling */
.consultant-btn {
  background-color: #2ba58b;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.consultant-btn:hover {
  background-color: #239077;
  transform: translateY(-2px);
}

/* Modal Animation */
@keyframes fadeInModal {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Modal Title */
#designConsultantModalLabel {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2ba58b;
}
.modal.show {
  z-index: 1055;
}

.elegant-modal .modal-body .mb-3 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
.elegant-modal .modal-body form .mt-4 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.5s;
}

.elegant-modal .modal-body .mb-3:nth-child(1) { animation-delay: 0.1s; }
.elegant-modal .modal-body .mb-3:nth-child(2) { animation-delay: 0.2s; }
.elegant-modal .modal-body .mb-3:nth-child(3) { animation-delay: 0.3s; }
.elegant-modal .modal-body .mb-3:nth-child(4) { animation-delay: 0.4s; }
.elegant-modal .modal-body .mb-3:nth-child(5) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Animate Submit Button */
.elegant-modal .modal-body .mt-4 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.5s;
}

.nav-item2
{
  color: white!important;
}

/* Dropdown parent */
.nav-item.dropdown {
    position: relative;
}

/* Dropdown menu */
.nav-item .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff85;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: none;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

/* Show on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

/* Dropdown items */
.dropdown-item {
    color: #1a1a1a;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

/* Hover effect */
.dropdown-item:hover {
    background-color: #302f2f;
    color: #fff;
    transform: scale(1.02);
}

/* Dropdown arrow */



/* Initial state */
.dropdown-icon {
  display: inline-block;
  transition: transform 0.5s ease;
}

/* When dropdown is shown */
.rotate-360 {
  transform: rotate(360deg);
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* DILIFE Slider Elegant Styles */
.contact-container {
    position: relative;
    overflow: hidden;
    height: 100vh;
    z-index: 10;
    display: block;
  }
  .contact-bg
  {
      height: 100vh;
  }
  .sliders-box {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 11;
  }
 .slider-sections {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;

  /* Custom transition with cubic bezier easing */
  transition: opacity .3s cubic-bezier(0.645, 0.045, 0.355, 1), 
              transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);

  transform: translateY(60px); /* Slide up */
}

.slider-sections.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
}

  .scroller-content-bg {
      width: 100%;
      height: 100%;
    background-color: var(--darkoverlay);
    padding: 2rem;
    border-radius: 10px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
.slider-img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
  .scroller-content-2 h1 {
    font-size: 3.1rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-in-out;
  }
  .scroller-content-2 h4{
    font-size: 3rem;
    
  }
  /* .scroller-content-2 h1::first-letter {
    font-size: 6rem;
    font-weight: 700;
    
  } */
.highlight-text {
  display: inline-block;
  position: relative;
  margin: 10px 0;
}

.highlight-text h3 {
  background: var(--color-1); /* main color */
  color: #000000;
  font-weight: 700;
  font-size: 20px;
  padding: 10px 25px;
  display: inline-block;
  transform: skew(-15deg);
  margin: 0;
  position: relative;
  z-index: 2;
  box-shadow: 3px 3px 8px rgba(0,0,0,0.25); /* depth */
}




/* --- ENHANCED BUTTON --- */
.highlight-btn {
  display: inline-block;
  height: 45px;
  width: 200px;
  position: relative;
  background: var(--color-1);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 45px;
  text-align: center;
  text-decoration: none;
  transform: skew(-15deg);
  transition: all 0.3s ease-in-out;
  z-index: 2;
  margin-bottom: 10px;
  box-shadow: 3px 3px 8px rgba(0,0,0,0.25);
  overflow: hidden;
}

.highlight-btn span {
  display: inline-block;
  transform: skew(15deg); /* make text straight */
}

.highlight-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: var(--btn-text);
  transition: all 0.4s ease;
  z-index: -1;
}

.highlight-btn:hover {
  color: var(--color-1);
}

.highlight-btn:hover::before {
  left: 0; /* sliding highlight effect */
}




.scroller-content-2 {
  position: absolute;
  display: flex;
  flex-direction: column;
  bottom: 30px;
  left: 10%;
  /* background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.4) 40%,
    rgba(255, 255, 255, 0.2) 70%,
    rgba(255, 255, 255, 0) 100%
  ); */

  color: #fff;
  text-align: left;
  max-width: 90%;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
  z-index: 2;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
        
.scroller-content-2 h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: 600;
  color:rgb(255, 255, 255);
}

.scroller-content-2 p {
  font-size: 1rem;
  margin: 0;
}

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 30px;
  left: 50%;         /* center horizontally */
  transform: translateX(-50%); /* adjust center */
  z-index: 20;
}


.pagination-dots .dot {
  width: 30px;
  height: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.3); /* subtle base */
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  position: relative;
  overflow: hidden;
}

.pagination-dots .dot::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff9a00, #ff6a00); /* gradient effect */
  border-radius: 12px;
  transition: width 0.4s ease-in-out;
}

.pagination-dots .dot.active::before {
  width: 100%; /* fill bar when active */
}

.pagination-dots .dot:hover {
  background: rgba(255, 255, 255, 0.5);
}


/* Optional: adjust dot size on smaller screens */
@media (max-width: 768px) {
  .pagination-dots .dot {
    width: 25px;
    height: 5px;
  }
  
}

@media (max-width: 480px) {
  .pagination-dots .dot {
    width: 20px;
    height: 4px;
  }
  .pagination-dots
  {
    left: 40%;         /* center horizontally */
    transform: translateX(-40%); /* adjust center */
  }
}

/* Professional Section Styles */
#professional-sec {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 30px;
}



.col-md-auto {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  margin: 10px;
  transition: background-color 0.3s ease;
}

.professional-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.professional-list li {
  flex: 0 0 auto;
  margin: 10px;
  height: 150px;
  width: 150px;
  border-radius: 50%;
}

.stat-card {
  background: white;
  padding: 30px 15px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  width: 100%;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.text-liner
{
  background: linear-gradient(to right, #e3c882, #cfa64e, #a8732a, #7a4e14);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.professional-list li.active .stat-card {
  background-color: var(--color-2);
  color: white;
  transform: scale(1.1);
}

.professional-list li.active .stat-card h3,
.professional-list li.active .stat-card p {
  color: white;
}


.stat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-1); /* Purple shade */
  margin-bottom: 10px;
  text-transform: uppercase;
}

.stat-card p {
  font-size: 1rem;
  color: #666;
}



.professional-list li.active .stat-card h3,
.professional-list li.active .stat-card p {
  color: white;
}



.col-md-4
{
  height: 400px;
  width: 400px;
}
.package-card {
  position: relative;
  height: 400px;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Optional: subtle lift */
.package-card:hover {
  transform: translateY(-5px);
}

.package-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(0deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.package-card:hover::before {
  animation: shineEffect 0.9s forwards;
  opacity: 1;
}

@keyframes shineEffect {
  0% {
    transform: translate(-100%, -100%) rotate(25deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(100%, 100%) rotate(25deg);
    opacity: 0;
  }
}


.package-card img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}

.package-overlay {
  position: absolute;
  bottom: 110px;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.package-overlay h4 {
  margin: 0;
  font-size: 1.5rem!important;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif!important;
  font-weight: 800;
}

.package-footer {
  padding: 20px;
}

.price {
  margin: 10px 0;
  font-size: 1.1rem;
  color: var(--color-1);
}

.strike {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.discounted {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-1);
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
}

.section-header .line {
  flex: 1;
  height: 1px;
  background-color: #00000060;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-card a ,.package-card h4
{
  text-decoration: none;
  color: #000;
}
.package-offers-div
{
  width: 95vw;
  height: 100vh;
  object-fit: cover;
}

.package-offers-div .package-card
{
  position: relative;
  height:100vh;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.package-offers-div .package-overlay {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.package-offers-div .package-card img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}


/* test   */


.consultant-btn {
  position: relative;
  margin-top: 5rem;
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--color-1);
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  
}

.consultant-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: white;
}

.consultant-btn:active {
  transform: translateY(1px);
}

.btn-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.consultant-btn:hover .btn-hover-effect {
  transform: translateX(0);
}

.consultant-btn span {
  position: relative;
  z-index: 2;
}



#project-steps .section-title {
  font-size: 32px;
  font-weight: bold;
}

#project-steps .highlight {
  color: var(--color-1);
}

.steps-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.step {
  flex: 0 0 auto;
  max-width: 160px;
  min-width: 140px;
  text-align: center;
  scroll-snap-align: start;
}

.circle {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  background-color: #e4e4e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.circle img {
  width: 80px;
  height: 80px;
}

.arrow {
  font-size: 30px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -90px;
  flex-shrink: 0;
}

p {
  font-size: 14px;
  line-height: 1.4;
}

/* Highlighted Step */

.step.active .circle {
  background-color: var(--color-2); /* Violet like the example */
  border-color: var(--color-4);
  transform: translateY(10px);
}

.step.active .circle img {
  filter: brightness(0) invert(1); /* Make icon white on colored background */
}


.active-step .circle img {
  
  filter: brightness(0) invert(1); /* white icon effect */
}


/* About Section Styles */
#about-section {
  background-color: #fff;
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}

.highlight-bar {
  width: 80px;
  height: 4px;
  background-color: var(--color-1);
  margin: 20px 0;
}

.about-content {
  color: #555;
  line-height: 1.8;
}
.about-content p
{
  font-size: 16px!important;
}
.about-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  padding: 20px;
  background-color: #f8f9fa;
  border-left: 4px solid var(--color-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: autoShowLeft 0.6s ease-out both;
  animation-timeline: view(80% 10%);
}
@keyframes autoShowLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.auto-show-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.auto-show-left.animate {
  animation: autoShowLeft 0.6s ease-out both;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-5);
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.elegant-modal {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 25px 20px;
  background: #fff;
  transition: all 0.3s ease-in-out;
  max-width: 100%;
}

.elegant-modal .modal-header {
  border-bottom: 1px solid #eee;
}


.consultant-btn 
{
  padding: 10px;
  transition: all 1s ease-in-out;
}

.consultant-btn:hover {
  background-color: #dac553;
  color: #fff;
  transform: scale(1.03);
}

.full-section {
  min-height: 50vh;
}

.text-column {
  background-color: #f8f9fa;
  min-height: 50vh;
  color: #333;
}

.text-column h2,
.text-column p {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  will-change: opacity, transform;
}

.text-column.animate h2,
.text-column.animate p {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.accordion-button::after {
  display: none; /* Hide default Bootstrap arrow */
}
.toggle-icon {
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed) .toggle-icon {
  transform: rotate(45deg); /* Turns + into x */
}

.accordion-button:not(.collapsed) {
  background-color: #2ba58b !important;
  color: white !important;
  box-shadow: none;
}

/* Optional: Change text/icon hover color */
.accordion-button:hover {
  background-color: #2ba58b;
  color: white;
}

.image-column .bg-cover {
  min-height: 50vh;
  background-size: cover;
  background-position: center;
}

.right-image
{
  height: 350px;
  display: flex;
  justify-content: end;
}
.project-name h1
{
  background-color: var(--color-2);
}
/* slider */

/* Testimonials Section Styles */
#testimonials {
  width: 100%!important;
}

  .testimonial-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  .testimonial-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: max-content;
  }
  
  .testimonial-card {
    background-color: #ffffff00;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    padding: 1.2rem;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .testimonial-card img {
    width: 220px;
    height: 220px;
    border: 4px solid #fff; /* white border */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }
  /* Pagination Dots */
  #testimonialDots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #aaa;
    border: none;
    transition: background 0.3s;
  }
  
  #testimonialDots button.active {
    background-color: #333;
  }
  

  
  .testimonial-card:hover {
    transform: translateY(-5px);
  }
  

   .quote-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    right: 0;
    bottom: 0;
    transform: translate(30%, 30%);
  }
  
.testimonial-item
{
  width: 20%;
  display: inline-block;
  margin-right: 20px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.divider {
  width: 20px;
  height: 4px;
  background-color: var(--color-1);
  margin: -10px!important;
  transform-origin: left;
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.divider.animate {
  width: 200px;
  opacity: 1;
  transform: scaleX(1);
}

.line.animate
{
  width: 200px;
  opacity: 1;
  transform: scaleX(1);
}
.client-name {
  font-size: 1.1rem;
  font-weight: 600;
}


/* youtube */
.youtube-fullscreen {
  position: relative;
  top: 0;
  left: 0;
  width: 99vw;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
  background: #000;
}

.video-fullscreen-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-fullscreen-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.no-videos-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5rem;
  text-align: center;
}


.btn-1{
  text-decoration: none;
  padding: 8px 15px;
  background-color: var(--color-4);
  color: white;
  border-radius: 1px;
  transition: background-color 0.3s ease;
  width: fit-content;
  margin-bottom: 20px;
}

.s2 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  font-weight: 800;
  color: #e64b03;
}

.counter-section {
  background-color: var(--color-2);
  text-align: center;
  padding: 60px 20px;
  color: white;
  font-family: 'Poppins', sans-serif;
 

}
.counter-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 50px;

}

.counter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 10px;
 
}

.counter-box {
  flex: 1 1 150px;
  min-width: 120px;
}

.counter {
  font-size: 40px;
  font-weight: bold;
}

.counter-box p {
  font-size: 14px;
  margin-top: 10px;
}
/* blog */

#latest-blogs .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

#latest-blogs .card-text {
  font-size: 0.9rem;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
}
.card{
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.034);
  margin-bottom: 2rem;
}

.blog-banner-title::after
{
  content: '';
  width: 50%;
  height: 2px;
  background: #ffffff;
  position: absolute;
  display: block;
}

/* blog  */


.blog-banners {
  background: url('/static/images/pexels-pixabay-271624.jpg') no-repeat center;
  background-size: cover;
  color: white;
  padding: 80px 20px;
  height: 75vh;
}
.blog-banners-container
{
  display: flex;
  position: relative;
  top: 75%;
  flex-direction: column;
  justify-content: left;
  align-items:left;
}
.blog-banner-title {
  font-size: 3rem;
  font-weight: bold;
}

.blog-banner-subtitle {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  
}

.blog-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 10px; 
  width: 100%;
}

.blog-layout {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}


/* Base style */
.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 180px; /* show only approx 4 bullets fully */
  margin: 1rem auto 0;
  position: relative;
}

.swiper-pagination-bullet {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin: 0 6px;
  background-color: #ddd;
  opacity: 0.6;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  transform: scale(0.8);
}

.swiper-pagination-bullet-active {
  background-color: var(--color-1);
  transform: scale(1.5);
  opacity: 1;
}

/* Optional: scale on hover */
.swiper-pagination-bullet:hover {
  transform: scale(1.2);
  background-color: #999;
}




.blog-swiper .swiper-slide {
  transition: transform 0.4s ease;
}

.blog-swiper .swiper-slide-active .blog-slider-card {
  transform: scale(1.1) translateY(10px);
  z-index: 2;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.15);
}

.blog-slider-card
{
  padding: auto 1rem;
  width: 350px;
  margin-top: 10px;
}
.blog-slider-card:hover
{
  cursor: grab;
}


@media (min-width: 1024px) {
  .blog-layout {
      flex-direction: row;
  }

  .blog-content {
      width: 75%;
  }

  .recent-blogs {
      width: 25%;
  }
}
.blog-card:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease;
  box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.183);
  
}



.blog-card .card-title {
  font-weight: 600;
}

.read-more-btn {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #343a40;
  color: #fff;
}
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: autoShow linear both;
  animation-timeline: view(80% 20%);
  border: 2px solid rgba(0, 0, 0, 0.692)!important;
}

.blog-card img {
  object-fit: cover;
  height: 100%;
}


.subcategory-card {
  padding: 1rem;
  border-radius: 12px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: autoShow 0.6s ease-out both;
  animation-timeline: view(80% 5%);
}



@media (hover: hover) {
  .subcategory-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 576px) {
  .subcategory-card {
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  .subcategory-card {
    padding: 1rem;
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .subcategory-card {
    padding: 1.25rem;
    font-size: 1.05rem;
  }
}

@media (max-width: 767px) {
  .blog-card img {
    height: 200px; /* Limit image height on mobile */
  }
  .blog-slider-card
  {
    width: 300px;
  }
 
}




.blog-content {
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.blog-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.blog-title {
  font-size: 2.25rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.blog-date {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.blog-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
}

/* Sidebar */
.recent-blogs {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.recent-blogs-title {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 1rem;
}
.recent-blogs-title::after{
  content: '';
  height: 1px;
  width: 150px;
  background: black;
  position: absolute;
  margin-top: 2rem;
  margin-left: -140px;
}
.recent-blogs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-blog-link {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.recent-blog-link:hover {
  color: gold;
  transform: translateX(15px);
}
.read-more-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-right: 1.2rem;
  transition: all 0.3s ease;
}

.read-more-link i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: #ffd700; /* gold on hover */
  padding-right: 1.5rem;
}

.read-more-link:hover i {
  opacity: 1;
  right: 0.2rem;
}


/*LOCATION MAP*/

.experience-section {
  text-align: center;
  padding: 40px 20px;
}

.experience-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.experience-card {
  width: 100%;
  margin-top: 1rem;
  max-width: 750px;
  background: #fff; 
  box-shadow: 0 4px 10px rgba(168, 5, 5, 0.1);
  padding: 25px;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s ease;
}

.experience-card h3 {
  font-size: 28px;
  color: #e64b03;
  margin-bottom: 15px;
  font-weight:700 ;
}

.experience-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 5px 0;
}
.experience-card:hover{
  transform: translateY(10px) scale(1.02);
}

/* BRAND LOGO*/
 .partners-section {
  /* background-color: var(--color-1); */
 background: linear-gradient(to bottom, #ffffff, #2ba58b);


  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.partners-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.partners-section p {
  color: #000000;
  margin-bottom: 40px;
  font-size: 16px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.partner-logo {
  background-color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 160px;
}

.partner-logo img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}

.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 300px;
  min-width: 280px;
  justify-content: center;
  align-items: center;
}
.footer-section.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}
.footer-section.about img {
  max-width: 160px;
  margin-bottom: 10px;
  justify-content: center;
  align-items: center;
  display: block;
}

.footer-section.about h1 {
  font-size: 24px;
  font-weight: 700;
   justify-content: center;
  align-items: center;
  display: block;
  margin: 15px 0 1px 15px;
}

.footer-section.about h5 {
  font-size: 12px;
  justify-content: center;
  align-items: center;
  display: block;
  margin-bottom: 20px!important;

}

.footer-section.about p {
  color: #aaa;
  font-size: 14px;
  text-align: justify;
  line-height: 1.6;
}

.footer-section.links h4 {
  margin-top: 15px;
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.caluclate-div
{
  margin-top: 5rem;
}
.footer-section ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

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

.footer-section ul li a:hover {
  color: #afafaf;
}


.nav-pills .nav-link {
  background-color: #fbeedb;
  color: #000;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

.nav-pills .nav-link.active {
  background-color: #cba351;
  color: #fff;
}

.quote-link {
  display: inline-block;
  margin-top: 10px;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.quote-link:hover {
  text-decoration: underline;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  transition: all 0.4s ease-out;
}

.links ul li {
  margin-bottom: 8px;
  width: fit-content;
  transition: all 0.4s ease;
  position: relative;
  padding-bottom: 3px;
  cursor: pointer;
}

.links ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-4, orange);
  transition: width 0.3s ease;
}

.links ul li:hover {
  transform: translateX(-6px) scale(1.03);
  color: var(--color-4, orange);
}

.links ul li:hover::after {
  width: 100%;
}


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

.social-icons a {
  color: #ccc;
  font-size: 20px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Optional: Brand-specific hover colors */
.social-icons a[href*="instagram"]:hover { color: #E4405F; }
.social-icons a[href*="facebook"]:hover { color: #1877F2; }
.social-icons a[href*="wa.me"]:hover     { color: #25D366; }
.social-icons a[href*="youtube"]:hover   { color: #FF0000; }
.social-icons a[href*="linkedin"]:hover  { color: #0077B5; }


.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #333;
  margin-top: 20px;
}


 
    .about-hero-section {
      background: url('./modern-living-room-interior-design.jpg') no-repeat center center/cover;
      height: 600px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      text-align: center;
      width: 100%;
    }

    .about-hero-section h1 {
      color: white;
      font-size: 70px;
      font-weight: bold;
      /* backdrop-filter: brightness(80%); */
    }

    .about-content {
      padding: 50px 15%;
      text-align: center;
      justify-content: center;
    }

    .about-content h2 {
      font-size:40px;
      margin-bottom: 20px;
      color: #537D75;
    }

    .about-content p {
      font-size: 15.6px;
      line-height: 1.9;
      text-align: justify;
   
    }



    .furniture-list {
    font-family: 'Arial', sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
  }

  .furniture-list h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 28px;
  }

  .room-section{
    margin-bottom: 25px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    /* animation: autoShow linear both;
    animation-timeline: view(80% 20%); */
  }

@keyframes autoShow {
  from {
    opacity: 0;
    transform: translateY(200px) scale(0.6);
  }
  to {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

@keyframes autoHide {
  from {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(200px) scale(0.6);
  }
}

.auto-show-up {
  opacity: 0;
  transform: translateY(200px) scale(0.6);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.auto-show-up.show {
  animation: autoShow 0.6s ease-out both;
}

.auto-show-up.hide {
  animation: autoHide 0.6s ease-out both;
}

.auto-show-up.animate {
  animation: autoShow 0.6s ease-out both;
}
.auto-show-left.animate {
  animation: autoShow 0.6s ease-out both;
}

@keyframes autoBlur{
  0%{
    filter:blur(40px);
  }
  45%,55%
  {
    filter:blur(0px);
  }
  100%
  {
    filter: blur(40px);
  }
}




  .room-section h3 {
    color: #e74c3c;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .room-section ul {
    padding-left: 20px;
    margin: 0;
  }

  .room-section li {
    margin-bottom: 8px;
    line-height: 1.5;
  }

  .accessories-list {
    list-style-type: circle;
    padding-left: 25px;
  }

  .notes {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px dashed #3d3a3a;
  }

  .link-div
  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 200px;
    width: 100%;
  }
  .hover-link
  {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
  }

  .transform-link {
  overflow: hidden;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.transform-link::before,
.transform-link::after {
 content: '';
  position: absolute;
  width: 100%;
  left: 0;
}

.transform-link::before {
  background-color: #000000;
  height: 2px;
  bottom: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}
.transform-link::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(200%, 0, 0);
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
  color:#000000;
}

.transform-link:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.transform-link:hover::after {
  transform: translate3d(0, 0, 0);
}

.transform-link span {
  display: inline-block;
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

.transform-link:hover span {
  transform: translate3d(-200%, 0, 0);
}

/* Presentational Styles */


.transform-link{
	text-decoration: none;
	color: #000000;
	font-weight: 700;
	vertical-align: top;
}
input[type="radio"]:hover {
  cursor: pointer;
}

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .furniture-list {
      padding: 15px;
    }

    .furniture-list h2 {
      font-size: 24px;
    }

    .room-section {
      padding: 12px;
    }

    .room-section h3 {
      font-size: 18px;
    }

    .room-section li {
      font-size: 15px;
    }
  }





  
    @media (max-width: 768px) {
      .about-hero-section h1 {
        font-size: 40px;
      }
      .about-hero-section{
        width: 100%;
        height: 300px;
      }

      .about-content {
        padding: 30px 10%;
      }

      .about-content h2 {
        font-size: 26px;
      }

      .about-content p {
        font-size: 16px;
        text-align: justify;
      }
    }

   

    .about-section {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 50px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .about-image {
      flex: 1 1 50%;
      max-width: 600px;
      padding: 10px;
    }

   .about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  object-fit: cover;
  filter: brightness(0.98) contrast(1.05);
}


    .about-text {
      flex: 1 1 50%;
      max-width: 600px;
      padding: 10px 30px;
    }

    .about-text h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #537D75;
      text-align: center;
    }

    .about-text p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 15px;
    }
    strong{
        color: #06463a;
    }



    .card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.01);
    transition: 0.3s ease-in-out;
}

.view-all-btn
{
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--color-1, #537D75);
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.view-all-btn:hover {
  background-color: var(--color-5);
}
    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }

      .about-text {
        padding: 20px 10px;
        text-align: justify;
      }
  }

 

/*video*/

.vdo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 5%;
  gap: 20px;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

/* Left side: Text */
.vdo1 {
  flex: 1 1 55%;
  max-width: 700px;
  padding: 10px 20px;
  text-align: justify;
}

.vdo1 h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #537D75;
  text-align: center;
}

.vdo1 p {
  font-size: 16px!important;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Right side: Video */
.vdo video {
  flex: 1 1 50%;
  max-width: 700px;
  width: 100%;
  height: auto;
  max-height: 100vh;
  display: block;

}


.hero-header {
    background-size: cover;
    background-position: center;
    height: 90vh;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

:root {
  --color-4: #ff6f61; /* Replace with your desired color */
}



/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  color: var(--color-4);
  background-color: rgba(0, 0, 0, 0); /* Optional subtle bg */
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.related-heading .line {
  flex: 1 1 50px;
  height: 1px;
  max-width: 120px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.line {
  width: 40px;
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-heading h4 {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: #333;
}


/* Optional: make them a bit larger and centered vertically */
.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
}


.card-title,
.card-body p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.active-orange {
  background-color: #ff7f00; /* Bright orange */
  color: #fff;
}
.youtube-project-video {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.youtube-project-video:hover {
  transform: translateY(-5px);
}

.ratio {
  border-radius: 12px;
}
.project-category-tabs
{
  margin-top: 2rem;
}
.project-category-tabs .nav-link {
  color: #555;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
  background-color: rgba(255, 166, 0, 0.11);
}

.project-category-tabs .nav-link:hover {
  background-color: var(--color-1); /* Light orange hover */
  color: white; /* Hover text color */
}

.project-category-tabs .nav-link.active {
  background-color:var(--color-1); /* Orange background */
  color: white !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 125, 0, 0.4);
}

.projectVideo-divider {
  width: 80px;
  height: 4px;
  background-color: var(--color-1); /* orange */
  border-radius: 2px;
}

.view-btn {
  position: relative;
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.view-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--color-5);
  transition: width 0.4s ease, left 0.4s ease;
  transform: translateX(0%);
}

.view-btn:hover {
  color: var(--color-5);
}

.view-btn:hover::after {
  width: 100%;
  left: 0%;
  transform: translateX(0);
}





.youtube-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #000;
  border-radius: 12px;
}

.youtube-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.youtube-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  font-size: 0.85rem;
  pointer-events: none;
}

@media (max-width: 576px) {
  .youtube-card {
    margin-top: 3.5rem; /* or use 2rem or 24px as you like */
   
  }

  .youtube-card .ratio {
    height: auto !important;
    width: 95vw;
    min-height: 200px !important;
  }

  .youtube-card iframe {
    min-height: 200px !important;
    display: block !important;
  }

  .row,
  .col-12,
  .youtube-card,
  .ratio {
    overflow: visible !important;
    display: block !important;
  }
}





.video-landscape-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background-color: #00000000;
  overflow: hidden;
  margin: 4rem auto;
  border-radius: 12px;
}

.video-landscape-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* Ensures it fills horizontally with crop */
}


@media (max-width: 768px) {
    .hero-header {
        height: 60vh!important;
    }
}

/* Responsive for tablets and mobile */
@media (max-width: 991px) {
  .vdo {
    flex-direction: column;
    align-items: center;
  }

  .vdo1, .vdo video {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 10px 15px;
  }

  .vdo1 h2 {
    text-align: center;
    font-size: 26px;
  }

  .vdo1 p {
    font-size: 15px;
  }

  .vdo video {
    max-width: 100%;
  }
    .timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 0px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}
}
@media (max-width: 1280px) {
  .vdo {
    flex-direction: column;
    align-items: center;
  }

  .vdo1, .vdo video {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 10px 15px;
  }

  .vdo1 h2 {
    text-align: center;
    font-size: 26px;
  }

  .vdo1 p {
    font-size: 20px;
  }

  .vdo video {
    max-width: 100%;
  }
   .about-content h2 {
        font-size: 30px;
      }

      .about-content p {
        font-size: 20px;
        text-align: justify;
      }
      .about-text {
        padding: 20px 10px;
        text-align: justify;
        font-size: 20px;
      }
}


.estimate-btn-container {
  width: 100%;
  display: flex;
  justify-content: center; /* Change to center or flex-end if needed */
  padding: 20px 0;
}

.estimate-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #537D75;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.estimate-btn:hover {
  background-color: #3e5e57;
}

/* Responsive */
@media (max-width: 1024px) {
  .estimate-btn-container {
    justify-content: center;
  }

  .estimate-btn {
    font-size: 15px;
    padding: 10px 24px;
  }
  
}

.timeline-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff, #2ba58b);
  font-family: 'Poppins', sans-serif;
  color: rgb(0, 0, 0);
  overflow-x: hidden;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #2b2b2b, #2b2b2b, #ffffff, #ffffff);
  animation: pulse-line 3s infinite ease-in-out;
  z-index: 1;
  border-radius: 4px;
}

@keyframes pulse-line {
  0%, 100% {
    box-shadow: 0 0 10px #ffffff, 0 0 20px #000000;
  }
  50% {
    box-shadow: 0 0 20px #ffffff, 0 0 40px #1e3b35;
  }
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 50px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item.left {
  left: 0;
  text-align: right;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item .content {
  padding: 0;
  margin: 0;
  width: fit-content;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  border: none;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}


.timeline-item .content:hover {
  transform: scale(1.03);
}

.timeline-item .content h2 {
  font-size: 2.4rem;
  font-weight: 700!important;
  color: #000000;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #000000, #000000);
 
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}


.timeline-item p {
  font-size: 16px;
  text-align: justify;
  color: #000000;
  line-height: 1.7;
}

/* Particle shimmer on the timeline line */
@keyframes shimmer {
  0% {
    background-position: -100px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

.h22{
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 24px;
}


/* contact page  */

/* Base reset */


/* HEADER SECTION */
.about-header {
  background-image: url('./armchair-green-living-room-with-copy-space.jpg');
  color: white;
  padding: 60px 20px 40px 20px;
  text-align: center;
  height: 550px;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.about-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(7, 162, 182, 0.381), rgba(1, 10, 6, 0.407));
  z-index: -1;
}

.about-header h1 {
  font-size: 3.5rem;
  margin-top: 150px;
  text-transform: uppercase;
}
.about-content p{
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  margin-top:10px ;
  
}

/* MAIN CONTAINER */
.main-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}

.info-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.info-item:hover {
  box-shadow: 8px 8px 8px 8px rgba(0, 0, 0, 0.356);
  transform: translateY(-2px);
}
.info-item i {
  font-size: 1.5rem;
  color: #3e726b;
}

.info-text p {
  margin: 0;
}


.social-icons2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 1rem;
}

.icon-wrapper2 {
  position: relative;
  width: 50px;
  height: 50px;
}

.social-icon2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  color: #fff;
  background: #33333300;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 1;
  text-decoration: none;
  overflow: hidden;
}

.social-icon2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--color-5);
  z-index: 0;
  opacity: 0;
  transform: scale(0.5);
  transition: 0.4s ease-in-out;

}

.social-icon2:hover::before {
  opacity: 1;
  transform: scale(1);
}

.social-icon2 i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.social-icon2:hover i {
  transform: scale(1.2);
  color: rgb(255, 255, 255);
}


/* CONTACT IMAGE */
/* .contact-image {
  flex: 1;
  text-align: center;
  perspective: 1000px;
} */

.image-wrapper {
  transition: transform 0.1s ease;
  will-change: transform;
  border-radius: 50% 50% 0 0;
}


.contact-image {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:-2rem ;
}

.custom-cursor {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.cursor-dot,
.cursor-ring {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-5);
  z-index: 6;
}

.cursor-ring {
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-5);
  z-index: 5;
  transition: transform 1s ease-out;
}

.contact-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 50% 50% 0 0;
  object-fit: cover;
  box-shadow: 8px 8px 8px 8px rgba(0, 0, 0, 0.356);
  display: block;
}

/* FORM + MAP SECTION */
.form-map-section {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 90px;
}




.submit-btn {
  --btn-bg-start: var(--color-1); /* red */
  --btn-bg-end: var(--color-2);   /* teal */
  --btn-shadow: rgba(230, 75, 3, 0.4); /* soft glow from red */

  width: 200px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--btn-bg-start), var(--color-4));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--btn-shadow);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.calculate-btn
{
  width: 200px;
  padding: 12px 20px;
  background-color: var(--color-2);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--btn-shadow);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.submit-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--color-1), var(--color-4));
  box-shadow: 0 6px 20px var(--btn-shadow);
  color: #fff;
}
.calculate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--btn-shadow);
  color: #fff;
}

.submit-btn:active {
  transform: scale(0.98);
}

.submit-btn::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(199, 18, 18, 0.25);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: width 0.6s ease-out, height 0.6s ease-out;
  z-index: 0;
}

.submit-btn:active::before {
  width: 200%;
  height: 500%;
}

.submit-btn:focus {
  outline: none;
}



/* MAP */
.location-section {
  flex: 1;
}

.map-container {
  border: 2px solid var(--color-2);
}


.map-container1
{
  margin-top: 15px;
   border: 2px solid var(--color-2);
   padding: 2px;
}


.about-content {
  padding: 50px 10%;
  text-align: center;
  justify-content: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #537D75;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  text-align: justify;
}



.card-body {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-body2:hover {
  transform: scale(0.95);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}


/* Grid Container */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: minmax(300px, auto);
  gap: 13px;
  max-height: none;
}

/* Grid Item */
.grid-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* Size Variants */
.grid-item.tall {
  grid-row: span 2;
}
.grid-item.large {
  grid-column: span 2;
}

/* Overlay */
.grid-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.199);
  z-index: 1;
  transition: background 0.4s ease;
}

/* Hover Effects */
.grid-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.grid-item:hover::before {
  background: rgba(0, 0, 0, 0.452);
}

/* Link Layer */
.grid-item-link {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
  z-index: 2;
}

/* Text */
.grid-item h2 {
  position: relative;
  z-index: 3;
  color: white;
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.grid-item-link:hover h2 {
  color: whitesmoke;
}


.grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.4s ease;
  filter: brightness(0.8);
}

.grid-item:hover .grid-img {
  transform: scale(1.05);
  filter: brightness(0.5);
}


.circular-text-wrapper {
  position: relative;
  margin-top:50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;

  align-items: center;
  justify-content: center;
}


.circle-div {
  position: relative;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate  linear both;
  animation-timeline: view();
}

.circle-div span {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  width: 100%;
  height: 100%;
  text-align: center;
  /* transform: rotate(0deg); */
  display: block;
  white-space: pre;
  letter-spacing: 3px;
  text-transform: none;
  background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/circular-text-path.svg') no-repeat center;
  background-size: contain;
  -webkit-mask: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/circular-text-path.svg') center/contain no-repeat;
  mask: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/circular-text-path.svg') center/contain no-repeat;
}


.circle-div img
{
  height: 200px;
  width: 250px;
}


.dot {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


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








    
.chat-box {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 300px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  display: none;
  z-index: 1050;
}

.chat-header {
  background-color: #5b2c6f;
  color: white;
  padding: 12px 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.chat-body {
  padding: 15px;
  max-height: 300px;
  overflow-y: auto;
}

.chat-date {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 10px;
}

.chat-msg {
  margin-bottom: 15px;
}

.bot-msg p {
  background: #f2f2f2;
  padding: 10px 12px;
  border-radius: 10px;
  margin: 0;
}

.chat-options button {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}

.chat-options button:hover {
  background: #f7f7f7;
}

.chat-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--color-3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.26);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  
}


.chat-msg {
  margin-top: 10px;
}

.chat-msg p {
  margin: 0;
  line-height: 1.5;
}

.user-msg p {
  text-align: right;
  background: #dff9fb;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 15px;
}

.bot-msg p {
  text-align: left;
  background: #f1f2f6;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 15px;
}



.big-text
{
  display: flex;
  justify-content: center;
  align-items: center;
  background:#111;
  border-bottom:1px solid #111;
}
.big-text h1
{
  font-size: 12rem;
  font-family: 'Barlow', sans-serif;
  color: transparent;
  outline: 2px solid rgba(0, 0, 0, 0.1);
  -webkit-text-stroke: 2px rgb(255, 255, 255);
  text-transform: uppercase;
  border-radius: 10px;

  color: white;
}
.big-text .transform-link
{
  -webkit-text-stroke: 2px rgb(255, 255, 255)!important;
}
.big-text .transform-link:hover
{
  -webkit-text-stroke: 2px rgb(255, 255, 255)!important;
}
/* RESPONSIVE QUERIES */
@media (max-width: 1024px) {
  .about-header h1 {
    font-size: 3rem;
  }

  .form-map-section {
    gap: 40px;
  }

  .map-container iframe {
    height: 500px;
  }
  .big-text h1
  {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .contact-info,
  .form-map-section {
    flex-direction: column;
  }

  .contact-image img {
    margin-top: 20px;
  }

  .about-header h1 {
    font-size: 2.5rem;
    margin-top: 120px;
  }

  .about-content {
    padding: 30px 7%;
  }
  .form-select {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }
  .big-text h1
  {
    font-size: 4rem;
  }
  .slider-sections {
    width: 100%;
    height: 100%;
  }
  .sliders-box
  {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .contact-bg
  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .slider-img
{
  width: 100%;
  height: 100%!important;
  object-fit: cover;
}
  .hero-section{
    height: 60vh;
  }
  .contact-container
  {
    position: relative;
    width: 100%;
    height: 100%;
  }
   
}






@media (max-width: 768px) {
  .experience-section h2 {
    font-size: 20px;
  }

  .experience-card {
    max-width: 100%;
  }

  .cards-container {
    flex-direction: column;
    align-items: left;
  }
   .footer-container {
    flex-direction: column;
    text-align:left;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .footer-section.about img {
    margin: 0 auto 15px;
  }
    .big-text h1
  {
    font-size: 4rem;
  }

}

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) {
  .room-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: auto;
  }

  .grid-item {
    height: 300px; /* adjust as needed for small screens */
  }
  .grid-item.tall {
    grid-column: span 2;
  }
  .grid-item.small
  {
    grid-row: 2;
  }
  .navbar-white .nav-link,
  .navbar-white {
    color: #000 !important;
    font-size: 1.1rem;
    text-overflow: ellipsis;
    text-wrap:nowrap;
    white-space: nowrap;
  }
  .nav-link
  {
    font-size: 1.1rem;
    text-overflow: ellipsis;
    text-wrap:nowrap;
    white-space: nowrap;
  }
}


  /* Mobile view adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
      justify-content: flex-start !important;
  }
  .dropdown-menu {
      left: 0 !important;
      transform: none !important;
  }
  /* Center the navbar items */
.navbar-collapse.collapse.show,
.navbar-collapse {
  justify-content: center !important;
}

/* Center the nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  
}
.navbar-nav li
{
  border-bottom: 1px solid white;
  width: 100%;
  letter-spacing:2px;
  text-transform: uppercase!important;
  color: white!important;
}
/* Ensure dropdown is styled and animated smoothly */
.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 8px;
  text-align: center;
  min-width: 180px;
  background-color: #ffffff;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Animation class for slide-in dropdown */
.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Improve dropdown-item */
.dropdown-item {
  padding: 10px 16px;
  color: #0e0a09;
  transition: background-color 0.3s ease, color 0.2s ease;
  font-weight: 500;
  text-transform: uppercase;
}

.dropdown-item:hover {
  background-color: #303030;
  color: #fff;
  transform: scale(1.02);
}

.scroller-content-2 h1 {
font-size: 3rem!important;
font-weight: 300;
}
/* .scroller-content-2 h1::first-letter {
font-size: 3.5rem!important;

} */
.scroller-content-2 h4 {
font-size: 2rem!important;
font-weight: 300;
}
.scroller-content-2 p {
font-size: .5rem;
margin: 0;
}
.navbar-collapse {
  justify-content: flex-start !important;
}

.dropdown-menu {
  left: 0 !important;
  transform: none !important;
  text-align: left;
}

.grid-item {
  height: 400px; /* adjust as needed for small screens */
}
.grid-item.tall {
  grid-column: span 2;
}
.grid-item h2
{
  font-size: 2rem;
}

.section-title {
  font-size: 1.8rem;
}
  .right-image
{
  justify-content: center;
}
  .big-text h1
  {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
    .scroller-content-2 h1 {
        font-size: 1.5rem!important;
        font-weight: 700;
    }
    /* .scroller-content-2 h1::first-letter {
        font-size: 3.5rem!important;
    } */
    .scroller-content-2 h4 {
        font-size: 1.5rem!important;
        font-weight: 700;
    }
    .scroller-content-2 h3 {
      font-size: 1rem!important;
      font-weight: 700;
  }
    .scroller-content-2 p {
        font-size: .5rem;
        margin: 0;
    }
    .btn
    {
      height: 30px;
      padding: 2px;
      width: fit-content;
    }
    .dot{
      height: 8px;
      width: 8px;
    }


    .section-title {
      font-size: 1.8rem;
    }
  
    .col-md-auto {
      width: 150px;
      height: 150px;
    }
  
    .stat-card h3 {
      font-size: 1.4rem;
    }
  
    .stat-card p {
      font-size: 0.9rem;
    }
    .room-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      grid-auto-rows: auto;
    }
    .grid-item h2
    {
      font-size: 1rem;
    }
    .kitchen {
      grid-column: auto;
    }
    .grid-item {
      height: 300px; /* adjust as needed for small screens */
    }
    .grid-item.tall {
      grid-column: span 2;
    }
    .grid-item.small
    {
      grid-column: 1;
    }

    .circle {
      width: 120px;
      height: 120px;
    }
  
    .circle img {
      width: 60px;
      height: 60px;
    }
  
    .arrow {
      font-size: 40px;
      margin-top: -70px;
    }
  
    .step {
      max-width: 130px;
      min-width: 120px;
    }
  
    #project-steps .section-title {
      font-size: 24px;
    }
    .modal-title
    {
      width: 150px;
    }
    .section-title
    {
      font-size: 1rem;
    }

    .stats-grid {
      grid-template-columns: 1fr;
  }
  
  .section-title {
      font-size: 1.6rem;
  }
  
  .about-content .lead {
      font-size: 1.1rem;
  }
  .floating-buttons {
    right: 0px;
  }
  .responsive-modal {
    max-width: 700px; /* like modal-lg */
  }
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-card {
    width: 220px; /* Smaller card width for tablets/mobiles */
    margin-right: 15px;
  }
  .testimonial-card {
    width: 250px;
    padding: 20px;
  }
  .youtube-fullscreen {
    height: 80vh; /* Slightly reduce height */
  }
  
  .video-fullscreen-wrapper iframe {
    height: 80vh;
  }
  .right-image
{
  justify-content: center;
}
.floating-btn
  {
    right: 10px;
  }
}

@media (max-width: 767px) {
  .room-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 10px;
    margin: 0 !important;
  }

  .room-grid.mt-5 {
    margin-top: 0 !important;
  }

  .grid-item,
  .grid-item.tall,
  .grid-item.large,
  .grid-item.small {
    height: 200px !important;
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .grid-item * {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
  }

  .divider{
    display: none;
  }
  .section-header {
    display: block !important;
  }
    .right-image
{
  justify-content: center;
}
  .big-text h1
  {
    font-size: 4rem;
    -webkit-text-stroke: 1px rgb(255, 255, 255);
  }
}

@media (max-width: 767px) {
  
    .section-header h2 {
      font-size: 1.2rem;
      font-weight: 700;
      white-space: wrap;
    }
    .highlight-text
  {
   
    width: 100%;
    height: 40px!important;
   
  }
.highlight-btn {
    width: 160px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .highlight-text h3
  {
    font-size: 12px;
    color: #ffffff!important;
     line-height: 12px;
  }
  .consultant-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 200;
   
  }
  .image-column {
    order: 2!important;
  }

  .text-column {
    order: 1!important;
  }
  .btn-purple
  {
    transform: rotate(-90deg);
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-right: -2rem;
  }
  .responsive-modal {
    max-width: 90%; /* smaller modal */
  }
  .testimonial-item
  {
    width: 8%;
  }
  .testimonial-card {
    width: 100px;
    height: 100px;
  }
  
  .testimonial-card img {
    width: 100px;
    height: 100px;
  }
  #testimonialDots button {
    width:10px;
    height: 10px;
  }
  .divider {
    width: 100px;
    height: 2px;
    margin: 0 auto -30px auto;
  }
  .youtube-fullscreen {
    height: 70vh;
    width: 100vw; /* Full viewport width */
  }
  
  .video-fullscreen-wrapper {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .video-fullscreen-wrapper iframe {
    height: 70vh;
  }
  .blog-banners-container
  {
    margin-left: 1rem;
    top: 60%;
  }
  .blog-banner-title {
    font-size: 2rem;
    font-weight: bold;
  }
  .blog-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .blog-title
  {
    font-size: 1.5rem;
  }
  .stat-card h3
  {
    font-size: 1rem;
  }
  .floating-btn
  {
    right: 10px;
  }
}


@media (max-width: 576px) {
  .modal-dialog {
    margin: 1rem;
  }

  .elegant-modal {
    padding: 20px 15px;
  }

  .offcanvas {
    width: 100%;
  }

  .youtube-fullscreen {
    height: 60vh;
  }

  .video-fullscreen-wrapper iframe {
    height: 60vh;
  }

  .no-videos-message {
    font-size: 1.2rem;
    padding: 0 20px;
  }

  /* Stack image and text vertically in related project card */
  .row.g-0 {
    flex-direction: column !important;
  }

  .row.g-0 > .col-4,
  .row.g-0 > .col-8 {
    max-width: 100% !important;
    flex: 0 0 100%;
  }

 .card .row.g-0 {
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
  }
  .card .col-4,
  .card .col-8 {
    width: 200px;
    padding: 0;
    max-width: 100% !important;
    flex: 0 0 100%;
  }
  .card .rounded-start {
    border-radius: 0 !important;
  }

  /* Optional: Center-align text & make button full width on mobile */
  .card-body {
    text-align: center;
    padding: 1rem !important;
  }

  .view-all-btn {
    width: 100%;
    margin-top: 0.5rem;
  }
  .footer-section.about img {
  max-width: 120px;
  margin-bottom: 10px;
  }
  .footer-section.about h1 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 12px 0 1px 2px;
}

.footer-section.about h5 {
  margin: 0px 0 10px -4px!important;
  font-size: 12px;
  text-align: center;
}

.footer-section.about p {
  color: #aaa;
  font-size: 14px;
  text-align: justify;
  line-height: 1.6;
}
  .right-image
{
  justify-content: center;
}
  
}




/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .room-grid {
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: auto;
  }

  .grid-item {
    height: 200px; /* adjust as needed for small screens */
  }

  .grid-item h2 {
    font-size: 1.8rem!important;
  }
  .grid-item.tall {
    grid-column: span 2;
  }
  .grid-item.small
    {
      grid-column: 1;
    }
    .package-card
    {
      height: 250px;
    }
    .col-md-4
    {
      display: flex;
      justify-content: center;
      height: 250px;
    }
    .package-card img {
      width: 100%;
      height: 60%;
      object-fit: cover;
    }
    .package-overlay {
      bottom: 100px;
      padding: 5px;
    }
    
    .circle {
      width: 100px;
      height: 100px;
    }
  
    .circle img {
      width: 50px;
      height: 50px;
    }
  
    .arrow {
      font-size: 30px;
      margin-top: -60px;
    }
  
    .step {
      max-width: 110px;
      min-width: 100px;
    }
  
    p {
      font-size: 12px;
    }
  
    #project-steps .section-title {
      font-size: 20px;
    }
    .grid-item h2
    {
      font-size: .95px;
    }

    .col-lg-6 .section-title
    {
      font-size: 20px;
    }

    .modal-dialog {
      margin: .5rem;
    }
  
    .elegant-modal {
      padding: 15px 10px;
    }
    .testimonial-card {
      width: 180px; /* Even smaller for very small phones */
      margin-right: 10px;
    }
    .youtube-fullscreen {
      height: 60vh;
    }
    
    .video-fullscreen-wrapper iframe {
      height: 60vh;
    }
    
    .no-videos-message {
      font-size: 1.2rem;
      padding: 0 20px;
    }
    .svg-logo {
    max-width: 100px;
  }
    .furniture-list h2 {
      font-size: 22px;
    }

    .room-section h3 {
      font-size: 16px;
    }

    .room-section li {
      font-size: 14px;
    }
      .about-header {
    height: 400px;
    padding: 30px 10px;
  }

  .about-header h1 {
    font-size: 2rem;
    margin-top: 100px;
  }

  .contact-form {
    padding: 20px 15px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .map-container iframe {
    height: 400px;
  }
   .hero-header h1 {
    font-size: 2rem !important;
  }
    .timeline {
    padding: 20px 10px;
  }

  .timeline::after {
    left: 20px!important; /* Move the line to the left side */
  }

  .timeline-item {
    width: 100%; 
    padding: 20px 20px 20px 40px;
    text-align: left !important;
    left: 0 !important;
  }

  .timeline-item h2 {
    font-size: 1.5rem;
    transform: rotate(0deg);
    text-align: left;
  }

  .timeline-item.right h2 {
    transform: rotate(0deg);
  }

  .timeline-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .h22{
    font-size: medium;
  }
  .link-div p
  {
    font-size: 2rem;
  }
  .highlight-btn {
    width: 130px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }
}

/* Additional mobile landscape optimization */
@media (max-width: 767px) and (orientation: landscape) {
  .youtube-fullscreen {
    height: 100vh;
  }
  
  .video-fullscreen-wrapper iframe {
    height: 100vh;
    width: 177.78vh; /* 16:9 aspect ratio based on height */
    left: 50%;
    transform: translateX(-50%);
  }
}





/* style="background-image: url('https://media.elitedreambuilders.in/home_slider/Elevation_-_01_5_-_Photo.jpg'); background-size: cover; background-position: center;" */


input[name="otp"] {
  font-size: 2rem;
  letter-spacing: 0.5rem;
  text-align: center;
  max-width: 180px;
  margin: auto;
}


:root {
  --btn-bg: #4a90e2; /* Your main theme color */
  --btn-hover-bg: #3b78c7;
  --btn-text: #fff;
  --input-bg: #f9f9f9;
  --input-border: #ddd;
}



/* Custom button styles */
.increase-btn {
  background-color: var(--color-2);
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  width: 45px;
  height: 45px;
  border: none;
  display: flex;
  border-radius:50%;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.increase-btn:hover {
  background-color:var(--color-1);
}

/* Input field style */
.quantity-input {
  width: 60px;
  height: 45px;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
} 

/* Button group alignment */
.quantity-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.50rem;
}


/* Step container */
.step2 {
  animation: fadeIn 0.3s ease-in-out;
}

/* Smooth fade-in for steps */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Room counter layout */
#roomCounters .form-control {
  width: 60px;
  display: inline-block;
  text-align: center;
  border-radius: 0.375rem;
  border: 1px solid #ccc;
}

/* Plus/Minus buttons */
#roomCounters .btn-outline-secondary {
  width: 36px;
  height: 36px;
  font-weight: bold;
  padding: 0;
  line-height: 1;
}

/* Label styling */
#roomCounters label {
  font-size: 1rem;
  color: #333;
  margin-right: 1rem;
}

/* Next/Submit buttons */
.btn-primary, .btn-secondary {
  border-radius: 0.5rem;
  padding: 8px 20px;
  font-weight: 600;
}

/* Step header */
.step h5 {
  color: #2ba58b;
  border-bottom: 2px solid #2ba58b;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}





 /* Default (mobile first) */
    .project-img {
        height: 120px;   /* small on mobiles */
        object-fit: cover;
    }

    /* Tablets */
    @media (min-width: 768px) {
        .project-img {
            height: 180px;
        }
    }

    /* Desktop and larger */
    @media (min-width: 992px) {
        .project-img {
            height: 250px;   /* bigger image */
        }
    }


/* --- Elegant Responsive List --- */
.elegant-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 17px;
  color: #333;
}

.elegant-list li {
  position: relative;
  background: #f9f9f9;
  padding: 12px 15px 12px 40px; /* space for icon */
  border-left: 4px solid var(--color-1); /* gold accent */
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

/* --- Optional icon (font-awesome or similar) --- */
.elegant-list li i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--color-1);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* --- Hover Effects --- */
.elegant-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-left: 4px solid #111;
  color: var(--color-1);
  cursor: pointer;
}

.elegant-list li:hover i {
  transform: translateY(-50%) scale(1.2);
  color: #111;
}

/* --- Responsive (stack to 1 column) --- */
@media (max-width: 600px) {
  .elegant-list {
    grid-template-columns: 1fr;
  }
   .heading
        {
          font-size: 1rem!important;
          font-weight: 700;
        }
}

.chat-msg { margin: 8px 0; }
.user-msg p { text-align: right; background: #e1f7d5; padding: 8px 12px; border-radius: 12px; display: inline-block; }
.bot-msg p { text-align: left; background: #f1f1f1; padding: 8px 12px; border-radius: 12px; display: inline-block; }
.chat-card { background: #f8f9fa; border-radius: 12px; padding: 12px; margin-top: 8px; }
.chat-input { width: 100%; padding: 8px; margin-top: 8px; border: 1px solid #ccc; border-radius: 6px; }
.chat-btn { background: #6c5ce7; color: white; border: none; padding: 8px 12px; border-radius: 6px; cursor: pointer; margin-top: 6px; }
.chat-btn:hover { background: #5a4bdc; }

  .terms-section {
    background: #f9f9f9;
    padding: 60px 20px;
    font-family: "Poppins", sans-serif;
  }

  .terms-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #222;
    position: relative;
  }

  .terms-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #c19a6b; /* elegant gold accent */
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .terms-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    cursor:zoom-in !important;
  }

  .terms-list li {
    background: #fff;
    margin-bottom: 25px;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
  }

    .terms-list li.active {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .terms-list li:hover {
    transform: translateY(-4px);
  }

  .terms-list h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .terms-list h4 i {
    color: #c19a6b; /* gold tone for icons */
    font-size: 1.1rem;
  }

  .terms-list p {
    color: #555;
    line-height: 1.6;
    margin: 0;
  }


  .bhk-card {
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease-in-out;
}
.bhk-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.bhk-check:checked + span {
  color: var(--color-2); /* highlight selected */
}

/* Buttons */
.counter button {
  background-color: var(--color-1);
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  line-height: 26px;
  padding: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Align and reduce spacing */
.counter {
  gap: 6px;
}
.counter .count {
  font-size: 16px!important;
  min-width: 22px;
  text-align: center;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .bhk-option {
    flex-direction: column;
    align-items: flex-start;
  }
  .counter {
    margin-top: 8px;
    justify-content: flex-start;
  }
}



.team-section {
  padding: 60px 10%;
  background: #f8f8f8;
  font-family: 'Poppins', sans-serif;
}

.team-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* side by side: text + members */
  gap: 40px;
  align-items: center;
}

/* Titles and text */
.team-intro h4 {
  color: #7b3fe4;
  font-size: 16px;
  margin-bottom: 10px;
}

.team-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.team-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Button */
.team-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #585656, #000000);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-btn:hover {
  background: #333;
}

/* Team Members Grid */
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* responsive */
  gap: 5px;
  justify-items: center;
}

.team-card {
  width: 240px; /* fixed width */
  position: relative;
  text-align: center;
  padding: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f4f4f9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
/* Fancy gradient corner accent */
.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;   /* control width */
  height: 90px;  /* control height */
  background: transparent;
  border-radius: 0 0 80% 10%; /* rounded only bottom-right corner */
  z-index: 0;
  transition: transform 0.5s ease;
}


.team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  margin: 40px auto 15px;
  display: block;
  filter: grayscale(0);
}

.team-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 5px;
  position: relative;
  z-index: 1;
}

.team-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Hover effects */
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px #00000038;

}


.team-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.team-card.show {
  opacity: 1;
  transform: translateY(0);
}



.team-card:hover img{
  filter: grayscale(0);
}

.team-card:hover::before {
  transform: scale(1.99);
  background: linear-gradient(135deg,var(--color-1), #f5a462);
  width: 180px;
  height: 140px;
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablet (2 columns for members, stack text above grid) */
@media (min-width: 992px){
  
  .team-card:hover img{
    transform: scale(1.1);
  }

}

@media (max-width: 992px) {
  .team-container {
    grid-template-columns: 1fr; /* stack text on top of members */
    text-align: center;
  }

  .team-title {
    font-size: 28px;
  }

  .team-desc {
    font-size: 15px;
  }

  .team-members {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

}

/* Mobile (1 column for members + smaller text/button) */
@media (max-width: 576px) {
  .team-container {
    grid-template-columns: 1fr; /* single column */
    gap: 30px;
    text-align: center;
  }

  .team-title {
    font-size: 24px;
  }

  .team-desc {
    font-size: 14px;
  }

  .team-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .team-members {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .team-card img {
    height: 180px; /* slightly smaller on mobile */
    width: 180px;
  }
}


.team-card h3 {
  font-size: 18px;
  margin: 10px 0 4px;
  font-weight: 600;
}

.team-card p {
  font-size: 14px;
  color: #777;
}

.offer-card a
{
  text-decoration: none;
  color: inherit;
}


/* ad */

/* Modal Base */
#adModal .modal-content {
  border-radius: 20px;
  background: transparent;
  border: none;
  box-shadow: none;
  animation: popupScale 0.4s ease;
  overflow: hidden;
}

/* Popup Animation */
@keyframes popupScale {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Ad Wrapper */
#adModal .ad-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* Ad Image */
#adModal .ad-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Overlay */
#adModal .ad-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  color: #fff;
}

/* Title */
#adModal .ad-overlay h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

/* Description */
#adModal .ad-overlay p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #eee;
}

/* Offer Price */
#adModal .ad-overlay h3 {
  font-size: 24px;
  font-weight: bold;
  color: #ffcc00;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

/* Call to Action Button */
#adModal .ad-overlay .btn {
  background: linear-gradient(90deg, #ff9a00, #ff6a00);
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#adModal .ad-overlay .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 106, 0, 0.5);
}

/* Custom Close Button */
#adModal .ad-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #fff;
  z-index: 10;
  transition: transform 0.2s ease, color 0.2s ease;
}

#adModal .ad-close-btn:hover {
  color: #ff4d4d;
  transform: scale(1.1);
}



/*  */


.converter {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      max-width: 400px;
      width: 100%;
    }
    .converter h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 22px;
    }
    .converter input, .converter select, .converter button {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
    }
    .converter button {
      background: #7b3fe4;
      color: #fff;
      cursor: pointer;
      transition: background 0.3s;
    }
    .converter button:hover {
      background: #5e2ac6;
    }
    .converter .result {
      margin-top: 15px;
      padding: 12px;
      background: #f3f3f3;
      border-radius: 8px;
      text-align: center;
      font-weight: bold;
    }


  /* ✅ Make nav arrows always visible */
  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.15s ease-in-out !important;
  }

  /* ✅ Adjust arrow button size for mobile */
  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  /* ✅ Responsive image scaling */
  .gslide img {
    max-height: 85vh;
    width: auto;
    margin: auto;
    object-fit: contain;
  }

  @media (max-width: 768px) {
    .gslide img {
      max-height: 70vh;
    }
  }







/* ───────────────────────────────────────
   3D Liquid-Glass Toggle – iOS 26 Style
   ─────────────────────────────────────── */
.liquid-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  overflow: hidden;
  gap: 0;
  cursor: default;
  margin-top: 2px;

  /* 3D container */
  transform-style: preserve-3d;
  perspective: 600px;

  /* Glass + blur */
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);

  /* Depth shadow */
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.12),
    inset 0 0 14px rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

/* Segments */
.liquid-toggle .seg {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 14px;
  font-weight: 600;
  font-size: 0.86rem;
  color: #000000;
  
  transition: color 0.3s ease, transform 0.2s ease;
  height: 100%;
  text-decoration: none;
  transform-style: preserve-3d;
}

/* Hover: slight press */
.liquid-toggle .seg:hover {
  color: #ffffff;
  transform: translateZ(2px);
}

/* Active text */
.liquid-toggle.active-left  .left,
.liquid-toggle.active-right .right {
  color: #ffffff;
  font-weight: 700;
  transform: translateZ(4px);
}

/* ── 3D Glass Bubble ── */
.liquid-toggle .glass-bubble {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 999px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.7);

  /* 3D transform */
  transform-style: preserve-3d;
  transform: translateZ(8px);

  /* Red-orange liquid */
  background: #e64b03;

  /* Inner glass shine (3D light) */
  background-image: 
    radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.719), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(216, 65, 65, 0.767), transparent 60%);

  /* 3D glow + bevel */
  box-shadow:
    /* Outer glow */
    0 8px 20px rgba(230, 75, 3, 0.4),
    /* Bevel */
    inset 0 2px 4px rgba(255, 255, 255, 0.6),
    inset 0 -2px 4px rgba(200, 50, 0, 0.3),
    /* Depth */
    0 4px 8px rgba(0, 0, 0, 0.2);

  transition: 
    transform 0.38s cubic-bezier(0.2, 0.8, 0.4, 1),
    box-shadow 0.38s ease;
}

/* ── 3D Slide ── */
.liquid-toggle.active-left  .glass-bubble { 
  transform: translateX(0%) translateZ(10px) rotateY(0deg); 
}
.liquid-toggle.active-right .glass-bubble { 
  transform: translateX(100%) translateZ(10px) rotateY(0deg); 
}

/* ── Hover: 3D Tilt Toward Cursor ── */
.liquid-toggle:hover {
  transform: rotateX(2deg);
}

.liquid-toggle:hover .glass-bubble {
  box-shadow:
    0 12px 28px rgba(230, 75, 3, 0.5),
    inset 0 2px 6px rgba(255, 255, 255, 0.7),
    inset 0 -2px 6px rgba(200, 50, 0, 0.4),
    0 6px 12px rgba(0, 0, 0, 0.25);
  transform: translateZ(14px) !important;
}

/* ── Click: Press Down ── */
.liquid-toggle:active .glass-bubble {
  transform: translateZ(4px) !important;
  box-shadow:
    0 4px 10px rgba(230, 75, 3, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    inset 0 -1px 2px rgba(200, 50, 0, 0.2);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

/* Focus */
.liquid-toggle .seg:focus-visible {
  outline: 2px solid #e64b03;
  outline-offset: 3px;
  border-radius: 10px;
}

/* Mobile */
@media (max-width: 340px) {
  .liquid-toggle { height: 34px; }
  .liquid-toggle .seg { font-size: 0.8rem; padding: 0 11px; gap: 4px; }
  .liquid-toggle .seg i { font-size: 0.9em; }
}








/* ───────────────────────────────────────
   Elegant Quote Button – Red-Orange Theme
   ─────────────────────────────────────── */
.elegant-quote-btn {
  --shadow-sm: 0 4px 15px rgba(230, 75, 3, 0.3);
  --shadow-lg: 0 8px 25px rgba(230, 75, 3, 0.4);
  --gradient-base: linear-gradient(135deg, #e64b03, #ff6a00);   /* Red-Orange → Bright Orange */
  --gradient-hover: linear-gradient(135deg, #ff6a00, #e64b03);  /* Reverse on hover */

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  margin-top: -5px;
  font: 600 1rem/1 'Segoe UI', 'Helvetica Neue', sans-serif;
  color: #fff;
  text-decoration: none;
  background: var(--gradient-base);
  border: none;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.4s ease;
  will-change: transform, box-shadow;
  z-index: 1;
}

/* Shimmer effect – golden-white glow */
.elegant-quote-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: -1;
}

/* Hover: Lift + Reverse Gradient */
.elegant-quote-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-hover);
}

.elegant-quote-btn:hover::before {
  left: 100%;
}

/* Active / Click */
.elegant-quote-btn:active {
  transform: translateY(-1px);
  transition-duration: 0.1s;
}

/* Focus */
.elegant-quote-btn:focus-visible {
  outline: 2px solid #ff8533;
  outline-offset: 2px;
}



/* Collapsed initial state */


.whatsapp-btn {
  width: 55px;
  height: 55px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -175px!important;
  transition: all .35s ease;
}
/* Smooth expand */
.whatsapp-btn.expanded {
  width: 200px;
  height: 55px;
  padding: 12px 22px;
  border-radius: 50px;
  gap: 8px;
}

/* Text hidden initially */
.whatsapp-btn span {
  opacity: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity .3s ease, width .3s ease;
  font-size: 1rem;
}

/* Show text when expanded */
.whatsapp-btn.expanded span {
  opacity: 1;
  width: auto;
}

/* Icon a bit bigger */
.whatsapp-btn i {
  font-size: 1.5rem;
}



/* otp */

/* ───────────────────────────────────────
   OTP Page – iOS 26 Liquid Glass
   ─────────────────────────────────────── */
.otp-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%);
  padding: 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.glass-card {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.08),
    inset 0 0 20px rgba(255,255,255,0.4);
  text-align: center;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.header {
  margin-bottom: 1.5rem;
}
.icon-lock {
  font-size: 2.8rem;
  color: #e64b03;
  margin-bottom: 0.5rem;
  animation: float 3s ease-in-out infinite;
}
.header h3 {
  font-weight: 700;
  color: #1a1a1a;
  margin: 0.5rem 0;
}
.header p {
  color: #555;
  font-size: 0.95rem;
}

/* Timer Circle */
.timer-circle {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 1.5rem auto;
}
.progress-ring__circle {
  transition: stroke-dashoffset 0.3s ease;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-linecap: round;
}
.timer-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 1rem;
  color: #e64b03;
}

/* OTP Boxes */
.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 1.5rem 0;
}
.otp-box {
  width: 50px;
  height: 56px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  background: rgba(255,255,255,0.7);
  border: 2px solid rgba(230,75,3,0.3);
  border-radius: 16px;
  transition: all 0.2s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.otp-box:focus {
  outline: none;
  border-color: #e64b03;
  box-shadow: 0 0 0 3px rgba(230,75,3,0.2), inset 0 2px 4px rgba(0,0,0,0.1);
  transform: scale(1.05);
}
.otp-box.filled {
  background: #e64b03;
  color: white;
  border-color: #e64b03;
}

/* 3D Button */
.btn-3d {
  position: relative;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  background: linear-gradient(135deg, #e64b03, #ff6a00);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 
    0 8px 20px rgba(230,75,3,0.4),
    inset 0 1px 3px rgba(255,255,255,0.4);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  margin: 1rem 0;
}
.btn-3d:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(230,75,3,0.5);
}
.btn-3d:active {
  transform: translateY(-1px) scale(0.98);
}
.btn-3d .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

/* Resend */
.resend {
  margin-top: 1rem;
  font-size: 0.9rem;
}
.btn-link {
  background: none;
  border: none;
  color: #e64b03;
  font-weight: 600;
  cursor: pointer;
}
.cooldown { color: #888; }

/* Success */
.success-state h4 {
  color: #1a1a1a;
  margin: 1rem 0;
}
.check-icon {
  font-size: 3.5rem;
  color: #e64b03;
  animation: checkPop 0.6s ease;
}

/* Messages */
.messages {
  margin-top: 1rem;
}
.alert {
  background: rgba(220,50,50,0.1);
  border: 1px solid rgba(220,50,50,0.3);
  color: #d00;
  border-radius: 12px;
  padding: 0.75rem;
  animation: shake 0.5s ease;
}


/* Countdown Badge */
.download-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.countdown-badge {
  background: #e64b03;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 50px;
  min-width: 130px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(230, 75, 3, 0.3);
  transition: all 0.3s ease;
}

/* Pulse on update */
.countdown-badge:active {
  transform: scale(0.98);
}


/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}
@keyframes checkPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}