/* ---------- Base ---------- */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0f172a;
  background: linear-gradient(180deg, #fbf6f6 0%, #f3f7fb 100%);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

/* Theme variables (tweak to match your logo) */
:root {
  --brand-gold: #c73534;
  --brand-dark: #6e2828;
  --caption-bg: #6e2828;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease-out, visibility 0s linear .5s;
  z-index: 99999;
  -webkit-transition: opacity .8s ease-out, visibility 0s linear .5s;
  -moz-transition: opacity .8s ease-out, visibility 0s linear .5s;
  -ms-transition: opacity .8s ease-out, visibility 0s linear .5s;
  -o-transition: opacity .8s ease-out, visibility 0s linear .5s;
}

#spinner.show {
  transition: opacity .8s ease-out, visibility 0s linear .0s;
  visibility: visible;
  opacity: 1;
}


/* ---------- Back to Top & Buttons ---------- */
#scrollProgress {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: conic-gradient(#c73534 0%, #e5e5e5 0%);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 99999;
}

#scrollProgress::after {
  content: "↑";
  width: 40px;
  height: 40px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
}

/** ---------- Navbar fixes (logo sizing + centering) ---------- */
/* ---------- Topbar ---------- */

.topbar-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.topbar-link i {
  color: #c73534;
}

.topbar-link:hover {
  color: #c73534;
}

.topbar {
  background: #fff8f2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  font-size: 0.95rem;
  color: #c73534;
  padding: 6px 0;
}

.topbar i {
  color: var(--brand-gold, #c73534);
}

/* ---------- Navbar base ---------- */
.site-header .navbar {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: none;
}

/* brand logo */
.brand-logo {
  max-height: 66px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-right: 12px;
}

/* nav items center aligned and spaced */
.navbar-nav {
  gap: 6px;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 600;
  padding: 10px 14px;
  letter-spacing: 0.2px;
  transition: color .18s ease, background .18s ease;
}

/* active / hover */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--brand-gold, #c73534);
  text-decoration: none;
}

.navbar-nav .nav-link.active {
 color: #c73534 !important;       
  font-weight: 700;   
  position: relative;
}

/* Dropdown adjustments */
.dropdown-menu {
  border-radius: 8px;
  padding: 8px 0;
  border: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
  color: #3b3b3b;
  padding: 8px 18px;
}

.dropdown-item:hover {
  background: rgba(199, 159, 109, 0.06);
  color: var(--brand-gold);
}

/* Navbar toggler (hamburger) style */
.navbar-toggler {
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* CTA button */
.btn-contact {
  background: var(--brand-gold, #c73534);
  color: #fff;
  padding: 10px 18px;
  border-radius: 28px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(199, 159, 109, 0.16);
  border: none;
}

.btn-contact:hover {
  transform: translateY(-2px);
}

/* mobile collapsed menu tweaks */
@media (max-width: 991.98px) {
  .navbar-nav {
    margin-top: 12px;
    margin-bottom: 12px;
    flex-direction: column;
    text-align: left;
  }

  .navbar-nav .nav-link {
    padding: 12px 6px;
  }

  .btn-contact.d-lg-none {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    display: block;
    text-align: center;
  }

  .topbar {
    display: none;
  }
}

/* sticky subtle background when scrolling */
.site-header.sticky-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(4px);
  transition: background .25s ease;
}



/* accessible focus outlines */
.nav-link:focus,
.btn-contact:focus,
.dropdown-item:focus {
  outline: 3px solid rgba(199, 159, 109, 0.18);
  outline-offset: 2px;
}


/*** Hero section spacing */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

/* ================= SLIDE ================= */
.carousel-item {
  position: relative;
  height: 92vh;
  min-height: 480px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.48));
  z-index: 1;
}

/* ================= CAPTION ================= */
.carousel-caption {
  position: absolute !important;
  top: 50% !important;
  right: 5% !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  width: 38% !important;
  display: flex !important;
  align-items: center !important;
  -webkit-transform: translateY(-50%) !important;
  -moz-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  -o-transform: translateY(-50%) !important;
}

.carousel-content {
  background: rgba(110, 40, 40, 0.75);
  padding: 36px 44px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

/* Text */
.carousel-content h4 {
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.85;
}

.carousel-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}

