@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nata+Sans:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  padding: 0px;
  margin: 0px;
  font-family: "Montserrat", sans-serif;
  padding-top: 90px;
}

html {
  scroll-behavior: smooth;
}

/* ================= NAVBAR CONTAINER ================= */
.navbar .container-fluid {
  max-width: 1200px;
  margin: 15px auto;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.3s ease;
}

.navbar .container-fluid:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

/* ================= NAV ITEMS ================= */
.navbar-nav {
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-weight: 600;
  color: #000 !important;
}

.nav-link:hover {
  color: #FF0000 !important;
}

.navbar .nav-link.active {
  color: #FF0000 !important;
  font-weight: 500;
}

/* ================= DROPDOWN ================= */
/* NAVBAR */
.nav-link {
  font-weight: 600;
  color: #000;
}

.nav-link:hover {
  color: #FF0000;
}

/* Arrow button */
.dropdown-arrow {
  font-size: 12px;
  color: #000;
}

.dropdown-arrow:hover {
  color: #FF0000;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Show class */
.dropdown-menu.show {
  display: block;
}

/* Desktop */
@media (min-width: 992px) {
  .product-dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 40px;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-left: 20px;
  }
}


/* Remove bootstrap arrow */
.navbar .dropdown-toggle::after {
  display: none;
}


/* Custom arrow */
.custom-arrow::before {
  content: "▼";
  font-size: 12px;
  color: #000;
  display: inline-block;
  margin-top: 2px;
}

/* Hover */
.custom-arrow:hover::before {
  color: #FF0000;
}


/* Dropdown menu common */
.dropdown-menu {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Dropdown item hover */
.dropdown-menu .dropdown-item:hover {
  background-color: #faf9f2;
  color: #FF0000;
  font-weight: 500;
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background-color: #fff;
  color: #FF0000;
}

/* ================= DESKTOP ONLY ================= */
@media (min-width: 992px) {
  .dropdown-menu {
    position: absolute;
    top: 40px;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  .nav-item.dropdown>div {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-left: 20px;
  }
}

/* ================= MOBILE ONLY ================= */

/* ================= TOGGLER ================= */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* HERO SECTION----------------------------------------------------------------*/

/* CAPTION BOX */
.hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 30px;
  text-align: center;
  color: #f10f0f;
  background: rgba(248, 246, 243, 0.6);
  margin-bottom: 50px;
}


/* TEXT */
.hero-caption h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #FF1111;
  line-height: 1.3;
}

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-section {
    height: 300px;
  }

  .hero-caption h1 {
    font-size: 20px;
  }
}

/* CARD BASE=========== */
.product-card {
  width: 100%;
  max-width: 320px;
  height: 320px;
  margin: auto;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: calc(100% - 60px);
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* TITLE */
.product-card h5 {
  height: 60px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #FF0000;
  font-size: 18px;
  font-weight: 600;
}

/* HOVER */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.product-card:hover img {
  transform: scale(1.05);
}

/* ================= MOBILE (≤576px) ================= */
@media (max-width: 576px) {
  .product-card {
    max-width: 100%;
    height: 300px;
  }

  .product-card img {
    height: calc(100% - 50px);
  }

  .product-card h5 {
    height: 50px;
    font-size: 16px;
  }
}

/* ================= TABLET (577px – 768px) ================= */
@media (max-width: 768px) {
  .product-card {
    max-width: 100%;
    height: 230px;
  }

  .product-card h5 {
    font-size: 17px;
  }
}

/* what we do */
.whatwedo-section {
  background: #FBFBFB;
  overflow: hidden;
}

/* IMAGE */
.whatwedo-img {
  width: 100%;
  border-radius: 20px;
}

/* TEXT OVER IMAGE */


.whatwedo-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FF0000;
}

.whatwedo-text p {
  font-size: 16px;
  line-height: 1.7;
}

/* LEFT & RIGHT DESIGN SHAPES */
.whatwedo-shape {
  position: absolute;
  top: 50%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ff0000, #ff6a00);
  border-radius: 50%;
  opacity: 0.15;
  transform: translateY(-50%);
}

.left-shape {
  left: -80px;
}

.right-shape {
  right: -80px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .whatwedo-text {
    padding: 25px;
  }

  .whatwedo-text h2 {
    font-size: 26px;
  }

  .whatwedo-text p {
    font-size: 14px;
  }

  .whatwedo-shape {
    display: none;
  }
}



/* ---Our Certifications------------------------------------------------------------------------- */
.Certifications-scroll-wrapper {
  overflow: hidden;
  margin-top: 30px;
}

.Certifications-scroll-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollProducts 30s linear infinite;
}


@keyframes scrollProducts {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .product-card {
    width: 180px;
  }

  .product-card img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .product-scroll-track {
    animation-duration: 35s;
  }
}

