﻿:root {
  /* Color palette - Modern Dark Tech */
  --bg-dark: #020617;
  /* Slate 950 */
  --bg-main: #0f172a;
  /* Slate 900 */
  --bg-light: #1e293b;
  /* Slate 800 */
  --bg-muted: #334155;
  /* Slate 700 */

  /* Accents */
  --primary: #38bdf8;
  /* Sky 400 */
  --primary-hover: #0ea5e9;
  /* Sky 500 */
  --primary-soft: rgba(56, 189, 248, 0.15);
  --accent: #818cf8;
  /* Indigo 400 */

  /* Text */
  --text-main: #f8fafc;
  /* Slate 50 */
  --text-muted: #94a3b8;
  /* Slate 400 */

  --border-subtle: #1e293b;
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --transition-fast: 0.2s ease;
  --transition-med: 0.3s ease;

  --nav-height: 60px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top center, #1e293b, #0f172a 60%, #020617);
  min-height: 100vh;
  padding-top: 36px;
  /* Space for the fixed offer bar */
}

/* ================= OFFER BANNER ================= */
.offer-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, #fcd34d, #f59e0b, #fcd34d);
  /* Gold Gradient */
  color: #0f172a;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2000;
  /* Above everything */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.offer-text {
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: marquee 15s linear infinite;
  padding-left: 100%;
  /* Start from right */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

#f5f7fa img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header.center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.section-header h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.7rem, 2vw + 1rem, 2rem);
  letter-spacing: -0.03em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-weight: 650;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}


/* ================= NAVBAR ================= */

/*.nav-search input {*/
/*  padding: 6px 12px;*/
/*  border-radius: 999px;*/
/*  border: 1px solid #e5e7eb;*/
/*  font-size: 0.85rem;*/
/*  outline: none;*/
/*  transition: border-color 0.2s ease, box-shadow 0.2s ease;*/
/*}*/

/*.nav-search input:focus {*/
/*  border-color: #ca8a04;*/
/*  box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.15);*/
/*}*/



.navbar {
  padding: 14px 0;
  /* gives logo room */
}


.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  margin-right: 30px;
}



/* ================= LOGO FIX ================= */

.logo-img {
  height: 70px;
  width: auto;
  display: block;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Mobile */
@media (max-width: 768px) {
  .logo-img {
    height: 56px;
  }
}





.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 30% 70% 65% 35%;
  background: radial-gradient(circle at 30% 20%, #bbf7d0 0, var(--primary) 55%);
  display: grid;
  place-items: center;
  color: #ecfdf5;
  font-weight: 700;
}

.logo-text {
  font-weight: 650;
  letter-spacing: -0.04em;
}

.logo-text span:last-child {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 1rem 1.3rem;
  font-size: 1rem;
  color: var(--text-main);
}



.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: #ca8a04;
}


.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  height: 2px;
  width: 18px;
  background: #0f172a;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}


/* Spring Animation for Toggle */
.nav-toggle {
  transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.nav-toggle.open {
  transform: rotate(90deg);
  background: #f1f5f9;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 22px;
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 22px;
}

/* ================= TOP SOCIAL ICONS ================= */
.nav-socials {
  display: flex;
  gap: 10px;
  margin-left: 15px;
}

.nav-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #475569;
  transition: all 0.25s ease;
}

.nav-socials a:hover {
  background: #ca8a04;
  color: #ffffff;
  border-color: transparent;
}

/* .nav-socials a:hover {
  background: #1b8a6b;
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
} */


/* ================= HERO ================= */
.hero {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.15));
}


.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}



.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3.4vw + 1rem, 3.1rem);
  letter-spacing: -0.04em;
  margin: 0.35rem 0 0.6rem;
}

.hero-subtitle {
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.7rem;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition-med), color var(--transition-med),
    border-color var(--transition-med), box-shadow var(--transition-med),
    transform 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ecfdf5;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.28);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.3);
}