.carousel-content h1 span {
  color: #df0b0b;
}

.carousel-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

/* Button */
.btn.btn-cta {
  background: #c73534;
  color: #fff;
  padding: 12px 26px;
  border-radius: 28px;
  font-weight: 700;
  border: none;
}

/* ================= CONTROLS ================= */
.carousel-side-controls {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 10;
}

.side-btn {
  width: 56px;
  height: 56px;
  background: var(--brand-gold);
  color: #fff;
  border-radius: 8px;
  border: none;
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1200px) {
  .carousel-caption {
    width: 48% !important;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .carousel-item {
    height: 70vh;
  }

  .carousel-caption {
    width: 90% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
  }

  .carousel-content {
    padding: 28px;
  }

  .carousel-side-controls {
    display: none;
  }
}

/* ✅ MOBILE FIX (MOST IMPORTANT) */
@media (max-width: 576px) {

  .carousel-item {
    height: 60vh;
    min-height: 260px;
  }

  .carousel-caption {
    top: auto !important;
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 24px) !important;
  }

  .carousel-content {
    padding: 18px 20px;
    border-radius: 16px;
  }

  .carousel-content h1 {
    font-size: 1.45rem;
  }

  .carousel-content p {
    font-size: 0.9rem;
  }

  .btn.btn-cta {
    width: 100%;
  }
}

/** About Section */
.about-section {
  padding: 100px 0;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Content */
.about-tag {
  display: inline-block;
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 520px;
}

/* Features */
.about-features {
  display: flex;
  gap: 60px;
  margin: 30px 0;
}

.about-features ul {
  list-style: none;
  padding: 0;
}

.about-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #333;
}

.about-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: #c73534;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 60px;
  margin-top: 30px;
}

.stat h3 {
  color: #c73534;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat p {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: #6e2828;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-stats {
    gap: 30px;
  }
}

/* ================================
   MODERN WORK PROCESS SECTION
   ================================ */

.work-process-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-header {
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 800;
  color: #111;
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */
.process-card {
  position: relative;
  padding: 55px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.45s ease;
  overflow: hidden;
}

/* Step Number */
.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 52px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
}

/* Icon */
.process-icon {
  width: 60px;
  height: 60px;
  background: rgba(199, 53, 52, 0.12);
  color: #c73534;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 14px;
  margin-bottom: 26px;
}

/* Text */
.process-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.process-card p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #666;
}

/* Active (Middle) Card */
.process-card.active {
  background: linear-gradient(
    160deg,
    #c73534,
    #6e2828
  );
  transform: translateY(-14px);
  border: none;
}

.process-card.active h4,
.process-card.active p {
  color: #fff;
}

.process-card.active .process-icon {
  background: #fff;
  color: #c73534;
}

.process-card.active .step-number {
  color: rgba(255, 255, 255, 0.15);
}

/* Hover */
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card.active {
    transform: none;
  }

  .section-header h2 {
    font-size: 34px;
  }
}

/* ================================
   PROJECT CAROUSEL SECTION
   ================================ */

.project-carousel-section {
  padding: 100px 0;
  background: #ffffff;
}

.project-carousel-section .section-header {
  margin-bottom: 50px;
}

.project-carousel-section .section-tag {
  display: inline-block;
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.project-carousel-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #111;
}

/* Project Card */
.project-card {
  position: relative;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

/* Hover Zoom */
.project-card:hover img {
  transform: scale(1.1);
}

/* Swiper spacing */
.projectSwiper {
  padding-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .project-carousel-section h2 {
    font-size: 32px;
  }

  .project-card {
    height: 220px;
  }
}

/* ================================
  PERFECT PARTNER SECTION
================================ */
.perfect-partner-section {
  padding: 120px 0;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* ---------------- Content ---------------- */
.partner-tag {
  display: inline-block;
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 14px;
}

.partner-content h2 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;
}

.partner-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 480px;
  margin-bottom: 36px;
}

