:root {
  --primary-black: #1a1a1a;
  --text-gray: #666;
  --accent-blue: #5b8c8c;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* --- Navigation --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo {
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
}
.logo i {
  margin-right: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}
.nav-links li a {
  text-decoration: none;
  color: var(--primary-black);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-bar i {
  color: #aaa;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

/* --- Hero Slider Styles --- */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10%;
  overflow: hidden;
  transition: background 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
}

/* Overlay for text readability */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3); /* Adjust brightness */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

/* Animation class for text change */
.content-fade {
  opacity: 0;
  transform: translateY(20px);
}

.hero-content h1 {
  font-size: 56px;
  margin: 15px 0;
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary-black);
}
.hero-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

.btn-discover {
  background: var(--primary-black);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-radius: 4px;
  transition: var(--transition);
  margin-top: 20px;
}
.btn-discover:hover {
  background: var(--accent-blue);
  transform: translateY(-3px);
}

/* --- Mobile Styles --- */
@media (max-width: 992px) {
  .mobile-menu-btn {
    display: block;
  }
  nav {
    width: 93%;
    background-color: transparent;
  }
  .logo {
    font-size: 20px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    margin: 20px 0;
  }
  .nav-links li a {
    font-size: 20px;
  }
  .search-bar {
    display: none;
  }
  .hero-content h1 {
    font-size: 38px;
  }
}

/* hero section end  */

/* why we at home section start   */
/* Main Wrapper instead of Body */
.fn-page-wrapper {
  background-color: #4b7a7a; /* Exact Teal from Image */
  min-height: 100vh;
  padding: 60px 5%;
  width: 100%;
}

.fn-grid-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
  max-width: 1350px;
  margin: 0 auto;
}

/* --- Top Section: Left Large Card --- */
.fn-main-feature {
  grid-column: span 8;
  background-color: #92b1b1;
  border-radius: 24px;
  display: flex;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.fn-feature-info {
  padding: 50px;
  flex: 1.2;
  color: #ffffff;
}

.fn-feature-info span {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  opacity: 0.8;
  display: block;
  margin-bottom: 12px;
}
.fn-feature-info h2 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 18px;
  font-weight: 700;
}
.fn-feature-info p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 35px;
}

.fn-feature-visual {
  flex: 1;
  background: url("https://images.unsplash.com/photo-1556740758-90de374c12ad?q=80&w=800")
    center/cover;
}

/* --- Top Section: Right Stats --- */
.fn-performance-metrics {
  grid-column: span 4;
  padding: 10px 20px;
  color: #ffffff;
}

.fn-performance-metrics h3 {
  font-size: 26px;
  margin-bottom: 35px;
  font-weight: 600;
}

.gl-bar-group {
  margin-bottom: 28px;
}
.gl-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
}

.gl-bar-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  border-radius: 10px;
}

.gl-bar-active {
  height: 100%;
  background: #ffffff;
  border-radius: 10px;
  transition: width 2.5s cubic-bezier(0.1, 0.5, 0.1, 1);
}