.Certifications-card {
  width: 200px;          /* Fixed width */
  height: 150px;         /* Fixed height */
  flex-shrink: 0;        /* Important for scroll layout */
  overflow: hidden;
  border-radius: 10px;   /* Optional rounded corners */
}

.Certifications-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* Crops image nicely */
}

/* product section */
.product-hero-section {
  background-image: url("assets/resources/product/heroimg.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  position: relative;
}

.product-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.product-hero-section .container {
  position: relative;
  z-index: 1;
}

.product-hero-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
}

/* DEFAULT (Desktop) */
.product-hero-subtitle {
  color: #ffffff;
  font-size: 1.2rem;
  max-width: 650px;
  margin: auto;
}

/* TABLET */
@media (max-width: 991px) {
  .product-hero-subtitle {
    color: #ff0000;
    /* RED */
    font-size: 1.1rem;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .product-hero-title {
    font-size: 2rem;
  }

  .product-hero-subtitle {
    color: #ffffff;
    /* WHITE */
    font-size: 1rem;
  }
}

/* WOMEN'S CLOTHING SECTION */
/* WOMEN SECTION */
.women-section {
  background: #f8f9fa;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 520px;
  height: 420px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keeps image proportion */
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* IMAGE EFFECT */
.image-wrapper:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}


/* MOBILE */
@media (max-width: 768px) {
  .women-section h2 {
    text-align: center;
  }


  .women-section p {
    text-align: center;
  }
}


/* WHITE CONTAINER DESIGN */
.mens-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* RED ACCENT LINE */
.mens-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  width: 6px;
  background: #dc3545;
  /* logo red */
  border-radius: 10px;
}

/* TEXT */
.mens-section p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

/* IMAGE */
.men-image-wrapper {
  width: 100%;
  max-width: 520px;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  margin-left: auto;
}

.men-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* IMAGE HOVER EFFECT */
.men-image-wrapper:hover img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mens-box {
    padding: 30px;
  }

  .mens-box::before {
    display: none;
  }

  .men-image-wrapper {
    height: 280px;
    margin: auto;
  }

  .mens-section h2,
  .mens-section p {
    text-align: center;
  }
}


/* FOOTER SECTION------------------------------------------------------------------------- */

.footer-section {
  background-color: #111111;
  color: #ccc;
  padding: 60px 0 30px;
  font-family: Roboto, sans-serif;
}

.footer-title {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #FF0000;
  /* gold */
}

.footer-contact i {
  margin-right: 8px;
  color: #FF0000;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* ----------------Contact Us Section--------------------------------------------- */
/* SECTION BG */
.contact-section {
  background: #fff;
}

/* LEFT BOX */
.contact-box {
  background: #FFF5F7;
  padding: 40px;
  border-radius: 16px;
  color: #f74c26;
}

/* Heading */
.contact-box h2 {
  color: #f74c26;
  font-size: 35px;
  line-height: 1.6;
}

/* Paragraph text */
.contact-box p {
  color: #f74c26;
  font-size: 16px;
  line-height: 1.6;
}

/* Strong text */
.contact-box strong {
  color: #030303;
}

/* Links */
.contact-box a {
  color: #f74c26;
}

/* RIGHT IMAGE BOX */
.image-box {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 991px) {
  .contact-box {
    padding: 25px;
  }

  .image-box img {
    height: 280px;
  }
}

/* SECTION BG */
.enquiry-section {
  background: #EEEEEE;
  padding: 80px 0;
}

/* COMMON BOX */
.enquiry-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* IMAGE */
.enquiry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* REQUIRED STAR */
.req {
  color: #E81D23;
}

/* FORM INPUTS */
.enquiry-box .form-control {
  height: 48px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.enquiry-box textarea.form-control {
  height: auto;
}

/* BUTTON */
.submit-btn {
  background: #E81D23;
  color: #fff;
  padding: 10px 40px;
  border-radius: 6px;
  border: none;
  font-weight: 500;
}

.submit-btn:hover {
  background: #c8171f;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .enquiry-section {
    padding: 50px 0;
  }

  .enquiry-img {
    height: 280px;
  }
}

/* ================= HERO ================= */
.rnd-hero {
  min-height: 75vh;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .4)),
    url("https://images.unsplash.com/photo-1620799140408-edc6dcb6d633?auto=format&fit=crop&w=1600&q=80") no-repeat center / cover;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
}

.rnd-hero h1 {
  font-size: 52px;
  font-weight: 700;
}

.rnd-hero p {
  max-width: 650px;
  font-size: 19px;
  margin-top: 15px;
}

/* ================= SECTION TITLE ================= */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 700;
}

.section-head span {
  color: #FF0000;
}

/* ================= FEATURE BLOCK ================= */
.feature {
  display: flex;
  gap: 25px;
  margin-bottom: 45px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #FF0000;
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 22px;
  font-weight: 700;
}