/* ---------------- Button ---------------- */
.btn-portfolio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c73534, #6e2828);
  color: #fff;
  padding: 14px 42px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 14px 35px rgba(199, 53, 52, 0.35);
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-portfolio:hover {
  background: linear-gradient(135deg, #6e2828, #c73534);
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(199, 53, 52, 0.45);
  color: #fff;
}

/* ---------------- Images Layout ---------------- */
.partner-images {
  position: relative;
  width: 100%;
  height: 460px;
}

/* Base image */
.partner-images .image-box {
  position: absolute;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}


/* Main image */
.image-1 {
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1765904810/luxurious-modern-living-room-with-blue-wall-white-sofa_rnhhqe.jpg');
  width: 62%;
  height: 62%;
  top: 0;
  right: 0;
  z-index: 3;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* Back image */
.image-2 {
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1765904714/elegant-dining-room-interior-with-modern-furniture_o4vmqj.jpg');
  width: 62%;
  height: 62%;
  bottom: 0;
  left: 0;
  z-index: 1;
  /* opacity: 0.65; */
}

/* Mid image */
.image-3 {
  background-image: url('https://res.cloudinary.com/dzcjlkjol/image/upload/v1765904709/3d-rendering-modern-dining-room-living-room-with-luxury-decor_yvzzez.jpg');
  width: 62%;
  height: 62%;
  bottom: 14%;
  right: 18%;
  z-index: 2;
  /* opacity: 0.85; */
}

/* Hover only for main image */
.image-1:hover {
  transform: scale(1.03);
}

@media (max-width: 1200px) {
  .partner-images {
    height: 420px;
  }

  .image-1 {
    width: 65%;
    height: 65%;
  }

  .image-2 {
    width: 46%;
    height: 46%;
  }

  .image-3 {
    width: 38%;
    height: 38%;
  }
}

@media (max-width: 992px) {
  .partner-images {
    height: 360px;
  }

  .image-1 {
    width: 70%;
    height: 60%;
    right: 0;
  }

  .image-2 {
    width: 55%;
    height: 45%;
  }

  .image-3 {
    display: none; /* Remove clutter */
  }
}

@media (max-width: 768px) {
  .partner-images {
    height: auto;
  }

  .partner-images .image-box {
    position: relative;
    width: 100%;
    height: 240px;
    margin-bottom: 20px;
    opacity: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .image-3 {
    display: none;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .partner-images .image-box {
    height: 200px;
    border-radius: 18px;
  }
}
/* ---------------- Responsive ---------------- */
@media (max-width: 992px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-content h2 {
    font-size: 34px;
  }
}

/* ================================
   WHY CHOOSE US SECTION
   ================================ */

.why-choose-section {
  padding: 120px 0;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* -------- Video Box -------- */
.video-box {
  width: 100%;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* -------- Content -------- */
.why-tag {
  display: inline-block;
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 14px;
}

.why-content h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;
}

.why-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 520px;
  margin-bottom: 32px;
}

/* -------- Features -------- */
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.why-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #333;
  margin-bottom: 14px;
}

.why-features li::before {
  content: "✔";
  width: 22px;
  height: 22px;
  background: #c73534;
  color: #fff;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------- Responsive -------- */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .video-box {
    height: 320px;
  }

  .why-content h2 {
    font-size: 34px;
  }

  .why-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .video-box {
    height: 220px;
    border-radius: 16px;
  }
}

/* ================================
  TESTIMONIALS SECTION
================================ */
.testimonials-section {
  padding: 120px 0;
  background: #fafafa;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Header */
.section-header {
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* Swiper */
.testimonialSwiper {
  padding-bottom: 50px;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 100%;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 70px;
  color: rgba(199, 53, 52, 0.12);
  font-family: serif;
}

/* Stars */
.stars {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 18px;
}

/* Text */
.testimonial-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Client */
.client-name {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.client-type {
  font-size: 14px;
  color: #888;
}

/* Pagination */
.swiper-pagination-bullet {
  background: #c73534;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 34px;
  }
}

/* ================================
  PAGE BANNER / HERO SECTION
================================ */
.aboutpg-banner-section {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1554995207-c18c203602cb");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}

.aboutpg-banner-tag {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #c73534;
}

.aboutpg-banner-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 800;
  margin: 15px 0;
}

.aboutpg-banner-content p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
  color: #eaeaea;
}
 /* Director Banner */
.director-banner-section {
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}

.director-banner-tag {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #c73534;
}

.director-banner-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 800;
  margin: 15px 0;
}

.director-banner-content p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
  color: #eaeaea;
}

/* Gallery BAnner */
.gallerypg-banner-section {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1505691938895-1758d7feb511");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}

.gallerypg-banner-tag {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #c73534;
}

.gallerypg-banner-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 800;
  margin: 15px 0;
}

.gallerypg-banner-content p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
  color: #eaeaea;
}