/* --- Bottom Section: Small Product Card --- */
.fn-product-spotlight {
  grid-column: span 4;
  background-color: #f4f1ea;
  border-radius: 24px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.fn-product-spotlight h6 {
  color: #5b8c8c;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.fn-product-spotlight h2 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.fn-product-spotlight p {
  color: #555;
  font-size: 13px;
  line-height: 1.5;
}

/* --- Bottom Section: Wide Collection Card --- */
.fn-collection-banner {
  grid-column: span 8;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 25px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.fn-collection-text {
  flex: 1;
}
.fn-collection-text h6 {
  color: #5b8c8c;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.fn-collection-text h2 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 15px;
}
.fn-collection-text p {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
  max-width: 320px;
}

.fn-collection-img {
  flex: 1;
  text-align: right;
}
.fn-collection-img img {
  max-width: 100%;
  height: auto;
  transform: scale(1.1);
}

/* --- Unique Buttons --- */
.fn-action-btn {
  background-color: #d4bc96;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.4s;
}

.fn-action-btn:hover {
  background-color: #c4ab85;
  transform: scale(1.03);
}

.fn-icon-link {
  width: 45px;
  height: 45px;
  background: #d4bc96;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}
.fn-icon-link:hover {
  transform: rotate(45deg);
  background: #1a1a1a;
}

/* --- Mobile Optimization --- */
@media (max-width: 1024px) {
  .fn-main-feature,
  .fn-performance-metrics,
  .fn-product-spotlight,
  .fn-collection-banner {
    grid-column: span 12;
  }
  .fn-main-feature {
    flex-direction: column;
  }
  .fn-feature-visual {
    height: 250px;
  }
  .fn-collection-banner {
    flex-direction: column;
    text-align: center;
  }
  .fn-collection-text p {
    max-width: 100%;
  }
  .fn-collection-img {
    margin-top: 30px;
  }
}

/* why we at home section end */

/* view all project section start   */
.st-showcase-wrapper {
  background-color: #ffffff;
  /* Topographic background pattern simulation */
  background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
  background-size: 30px 30px;
  padding: 80px 5%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Abstract topographic lines overlay (Unique visual touch) */
.st-topo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/topography.png");
  opacity: 0.1;
  pointer-events: none;
}

/* --- Header Section --- */
.st-header-container {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.st-header-container p {
  font-size: 22px;
  line-height: 1.5;
  color: #5a7d7d; /* Teal-ish gray */
  font-weight: 400;
}

.st-header-container p span {
  color: #d4bc96; /* Gold/Tan color from image */
  font-weight: 500;
}

.st-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  text-decoration: none;
  color: #d4bc96;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  transition: 0.3s;
}

.st-view-all-link .st-arrow {
  width: 30px;
  height: 30px;
  background: #d4bc96;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* --- Project Grid --- */
.st-project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.st-project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.st-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.st-project-card:hover img {
  transform: scale(1.05);
}

/* --- Hotspot Styling --- */
.st-hotspot {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #ff5e78; /* Pink dot from screenshot */
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 0 10px rgba(255, 94, 120, 0.5);
}

/* Pulsing animation for hotspots */
.st-hotspot::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #ff5e78;
  animation: st-pulse 2s infinite;
}

@keyframes st-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
  .st-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .st-header-container p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .st-project-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .st-showcase-wrapper {
    padding: 50px 20px;
  }
}

/* view all project section end */

/* best deal section strat  */
.bd-deals-wrapper {
  padding: 80px 5%;
  background-color: #ffffff;
  color: #1a1a1a;
}

.bd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.bd-title {
  font-size: 36px;
  font-weight: 700;
}

.bd-nav-circle {
  width: 50px;
  height: 50px;
  border: 1px solid #e0d5c1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b5a382;
  cursor: pointer;
}

.bd-filter-container {
  display: flex;
  gap: 35px;
  margin-bottom: 50px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}

.bd-filter-item {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.bd-filter-item.active {
  color: #b5a382;
}
.bd-filter-item.active::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #b5a382;
}

.bd-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.bd-product-card {
  text-align: center;
}

.bd-img-container {
  position: relative;
  background-color: #fcfcfc;
  border-radius: 8px;
  padding: 30px 10px;
  margin-bottom: 15px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bd-img-container img {
  max-width: 100%;
  max-height: 100%;
  transition: 0.5s;
}

.bd-product-card:hover img {
  transform: scale(1.1);
}

.bd-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #d4bc96;
  cursor: pointer;
}

.bd-product-name {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

@media (max-width: 1200px) {
  .bd-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .bd-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .bd-product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* best deals section end  */

/* testimonial secton start  */
.gdc-testimonial-wrapper {
  padding: 60px 20px;
  background: #efefef;
}

.gdc-testimonial-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ===== LEFT SIDE ===== */
.gdc-testimonial-left {
  flex: 1;
  min-width: 300px;
}

.gdc-stars {
  color: #c9a96e;
  font-size: 18px;
  margin-bottom: 20px;
}

.gdc-stars span {
  margin-right: 4px;
}

.gdc-testimonial-text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

.gdc-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.gdc-user-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.gdc-user-name {
  font-weight: 600;
}

.gdc-user-location {
  font-size: 13px;
  color: #777;
}

/* ===== RIGHT BOX ===== */
.gdc-newsletter-box {
  flex: 1;
  min-width: 300px;
  background: #ef5b57;
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gdc-newsletter-box h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.gdc-newsletter-box p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* ===== INPUT ===== */
.gdc-input-wrap {
  display: flex;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.gdc-input-wrap input {
  flex: 1;
  border: none;
  padding: 12px;
  outline: none;
  font-size: 14px;
}

.gdc-input-wrap button {
  background: none;
  border: none;
  padding: 0 15px;
  font-weight: 600;
  color: #c9a96e;
  cursor: pointer;
  transition: 0.3s;
}

.gdc-input-wrap button:hover {
  color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .gdc-testimonial-container {
    flex-direction: column;
    text-align: center;
  }

  .gdc-user-info {
    justify-content: center;
  }

  .gdc-newsletter-box {
    width: 100%;
  }
}

/* testinmonial section end */

/* the heart and soul section start  */
.gdcx-sec-wrap {
  padding: 80px 20px;
  background: #f2f2f2;
  font-family: "Inter", sans-serif;
}

/* ===== CONTAINER ===== */
.gdcx-sec-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ===== IMAGE ===== */
.gdcx-sec-img {
  flex: 1;
}

.gdcx-sec-img img {
  width: 90%;
  display: block;
  border-radius: 22px;
}

/* ===== CONTENT ===== */
.gdcx-sec-content {
  flex: 1;
  position: relative;
}

.gdcx-sec-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color: #111;
  margin-bottom: 18px;
}

/* arrow button */
.gdcx-sec-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background: #c7b08a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gdcx-sec-arrow:hover {
  transform: scale(1.08);
}

/* paragraph */
.gdcx-sec-text {
  font-size: 16px;
  line-height: 1.8;
  color: #5a5a5a;
  max-width: 520px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .gdcx-sec-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .gdcx-sec-container {
    flex-direction: column;
    gap: 35px;
  }

  .gdcx-sec-content {
    text-align: center;
  }

  .gdcx-sec-text {
    margin: 0 auto;
  }

  .gdcx-sec-arrow {
    position: static;
    margin: 20px auto;
  }
}

/* the heart and solu section end */

/* new arrival section start  */
.gdcna-wrap {
  padding: 80px 20px;
  background: #f3f3f3;
  font-family: "Inter", sans-serif;
}

/* ===== CONTAINER ===== */
.gdcna-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== TITLE ===== */
.gdcna-title {
  font-size: 38px;
  font-weight: 600;
  color: #111;
  margin-bottom: 50px;
}

/* ===== GRID ===== */
.gdcna-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

/* ===== CARD ===== */
.gdcna-card {
  position: relative;
}

/* heart icon */
.gdcna-heart {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 16px;
  color: #c9a96e;
  cursor: pointer;
}

/* image */
.gdcna-img img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* name */
.gdcna-name {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

/* price */
.gdcna-price {
  font-size: 15px;
  color: #ff4d4d;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .gdcna-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gdcna-grid {
    grid-template-columns: 1fr;
  }

  .gdcna-title {
    text-align: center;
  }
}

/* new arrival section end */

/* browes categories section start  */
.df-main-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr; /* Three main columns */
  gap: 25px;
  align-items: start;
}

/* Left Side: Badge, Header and Large Living Room Image */
.df-hero-column {
  grid-column: 1;
  display: flex;
  flex-direction: column;
}

.df-category-badge {
  display: inline-block;
  background-color: #5b8291;
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  width: fit-content;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.df-main-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

/* Category Card Styling */
.df-cat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.df-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.df-cat-card:hover .df-cat-img {
  transform: scale(1.05);
}

/* Label on bottom left of images */
.df-cat-label {
  position: absolute;
  bottom: 20px;
  left: 25px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Center Column Layout */
.df-center-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 120px; /* Offset to match the staggered look */
}

/* Right Column Layout */
.df-right-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 160px; /* Offset to match the staggered look */
}

/* Fixed Heights to match the visual ratio of the screenshot */
.df-img-living {
  height: 480px;
}
.df-img-bedroom {
  height: 300px;
}
.df-img-kitchen {
  height: 420px;
}
.df-img-bathroom {
  height: 320px;
}
.df-img-laundry {
  height: 320px;
}

/* --- Mobile & Tablet Responsiveness --- */

@media (max-width: 1100px) {
  .df-main-container {
    grid-template-columns: 1fr 1fr;
  }

  .df-cat-img {
    width: 90%;
    margin: 0 auto;
    border-radius: 16px;
  }
  .df-right-column {
    grid-column: span 2;
    flex-direction: row;
    padding-top: 0;
  }
  .df-center-column {
    padding-top: 50px;
  }
}

@media (max-width: 768px) {
  .df-main-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .df-main-title {
    font-size: 36px;
  }
  .df-center-column,
  .df-right-column {
    padding-top: 0;
    flex-direction: column;
  }
  .df-img-living,
  .df-img-bedroom,
  .df-img-kitchen,
  .df-img-bathroom,
  .df-img-laundry {
    height: 300px; /* Standardize height for small screens */
  }
}

/* browse categories section end */

/* footer section strat  */
.syn-ft-main {
  background-color: #4e727e;
  color: #ffffff;
  padding: 80px 40px 30px 40px;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  box-sizing: border-box;
}

.syn-ft-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1fr;
  gap: 40px;
  padding: 0;
  box-sizing: border-box;
}

/* Newsletter Column */
.syn-ft-col-news {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.syn-ft-col-news h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px 0;
  max-width: 280px;
  box-sizing: border-box;
}

.syn-ft-divider {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  margin: 0 0 20px 0;
  padding: 0;
  box-sizing: border-box;
}

.syn-ft-description {
  font-weight: 300;
  margin: 0 0 30px 0;
  opacity: 0.9;
  max-width: 300px;
  box-sizing: border-box;
}

.syn-ft-input-group {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 12px 15px;
  max-width: 320px;
  margin: 0;
  box-sizing: border-box;
}

.syn-ft-input-group input {
  background: transparent;
  border: none;
  color: white;
  outline: none;
  flex: 1;
  font-family: inherit;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.syn-ft-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.syn-ft-btn-sub {
  background: transparent;
  border: none;
  color: #c5a686;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: inherit;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Social & Help Column */
.syn-ft-socials {
  display: flex;
  gap: 15px;
  margin: 0 0 40px 0;
  padding: 0;
  box-sizing: border-box;
}

.syn-ft-social-icon {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  margin: 0;
  box-sizing: border-box;
}

.syn-ft-help-label {
  font-weight: 600;
  margin: 0 0 10px 0;
  display: block;
  box-sizing: border-box;
}

.syn-ft-phone {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Link Columns */
.syn-ft-col-links {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.syn-ft-list-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 15px 0;
  box-sizing: border-box;
}

.syn-ft-list {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.syn-ft-list li {
  margin: 0 0 10px 0;
  padding: 0;
  box-sizing: border-box;
}

.syn-ft-list a {
  color: white;
  text-decoration: none;
  font-weight: 300;
  opacity: 0.85;
  transition: 0.3s;
  box-sizing: border-box;
}

/* Bottom Bar */
.syn-ft-bottom {
  margin: 80px 0 0 0;
  padding: 30px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.8;
  box-sizing: border-box;
}

.syn-ft-copy {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.syn-ft-legal {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.syn-ft-legal a {
  color: white;
  text-decoration: none;
  margin: 0 0 0 15px;
  box-sizing: border-box;
}

/* Responsive */
@media (max-width: 768px) {
  .syn-ft-main {
    padding: 60px 20px 30px 20px;
  }
  .syn-ft-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .syn-ft-col-news h2,
  .syn-ft-description,
  .syn-ft-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .syn-ft-input-group {
    margin: 0 auto;
  }
  .syn-ft-socials,
  .syn-ft-phone {
    justify-content: center;
  }
  .syn-ft-bottom {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .syn-ft-legal a {
    margin: 0 10px;
  }
}

/* footer section end  */

/* whatsapp icons  */
.wa-float-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366; /* WhatsApp Green */
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.wa-float-btn:hover {
  background-color: #128c7e; /* Darker green on hover */
  transform: scale(1.1);
}

.wa-my-float {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Mobile Responsive adjustments */
@media (max-width: 768px) {
  .wa-float-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

/* whatsapp icons  */
