/* ====================================================
   Sky Electronics And Furniture - style.css
   ==================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2540;
  --accent: #e8a020;
  --accent-light: #f5c84a;
  --light-bg: #f8f9fb;
  --text-dark: #1a2636;
  --text-muted: #6b7c93;
  --white: #ffffff;
  --border: #e2e8f0;
  --card-shadow: 0 4px 24px rgba(26, 58, 92, 0.10);
  --card-hover-shadow: 0 12px 40px rgba(26, 58, 92, 0.18);
  --radius: 14px;
  --transition: 0.32s cubic-bezier(.4, 0, .2, 1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---- Utility ---- */
.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.07rem;
  color: var(--text-muted);
  max-width: 560px;
}

.accent-text {
  color: var(--accent);
}

.accent-bar {
  display: inline-block;
  width: 52px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
  margin-bottom: 14px;
}

.btn-primary-custom {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(232, 160, 32, 0.3);
  letter-spacing: 0.02em;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 160, 32, 0.4);
  color: var(--primary-dark);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ---- Topbar ---- */
.topbar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  padding: 7px 0;
  border-bottom: 2px solid var(--accent);
}

.topbar a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--accent-light);
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar-item i {
  color: var(--accent);
  font-size: 0.9rem;
}

/* ---- Navbar ---- */
.main-navbar {
  background: var(--white);
  box-shadow: 0 2px 18px rgba(26, 58, 92, 0.09);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.main-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-wrap {
  background: var(--primary);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-wrap i {
  color: var(--accent);
  font-size: 1.4rem;
}

.brand-text-main {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.15;
}

.brand-text-sub {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-navbar .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark) !important;
  padding: 24px 14px !important;
  position: relative;
  transition: color var(--transition);
}

.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--primary) !important;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ---- Hero / Carousel ---- */
#heroCarousel {
  position: relative;
}

.hero-slide {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.48);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 680px;
  animation: heroFadeIn 0.9s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 160, 32, 0.18);
  border: 1.5px solid var(--accent);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-badge i {
  font-size: 0.85rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--accent);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.08rem;
  margin-bottom: 34px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background var(--transition);
  margin: 0 18px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--accent);
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 4px;
}

.carousel-indicators .active {
  background: var(--accent);
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--primary);
  padding: 32px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

/* ---- About ---- */
.about-section {
  background: var(--light-bg);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.about-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.about-badge-float span {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.about-feature-icon {
  background: rgba(26, 58, 92, 0.09);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon i {
  color: var(--primary);
  font-size: 1.1rem;
}

.about-feature-text h6 {
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 2px;
}

.about-feature-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Finance Partners ---- */
.finance-section {
  background: var(--white);
  padding: 40px 0;
}

.finance-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.finance-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.finance-pill {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-dark);
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.finance-pill:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ---- Products / Services ---- */
.products-section {
  background: var(--light-bg);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-6px);
  border-color: var(--accent);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.07);
}

.product-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h5 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 7px;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin: 0;
}

.product-emi {
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-emi i {
  font-size: 0.85rem;
}

/* ---- Gallery Section ---- */
.gallery-section {
  background: #fff;
  padding: 60px 0;
}

/* Heading */
.section-title {
  font-size: 28px;
  font-weight: 700;
}

.accent-text {
  color: #ff6600;
}

.section-subtitle {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}

/* Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mobile: 2 images */
  gap: 14px;
}

/* Tablet */
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 images */
  }
}

/* Gallery Item */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

/* Equal Image Size */
.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1; /* 🔥 sab images equal */
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover Zoom */
.gallery-item:hover img {
  transform: scale(1.07);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

/* Show overlay */
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Icon */
.gallery-overlay i {
  color: #fff;
  font-size: 20px;
}

/* ---- Why Choose Us ---- */
.why-section {
  background: var(--primary-dark);
}

.why-section .section-title {
  color: var(--white);
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  background: rgba(232, 160, 32, 0.12);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232, 160, 32, 0.15);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.why-card-icon i {
  color: var(--accent);
  font-size: 1.4rem;
}

.why-card h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin: 0;
}

/* ---- EMI / Finance Section ---- */
.emi-section {
  background: linear-gradient(135deg, var(--accent) 0%, #f5c84a 100%);
}

.emi-section .section-title {
  color: var(--primary-dark);
}

.emi-section .section-subtitle {
  color: rgba(26, 58, 92, 0.75);
}

.emi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.13);
  transition: var(--transition);
}

.emi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.emi-card-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.emi-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
}

.emi-card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ---- Testimonials ---- */
.testimonial-section {
  background: var(--light-bg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--card-shadow);
  border: 1.5px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--card-hover-shadow);
  border-color: var(--accent);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.97rem;
}

.testimonial-loc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---- Contact ---- */
.contact-section {
  background: var(--white);
}

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 36px 30px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-card .subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-icon {
  background: rgba(232, 160, 32, 0.18);
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--accent);
  font-size: 1rem;
}

.contact-detail h6 {
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  color: var(--white);
  font-size: 0.96rem;
  margin: 0;
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--accent-light);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1.5px solid var(--border);
  height: 360px;
}

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

.contact-hours {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-hours h6 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Footer ---- */
.main-footer {
  background: #0a1c36;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--accent);
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- Scroll To Top ---- */
#scrollToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 160, 32, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 999;
}

#scrollToTop.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

#scrollToTop:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .hero-slide {
    height: 75vw;
    max-height: 600px;
  }

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

  .main-navbar .nav-link {
    padding: 12px 14px !important;
  }

  .main-navbar .nav-link::after {
    bottom: 4px;
  }

  .about-img-wrap img {
    height: 320px;
  }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		Display:none!important
	}
	.cu-jf-cntr{
		justify-content:center;
	}
  .section-pad {
    padding: 60px 0;
  }

  .hero-slide {
    height: 85vw;
    max-height: 480px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

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

  .gallery-item.tall {
    grid-row: span 1;
  }

  .stats-bar .stat-divider {
    display: none;
  }

  .topbar .d-none-xs {
    display: none !important;
  }

  .map-wrap {
    height: 260px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 11px 22px;
    font-size: 0.92rem;
  }

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

  .emi-section .row .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}



.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* WhatsApp */
.floating-icons .whatsapp {
  background: #25D366;
}

/* Call */
.floating-icons .call {
  background: #007bff;
}

.floating-icons a:hover {
  transform: scale(1.1);
}