/* Contact Banner */
.contactpg-banner-section {
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("https://images.unsplash.com/photo-1525182008055-f88b95ff7980");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}

.contactpg-banner-tag {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #c73534;
}

.contactpg-banner-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 800;
  margin: 15px 0;
}

.contactpg-banner-content p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
  color: #eaeaea;
}


/* ================================
  CTA SECTION WITH BACKGROUND IMAGE
================================ */

.cta-section {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 14, 14, 0.736),
    rgba(48, 46, 46, 0.784)
  );
  z-index: 1;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
}

.cta-content h2 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 36px;
}

/* CTA Button */
.btn-cta-main {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 16px 42px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.35s ease;
}

.btn-cta-main:hover {
  background: #000;
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
  color: #c73534;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-content h2 {
    font-size: 34px;
  }

  .cta-section {
    padding: 90px 0;
  }
}

@media (max-width: 576px) {
  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 15px;
  }
}

/* ================================
   GALLERY SECTION
   ================================ */

.gallery-section {
  padding: 120px 0;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Section Header */
.section-header {
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.7)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-overlay span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

/* Hover Effects */
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   DIRECTOR MESSAGE SECTION
   =============================== */

.director-message-section {
  padding: 100px 0;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.director-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* Image */
.director-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* Content */
.director-tag {
  display: inline-block;
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.director-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 22px;
  color: #111;
}

.director-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* Signature */
.director-signature h3 {
  font-size: 26px;
  font-weight: 700;
  color: #111;
}

.director-signature h4 {
  margin-top: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

@media (max-width: 992px) {
  .director-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .director-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .director-message-section {
    padding: 70px 0;
  }

  .director-content h2 {
    font-size: 28px;
  }
}

/* ===============================
   CONTACT SECTION
   =============================== */

.contact-section {
  padding: 100px 0;
  background: #fafafa;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Contact Info */
.contact-tag {
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}

.contact-info h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #111;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 15px;
}

/* Icon */
.contact-details i {
  color: #c73534;
  font-size: 16px;
  min-width: 18px;
}

/* Link styling */
.contact-details a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.contact-details a:hover {
  color: #c73534;
  text-decoration: underline;
}

/* Mobile tap feedback */
@media (hover: none) {
  .contact-details a:hover {
    text-decoration: none;
  }
}


/* Social Icons */
.contact-socials {
  display: flex;
  gap: 14px;
}

.contact-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-socials a:hover {
  background: #c73534;
  transform: translateY(-3px);
}

/* ===============================
   CONTACT FORM
   =============================== */

.contact-form {
  background: #ffffff;
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c73534;
  outline: none;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #c73534, #6e2828);
  color: #fff;
  padding: 14px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(199, 53, 52, 0.4);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-form {
    padding: 30px;
  }
}

/* ===============================
  HOME INTERIOR DETAIL SECTION
=============================== */
.homeint-banner-section {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}

.homeint-banner-tag {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #c73534;
  text-transform: uppercase;
}

.homeint-banner-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  margin: 15px 0;
}

.homeint-banner-content p {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.8;
  color: #eaeaea;
}


.service-detail-section {
  padding: 100px 0;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Intro */
.service-intro {
  max-width: 820px;
  margin-bottom: 70px;
}

.service-tag {
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.service-intro h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.service-intro p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

/* Feature Cards */
.service-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.feature-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  padding: 34px 32px 38px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
  overflow: hidden;
}

/* Top brand accent line */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c73534, #6e2828);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Soft glow overlay */
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
      rgba(199,53,52,0.08),
      transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.12);
  background: #ffffff;
}

.feature-card:hover::before,
.feature-card:hover::after {
  opacity: 1;
}

/* Heading */
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
  position: relative;
}

/* Underline animation */
.feature-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: #c73534;
  margin-top: 10px;
  transition: width 0.35s ease;
}

.feature-card:hover h3::after {
  width: 60px;
}