.feature p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* ================= PROCESS STRIP ================= */
.process-strip {
  background: linear-gradient(90deg, #f7f7f7, #ffffff);
  padding: 70px 15px;
}

.process-box {
  text-align: center;
  padding: 25px;
}

.process-box i {
  font-size: 40px;
  color: #FF0000;
}

.process-box h5 {
  margin-top: 15px;
  font-weight: 700;
}

/* ================= SUSTAINABILITY ================= */
/* ================= SUSTAINABILITY – NEW DESIGN ================= */

.new-sustain {
  padding: 90px 15px;
  background: linear-gradient(135deg, #f4f7f9, #ffffff);
}

/* LEFT PANEL */
.sustain-left {
  padding-right: 20px;
}

.sustain-tag {
  display: inline-block;
  background: rgba(255, 0, 0, 0.1);
  color: #FF0000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sustain-left h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sustain-left p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* RIGHT ITEMS */
.sustain-item {
  height: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  transition: all 0.3s ease;
}

.sustain-item i {
  font-size: 22px;
  color: #FF0000;
  flex-shrink: 0;
}

.sustain-item span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.sustain-item.wide {
  justify-content: center;
  text-align: center;
}

/* HOVER EFFECT */
.sustain-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .sustain-left h3 {
    font-size: 26px;
  }

  .sustain-left {
    text-align: center;
    padding-right: 0;
  }

  .sustain-item {
    justify-content: flex-start;
  }

  .sustain-item.wide {
    justify-content: flex-start;
    text-align: left;
  }
}


/* ================= CTA ================= */
.cta {
  background: #FF0000;
  color: #fff;
  padding: 90px 15px;
  text-align: center;
}

.cta h2 {
  font-size: 38px;
  font-weight: 700;
}

.cta button {
  margin-top: 20px;
  background: #fff;
  color: #FF0000;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .rnd-hero h1 {
    font-size: 32px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .feature {
    flex-direction: column;
  }
}

/* ================= ABOUT HERO ================= */
.about-hero {
  padding: 100px 15px;
  background: linear-gradient(rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1521334884684-d80222895322?auto=format&fit=crop&w=1600&q=80") no-repeat center / cover;
  text-align: center;
  color: #ffffff;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.about-hero p {
  font-size: 18px;
  margin-top: 12px;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 90px 15px;
  background: #ffffff;
}

/* LEFT CONTENT */
.about-tag {
  display: inline-block;
  background: rgba(255, 0, 0, 0.1);
  color: #FF0000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

/* RIGHT HIGHLIGHTS */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-item {
  background: #f8f9fb;
  padding: 20px 22px;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.highlight-item i {
  font-size: 22px;
  color: #FF0000;
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .about-hero h1 {
    font-size: 32px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-section {
    padding: 60px 15px;
  }
}

/* ================= DESIGN SERVICES ================= */

.design-services {
  padding: 50px 15px;
  background: linear-gradient(135deg, #f7f8fa, #ffffff);
}

/* HEADER */
.ds-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.ds-tag {
  display: inline-block;
  background: rgba(255, 0, 0, 0.1);
  color: #FF0000;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ds-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ds-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* CONTENT */
.ds-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

/* POINTS */
.ds-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ds-point {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  transition: 0.3s ease;
}

.ds-point:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.ds-point i {
  font-size: 22px;
  color: #FF0000;
  flex-shrink: 0;
}

.ds-point span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* FOOTER NOTE */
.ds-footer {
  max-width: 900px;
  margin: 60px auto 0;
  text-align: center;
}

.ds-footer p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .ds-header h2 {
    font-size: 28px;
  }

  .ds-header p {
    font-size: 16px;
  }

  .ds-content p {
    font-size: 15px;
  }

  .ds-footer {
    margin-top: 40px;
  }
}

.colth-hero {
  background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)),
    url('https://images.unsplash.com/photo-1521334884684-d80222895322');
  background-size: cover;
  background-position: center;
  height: 75vh;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
}

.colth-hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.colth-fixed-img {
  max-width: 480px;
  height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.colth-highlight {
  font-weight: 600;
  color: #FF0000;
}

.btn-primary-btn {
  background-color: #FF0000;
  color: #fff;
  border: none;
}

.rd-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rd-image {
  width: 100%;
  height: 350px;
  object-fit: fill;
  border-radius: 12px;
}

@media (max-width: 991px) {
  .rd-image {
    height: 250px;
  }
}

/* ----- DESIGN GALLERY SECTION ---------------------------------------- */
.design-gallery {
  background: #f8f9fa;
}

.design-card {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.design-card img {
  height: 280px;
  object-fit: fill;
  transition: transform 0.4s ease;
}

.design-card:hover img {
  transform: scale(1.08);
}

.design-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}