.btn.ghost {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn.ghost:hover {
  background: var(--primary);
  color: #1f1512;
  /* Dark text on gold bg */
}

.btn.full-width {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: 0.85rem;
}

.hero-meta-number {
  display: block;
  font-size: 1.45rem;
  font-weight: 650;
}

.hero-meta-label {
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1.2rem;
}

.hero-card {
  border-radius: 30px;
  background: var(--bg-light);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem;
}

.hero-main-img {
  background-image: url("Home.png");
  /* NEW IMAGE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-main-card {
  width: 420px;
  height: 520px;
  border-radius: 26px;
  overflow: hidden;
}







.hero-main-overlay {
  position: absolute;
  inset: auto 1.1rem 1.1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.88);
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.8rem;
}

.hero-main-overlay p {
  color: #f9fafb;
  margin: 0;
  font-weight: 600;
}

.hero-main-overlay span {
  color: #cbd5f5;
}

.hero-secondary-card {
  align-self: flex-end;
  max-width: 260px;
  border-radius: 22px;
  background: linear-gradient(135deg,
      rgba(56, 189, 248, 0.15),
      rgba(30, 64, 175, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-secondary-card p {
  margin: 0;
  font-weight: 600;
  color: var(--text-main);
}

.hero-secondary-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero {
  background: radial-gradient(circle at center,
      rgba(56, 189, 248, 0.1),
      rgba(2, 6, 23, 0.8)),
    var(--bg-dark);
  color: #f9fafb;
}



.hero-content {
  text-align: left;
  align-items: flex-start;
}



@media (max-width: 768px) {
  .hero-logo {
    width: 180px;
  }
}

/*.hero-logo {*/
/*  filter: brightness(0) invert(1);*/
/*}*/


.hero h1,
.hero p,
.hero span {
  color: #f9fafb;
}

.hero-title span {
  font-weight: 500;
  font-size: 0.85em;
  opacity: 0.9;
}


.hero-highlights {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: #f1f1f1;
}

.hero-highlights div {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 20px;
}


/* ================= REVEAL ANIMATIONS ================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--transition-med),
    transform 0.6s var(--transition-med);
}

/* .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
} */

/* ===== ABOUT SECTION (FINAL CLEAN FIX) ===== */
/* ===== ABOUT SECTION â€“ WITHOUT IMAGE ===== */

.about-no-image {
  max-width: 900px;
  margin: 0 auto;
}

.about-no-image .section-body {
  max-width: 100%;
}

/* Keep cards in 2 columns */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}

/* Mobile fix */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= SERVICES ================= */
.services {
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.05) 0, transparent 55%),
    var(--bg-main);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med), background var(--transition-med);
  color: var(--text-main);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
  background: var(--bg-muted);
  /* Slightly lighter chocolate */
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}

.card-icon span {
  font-size: 1.1rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
}

/* ================= PROJECTS / GALLERY ================= */
.projects {
  background: var(--bg-light);
}

.gallery-categories {
  display: grid;
  gap: 2.2rem;
}

.gallery-category h3 {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  cursor: pointer;
  isolation: isolate;
}

.gallery-img {
  aspect-ratio: 4 / 3;
  transition: transform var(--transition-med), opacity var(--transition-med);
}

/* Each background below represents a placeholder image for a specific
   service category (modular kitchen, TV unit, etc.). Replace with your
   own project photos when available. */
.kitchen-1 {
  background: url('modularkitchen1.jpg') center/cover no-repeat;
}

.kitchen-2 {
  background: url('modularkitchen2.jpg') center/cover no-repeat;
}

.tvunit-1 {
  background: url('TVUnit1.jpg') center/cover no-repeat;
}

.tvunit-2 {
  background: url('living1.jpg') center/cover no-repeat;
}

.wardrobe-1 {
  background: url('Wardrobes1.jpg') center/cover no-repeat;
}

.wardrobe-2 {
  background: url('Wordrobes2.jpg') center/cover no-repeat;
}

.ceiling-1 {
  background: linear-gradient(135deg,
      rgba(56, 189, 248, 0.2),
      rgba(59, 130, 246, 0.5)),
    url('https://images.pexels.com/photos/3705528/pexels-photo-3705528.jpeg?auto=compress&cs=tinysrgb&w=800') center/cover no-repeat;
}

.ceiling-2 {
  background: linear-gradient(135deg,
      rgba(45, 212, 191, 0.25),
      rgba(30, 64, 175, 0.6)),
    center/cover no-repeat;
}

/* NEW LIGHTING IMAGES */
.lighting-new-1 {
  background: url('Cieling1.jpg') center/cover no-repeat;
}

.lighting-new-2 {
  background: url('lighting2.jpg') center/cover no-repeat;
}