/* Description */
.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-top: 12px;
}

/* Optional icon support (future-proof) */
.feature-card i {
  font-size: 36px;
  color: #c73534;
  margin-bottom: 18px;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-card {
    padding: 28px;
  }
}

/* Process */
.service-process h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step {
  padding: 25px;
  border-left: 4px solid #c73534;
  background: #fafafa;
  border-radius: 14px;
}

.step span {
  font-size: 26px;
  font-weight: 800;
  color: #c73534;
  display: block;
  margin-bottom: 10px;
}

.step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.step p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .service-features,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-intro h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .service-features,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .service-detail-section {
    padding: 70px 0;
  }
}

/* ===============================
  HOME INTERIOR SHOWCASE SECTION
=============================== */

.project-showcase-section {
  padding: 100px 0;
  background: #fafafa;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Heading */
.section-heading {
  max-width: 800px;
  margin-bottom: 60px;
}

.section-tag {
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}

.section-heading p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

/* Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.75)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-overlay h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.project-overlay span {
  font-size: 14px;
  opacity: 0.85;
}

/* Hover Effects */
.project-card:hover img {
  transform: scale(1.08);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

@media (max-width: 1200px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-showcase-section {
    padding: 70px 0;
  }
}


/* ===============================
  OFFICE INTERIOR PAGE
=============================== */
.officeint-banner-section {
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("https://images.unsplash.com/photo-1524758631624-e2822e304c36");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}

.officeint-banner-tag {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #c73534;
}

.officeint-banner-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  margin: 15px 0;
}

.officeint-banner-content p {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.8;
  color: #eaeaea;
}


.office-service-section {
  padding: 100px 0;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Intro */
.office-intro {
  max-width: 820px;
  margin-bottom: 60px;
}

.service-tag {
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.office-intro h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #111;
}

.office-intro p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

/* Image Grid */
.office-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.office-image {
  border-radius: 22px;
  overflow: hidden;
}

.office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.office-image:hover img {
  transform: scale(1.08);
}

/* Services */
.office-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 90px;
}
.office-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
  padding: 36px 34px 38px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
  overflow: hidden;
}

/* subtle accent line */
.office-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c73534, #6e2828);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* hover effect */
.office-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.12);
  background: #ffffff;
}

.office-card:hover::before {
  opacity: 1;
}

/* title */
.office-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
  position: relative;
}

/* small underline accent */
.office-card h3::after {
  content: "";
  width: 36px;
  height: 2px;
  background: #c73534;
  display: block;
  margin-top: 10px;
  transition: width 0.35s ease;
}

.office-card:hover h3::after {
  width: 56px;
}

/* description */
.office-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-top: 14px;
}

/* optional icon support (if you add icons later) */
.office-card i {
  font-size: 34px;
  color: #c73534;
  margin-bottom: 18px;
  display: inline-block;
}

/* responsive fine-tuning */
@media (max-width: 768px) {
  .office-card {
    padding: 30px;
  }
}

/* Process */
.office-process h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-steps .step {
  background: #fafafa;
  padding: 28px;
  border-radius: 16px;
  border-left: 4px solid #c73534;
}

.process-steps .step span {
  font-size: 26px;
  font-weight: 800;
  color: #c73534;
  display: block;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
  .office-services-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .office-image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .office-services-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .office-service-section {
    padding: 70px 0;
  }
}

/* ================================
  modular kitchen SECTION
================================ */
.service-banner {
  background: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.6)
    ),
    url("https://res.cloudinary.com/dzcjlkjol/image/upload/v1766662417/2151929519_irmea7.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}

.service-banner .tag {
  color: #c73534;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}

.service-banner h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  margin: 15px 0;
}

.service-banner p {
  max-width: 600px;
  font-size: 17px;
  line-height: 1.8;
  color: #eaeaea;
}

.mk-intro-section {
  padding: 100px 0;
}

.mk-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mk-intro-text h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
}

.mk-intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.mk-feature-list {
  list-style: none;
  padding: 0;
}

.mk-feature-list li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #333;
}

.mk-intro-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}

@media (max-width: 992px) {
  .mk-intro-grid {
    grid-template-columns: 1fr;
  }
}


.mk-features-section {
  padding: 100px 0;
  background: #fafafa;
}