/* SEE MORE LINK */
.gallery-more-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.gallery-more-link:hover {
  border-bottom-color: var(--primary);
  transform: translateX(4px);
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 0.7rem 0.9rem 0.8rem;
  background: linear-gradient(to top,
      rgba(15, 23, 42, 0.92),
      rgba(15, 23, 42, 0.1));
  color: #e5e7eb;
  font-size: 0.8rem;
}

.gallery-overlay p {
  margin: 0;
  font-weight: 600;
  color: #f9fafb;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

/* ================= WHY CHOOSE US ================= */
.why-us {
  background: radial-gradient(circle at top right, rgba(129, 140, 248, 0.08) 0, var(--bg-muted) 55%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.why-card {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med);
  color: var(--text-main);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
}

.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  margin-bottom: 0.7rem;
}

.why-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  background: var(--bg-main);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.testimonial-quote {
  font-style: italic;
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.testimonial-name {
  margin: 0;
  font-weight: 600;
  color: var(--text-main);
}

.testimonial-meta {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
}


/* ================= TRUSTED PARTNERS ================= */
.partners {
  background: var(--bg-main);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.partner-item {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-item img {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  display: block;
  background: #ffffff;
  /* White card for logos */
  padding: 8px 12px;
  border-radius: 6px;
  filter: grayscale(100%) opacity(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover Effects */
.partner-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
}

@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= CONTACT ================= */
.contact {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: stretch;
}

.contact-info-card {
  padding: 1.6rem 1.5rem 1.7rem;
  border-radius: var(--radius-lg);
  background: #0f172a;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.contact-value {
  display: block;
  margin-top: 0.15rem;
  color: var(--text-main);
}

.contact-value:hover {
  color: var(--primary);
}

.contact-form {
  padding: 1.6rem 1.5rem 1.7rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  color: #1e293b;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
  background: #ffffff;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.2);
}

.error-message {
  display: block;
  min-height: 0.9rem;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #ef4444;
}

.form-success {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  min-height: 1rem;
  color: #166534;
}

.contact-form .btn.primary {
  background: linear-gradient(135deg, #22c55e, #14b8a6);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25);
  color: #fff;
}

.contact-form .btn.primary:hover {
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.35);
}

/* Select elements inside the light form */
.contact-form select {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast);
}

.contact-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
  background: #ffffff;
}

.contact-form select option {
  background: #ffffff;
  color: #0f172a;
}

.form-group.error select {
  border-color: #f97373;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.4);
}

/* ================= FOOTER ================= */
.footer {
  background: var(--bg-muted);
  border-top: 1px solid var(--border-subtle);
  padding: 18px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}


.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}


.footer-brand span#year {
  font-variant-numeric: tabular-nums;
}

.footer-contact span {
  white-space: nowrap;
}


.footer-contact a:hover {
  color: var(--primary);
}

.footer-socials {
  display: flex;
  gap: 0.55rem;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  transition: background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast), transform var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--primary);
  color: #ecfdf5;
  border-color: transparent;
  transform: translateY(-1px);
}

/* ================= WHATSAPP FLOAT BUTTON ================= */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
  color: #ecfdf5;
  font-weight: 700;
  font-size: 28px;
  border: none;
  z-index: 60;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.5);
  background: #16a34a;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.5);
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.whatsapp-icon {
  letter-spacing: 0.08em;
}

/* ================= UTILITIES & RESPONSIVE ================= */
@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .two-column,
  .cards-grid,
  .gallery-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}



@media (max-width: 480px) {
  .container {
    width: min(100% - 1.75rem, 480px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ================= SCROLL REVEAL ANIMATION ================= */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.logo-img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

/* === FORCE NAVBAR LOGO VISIBILITY === */

.navbar .logo-img {
  height: 72px !important;
  /* clearly visible */
  width: auto !important;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

/* Mobile fix */
@media (max-width: 768px) {
  .navbar .logo-img {
    height: 60px !important;
  }
}




.hero-highlights {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: #f1f1f1;
}

/*.hero-highlights span {*/
/*  background: rgba(255,255,255,0.08);*/
/*  padding: 6px 12px;*/
/*  border-radius: 20px;*/
/*}*/




@media (max-width: 768px) {
  .hero-logo {
    width: 180px;
  }
}



/* ===== HERO LOGO FINAL FIX ===== */

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* FORCE LEFT */
  text-align: left;
}

.hero-logo {
  width: 280px;
  /* ðŸ”¥ increase size */
  max-width: none;
  margin: 0 0 18px 0;
  /* remove centering */
  display: block;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .hero-logo {
    width: 140px;
  }
}



/* ===== NAV MENU ALIGN RIGHT + GAP FIX ===== */

.nav-container {
  display: flex;
  align-items: center;
}

/* Push menu to right */
.nav-links {
  margin-left: auto;
  /* ðŸ”¥ moves menu to right */
  display: flex;
  align-items: center;
  gap: 22px;
  /* ðŸ”¥ reduce gap */
}

/* Reduce padding inside links */
.nav-links a {
  padding: 8px 6px;
  /* ðŸ”¥ tighter spacing */
  font-size: 0.95rem;
}



/* ===== NAVBAR HEIGHT REDUCE ===== */

.navbar {
  padding: 10px 0;
  /* â†“ was too large */
  min-height: 52px;
  /* controlled height */
}

.nav-container {
  height: 52px;
}

/* Reduce logo height so it fits */
.logo-img {
  height: 20px;
  /* adjust if needed */
}

/* Reduce menu link height */
.nav-links a {
  padding: 6px 4px;
  /* â†“ vertical padding */
  line-height: 1.2;
}


@media (max-width: 768px) {
  .navbar {
    min-height: 48px;
  }

  .logo-img {
    height: 36px;
  }
}


/* ================= MOBILE NAV FIX ================= */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    z-index: 1101;
  }

  .nav-links {
    position: fixed;
    top: 36px;
    /* Below offer bar */
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--bg-muted);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0;
    z-index: 1100;
    /* Ensures menu is above hero content */
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
    font-size: 1.1rem;
    color: #f8fafc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open a {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered Delay for Menu Items */
  .nav-links.open a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.open a:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.open a:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.open a:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.open a:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links.open a:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-links.open a:nth-child(7) {
    transition-delay: 0.4s;
  }

  .nav-cta {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
}

/* ================= SHOW MORE FUNCTIONALITY ================= */
.gallery-more-content {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.gallery-more-content.show {
  display: grid;
}

@media (max-width: 768px) {
  .gallery-more-content {
    grid-template-columns: 1fr;
  }
}

.gallery-more-link {
  display: block;
  text-align: left;
  margin-top: 1rem;
  width: 100%;
  color: var(--primary);
  background: var(--bg-light);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
  font-weight: 600;
}

.gallery-more-link:hover {
  background: var(--bg-muted);
  color: #fff;
}

/* ================= ADDITIONAL PROJECT IMAGES ================= */

/* Modular Kitchens (3-7) */
.kitchen-3 {
  background: url('modularkitchen3.jpg') center/cover no-repeat;
}

.kitchen-4 {
  background: url('modularkitchen4.jpg') center/cover no-repeat;
}

.kitchen-5 {
  background: url('modularkitchen5.jpg') center/cover no-repeat;
}

.kitchen-6 {
  background: url('modularkitchen6.jpg') center/cover no-repeat;
}

.kitchen-7 {
  background: url('modularkitchen7.jpg') center/cover no-repeat;
}

/* TV Units (3-7) */
.tvunit-3 {
  background: url('TVUnit3.jpg') center/cover no-repeat;
}

.tvunit-4 {
  background: url('TVUnit4.jpg') center/cover no-repeat;
}

.tvunit-5 {
  background: url('TVUnit5.jpg') center/cover no-repeat;
}

.tvunit-6 {
  background: url('TVUnit6.jpg') center/cover no-repeat;
}

.tvunit-7 {
  background: url('TVUnit7.jpg') center/cover no-repeat;
}

/* Living Room (2-4) */
.living-2 {
  background: url('living2.jpg') center/cover no-repeat;
}

.living-3 {
  background: url('living3.jpg') center/cover no-repeat;
}

.living-4 {
  background: url('living4.jpg') center/cover no-repeat;
}

/* Wardrobes (3-6) */
.wardrobe-3 {
  background: url('Wardrobes3.jpg') center/cover no-repeat;
}

.wardrobe-4 {
  background: url('Wardrobes4.jpg') center/cover no-repeat;
}

.wardrobe-5 {
  background: url('Wardrobes5.jpg') center/cover no-repeat;
}

.wardrobe-6 {
  background: url('Wardrobes6.jpg') center/cover no-repeat;
}

/* Ceilings (2-4) */
.ceiling-new-2 {
  background: url('Cieling2.jpg') center/cover no-repeat;
}

.ceiling-new-3 {
  background: url('Cieling3.jpg') center/cover no-repeat;
}

.ceiling-new-4 {
  background: url('Cieling4.jpg') center/cover no-repeat;
}

/* Lighting (3-5 + 1 original) */
.lighting-new-3 {
  background: url('lighting3.jpg') center/cover no-repeat;
}

.lighting-new-4 {
  background: url('lighting4.jpg') center/cover no-repeat;
}

.lighting-new-5 {
  background: url('lighting5.jpg') center/cover no-repeat;
}

.lighting-original-1 {
  background: url('lighting1.jpg') center/cover no-repeat;
}

/* ================= CONTACT SECTION REDESIGN ================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background: var(--chocolate-mid);
  /* Dark Warm Slate */
  padding: 2.5rem;
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.6rem;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  /* Gold */
  font-weight: 600;
}

.contact-value {
  color: #e5e7eb;
  line-height: 1.6;
  font-size: 1rem;
}

.contact-value a {
  transition: color 0.2s;
}

.contact-value a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-card {
    padding: 1.8rem;
  }
}



/* ================= MOBILE HERO FIX ================= */
@media screen and (max-width: 768px) {

  /* 1. Fix Layout: Stack Text on Top, Image on Bottom */
  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    padding-top: 1rem;
    gap: 2rem;
  }

  /* 2. Ensure Image Card fits the screen */
  .hero-main-card {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/5;
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-img {
    height: 100% !important;
    object-fit: cover;
  }

  /* 3. Control Order: Text first (0), Image second (1) */
  .hero-content {
    order: 0 !important;
    width: 100%;
    text-align: left;
  }

  .hero-visual {
    order: 1 !important;
    width: 100%;
  }

  /* 4. Make "Transforming..." Small (Tagline style) */
  .hero-title {
    font-size: 0.75rem !important;
    /* Smaller size */
    color: #fbbf24 !important;
    /* Premium Gold */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.2rem !important;
    /* Almost no gap */
    line-height: 1.4;
    display: block;
  }

  /* 5. Make "GruhaSparsha..." Big (Title style) */
  .hero-content .eyebrow {
    font-size: 1.8rem !important;
    /* Reduced from 2.4rem */
    color: #fff !important;
    text-transform: none !important;
    line-height: 1.2;
    font-weight: 700;
    display: block;
    margin-top: 0 !important;
    /* Remove browser default margin */
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
  }

  /* 6. Stack Buttons & Full Width */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 1.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
    font-size: 0.95rem;
  }
}