.mk-section-title h2 {
  font-size: 36px;
  font-weight: 800;
}

.mk-section-title p {
  margin-top: 10px;
  color: #666;
}

.mk-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.mk-feature-card {
  background: #fff;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.4s ease;
}

.mk-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #c73534, #6e2828);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mk-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.mk-feature-card:hover::before {
  opacity: 1;
}

.mk-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mk-feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .mk-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .mk-features-grid {
    grid-template-columns: 1fr;
  }
}

.mk-gallery-section {
  padding: 100px 0;
}

.mk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

/* Force equal height */
.mk-gallery-grid img {
  width: 100%;
  height: 260px;              
  object-fit: cover;          
  border-radius: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

/* Hover effect */
.mk-gallery-grid img:hover {
  transform: scale(1.06);
  box-shadow: 0 28px 70px rgba(0,0,0,0.22);
}

/* Large tablets */
@media (max-width: 1200px) {
  .mk-gallery-grid img {
    height: 240px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .mk-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mk-gallery-grid img {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .mk-gallery-grid {
    grid-template-columns: 1fr;
  }

  .mk-gallery-grid img {
    height: 200px;
  }
}


.mk-gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
  .mk-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .mk-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
  RENOVATION SECTION
================================ */

.renov-banner-section {
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("https://res.cloudinary.com/dzcjlkjol/image/upload/v1766663207/2150378909_ol2l0p.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}

.renov-banner-tag {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: #c73534;
}

.renov-banner-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  margin: 15px 0;
}

.renov-banner-content p {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.8;
  color: #eaeaea;
}

.renov-intro-section {
  padding: 100px 0;
}

.renov-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.renov-intro-text h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
}

.renov-intro-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.renov-benefit-list {
  list-style: none;
  padding: 0;
}

.renov-benefit-list li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #333;
}

.renov-intro-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.18);
}

@media (max-width: 992px) {
  .renov-intro-grid {
    grid-template-columns: 1fr;
  }
}

.renov-services-section {
  padding: 100px 0;
  background: #fafafa;
}

.renov-section-title h2 {
  font-size: 36px;
  font-weight: 800;
}

.renov-section-title p {
  margin-top: 10px;
  color: #666;
}

.renov-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.renov-service-card {
  background: #fff;
  padding: 36px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
}

.renov-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #c73534, #6e2828);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.renov-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.14);
}

.renov-service-card:hover::before {
  opacity: 1;
}

.renov-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.renov-service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .renov-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .renov-services-grid {
    grid-template-columns: 1fr;
  }
}
.renov-gallery-section {
  padding: 100px 0;
}


@media (max-width: 992px) {
  .renov-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .renov-gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================
  FOOTER SECTION
================================ */
.modern-footer {
  background:
    radial-gradient(1200px at 10% 0%, rgba(199, 53, 52, 0.12), transparent 40%),
    radial-gradient(900px at 90% 20%, rgba(255, 255, 255, 0.05), transparent 45%),
    linear-gradient(180deg, #0c0c0c, #070707);
  color: #ffffff;
  padding-top: 110px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(199, 53, 52, 0.6),
    transparent
  );
}


.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 70px;
}

.footer-brand h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-brand p {
  font-size: 15.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
}


.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  width: 28px;
  height: 2px;
  background: #c73534;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.35s ease;
  position: relative;
}

.footer-links ul li a::before {
  content: "→";
  position: absolute;
  left: -18px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #c73534;
}

.footer-links ul li a:hover {
  color: #ffffff;
  padding-left: 18px;
}

.footer-links ul li a:hover::before {
  opacity: 1;
}

.footer-contact p {
  font-size: 15px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-social {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.4));
  color: #fff;
  font-size: 17px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}

.footer-social a:hover {
  background: #c73534;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(199, 53, 52, 0.4);
}


.footer-bottom {
  margin-top: 90px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}


.map-box {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 25px 55px rgba(0,0,0,0.35);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .map-box {
    overflow: visible;
  }
}

.modern-footer {
  contain: layout paint;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .modern-footer {
    padding-top: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .footer-brand img {
    margin: 0 auto 16px;
    display: block;
  }

  .footer-brand p {
    margin: 0 auto;
    text-align: center;
  }
}