/* ================= GLOBALLY SWAP TEXT SIZES ================= */
/* 1. Make "Transforming..." Small */
.hero-content h1.hero-title {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
  /* Reduced global size */
  color: #fbbf24;
  /* Premium Gold */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.2rem;
  /* Reduced Gap */
  font-weight: 700;
}

/* 2. Make "GruhaSparsha..." Big */
.hero-content .eyebrow {
  font-size: clamp(1.8rem, 3.5vw + 1rem, 2.8rem);
  /* Reduced global size */
  color: #fff;
  text-transform: none;
  font-weight: 700;
  margin-top: 0;
  /* Remove browser default margin */
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* ================= PHONE FLOAT BUTTON ================= */
.phone-float {
  position: fixed;
  bottom: 96px;
  /* Above WhatsApp button */
  right: 24px;
  /* Aligned with WhatsApp button */
  width: 56px;
  height: 56px;
  background-color: #3b82f6;
  /* Blue 500 */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.phone-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  background: #2563eb;
  /* Blue 600 */
}

.phone-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.5);
  animation: phone-pulse 2s infinite;
  z-index: -1;
}

@keyframes phone-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

/* ================= CHECKMARK STYLING ================= */
.hero-highlights i {
  color: #a855f7;
  /* Purple */
  margin-right: 8px;
  font-size: 1.1em;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
  /* Purple Glow */
}

/* ================= FLOAT BUTTON TOOLTIPS ================= */
.float-tooltip {
  position: absolute;
  right: 64px;
  /* Position to the left of the button */
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: #0f172a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.float-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #0f172a;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.phone-float:hover .float-tooltip,
.whatsapp-float:hover .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Show tooltips on mobile on focus/active if needed, or keeping hidden to avoid clutter 
   since hover doesn't exist. If user wants them strictly visible 'popup', 
   we might need to change opacity: 1 default for mobile? 
   Let's keep hover logic for now as it's cleaner. */