:root {
  --mukta-primary: #ff5724;
  --mukta-secondary: #f6f1eb;
  --mukta-dark: #1e1510;
  --mukta-muted: #6b5c4f;
  --bs-primary: var(--mukta-primary);
  --bs-primary-rgb: 255, 87, 36;
}

body {
  font-family: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #fdfaf7;
  color: var(--mukta-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

/* Better text rendering */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container max-width adjustments */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .row > * {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Custom spacing utility for sections */
.py-md-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 767.98px) {
  .py-md-6 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.navbar.bg-glass {
  background-color: rgba(253, 250, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138, 75, 36, 0.1);
}

/* Mobile navbar improvements */
@media (max-width: 991.98px) {
  .navbar.bg-glass {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  .navbar-collapse {
    background: rgba(253, 250, 247, 0.98);
    padding: 1rem;
    margin-top: 0.75rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(17, 10, 6, 0.1);
  }
  
  .navbar-nav {
    gap: 0 !important;
    text-align: left !important;
    align-items: flex-start !important;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.25rem;
    text-align: left;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(255, 87, 36, 0.08);
  }
  
  .navbar .dropdown-menu {
    box-shadow: none;
    background: rgba(255, 87, 36, 0.04);
    margin-top: 0;
    margin-bottom: 0.5rem;
    text-align: left;
  }
  
  .navbar-collapse .ms-lg-4 {
    text-align: left;
  }
}

.navbar .nav-link {
  font-weight: 600;
  color: var(--mukta-dark);
  letter-spacing: 0.04em;
}

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

.navbar .dropdown-menu {
  border: none;
  border-radius: 1rem;
  padding: 0.75rem;
  min-width: 230px;
  box-shadow: 0 25px 60px rgba(17, 10, 6, 0.15);
  background: rgba(255, 255, 255, 0.98);
  transform-origin: top center;
  animation: dropdownFade 0.2s ease;
}

.navbar .dropdown-item {
  border-radius: 0.75rem;
  padding: 0.6rem 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--mukta-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.navbar .dropdown-item::after {
  content: "\F1C8";
  font-family: "bootstrap-icons";
  font-size: 0.95rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active {
  background: rgba(255, 87, 36, 0.08);
  color: var(--mukta-primary);
  transform: translateX(2px);
}

.navbar .dropdown-item:hover::after,
.navbar .dropdown-item:focus::after,
.navbar .dropdown-item.active::after {
  opacity: 1;
  transform: translateX(0);
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary {
  background-color: var(--mukta-primary);
  border-color: var(--mukta-primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #e04c20;
  border-color: #e04c20;
  color: #fff;
}

.btn-outline-primary {
  color: var(--mukta-primary);
  border-color: var(--mukta-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--mukta-primary);
  border-color: var(--mukta-primary);
  color: #fff;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 80px);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
}

.hero-slide {
  height: 100%;
  min-height: calc(100vh - 80px);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-slider .swiper-wrapper {
  height: 100%;
}

.hero-slider .swiper-slide {
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero-controls {
  position: absolute;
  right: clamp(1rem, 6vw, 4rem);
  bottom: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: rgba(17, 10, 6, 0.55);
  backdrop-filter: blur(6px);
}

.hero-arrows {
  display: flex;
  gap: 0.5rem;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(17, 10, 6, 0.4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hero-arrow:hover,
.hero-arrow:focus {
  background: var(--mukta-primary);
  border-color: var(--mukta-primary);
  color: #fff;
}

.hero-dots {
  display: flex;
  align-items: center;
}

.hero-dots .swiper-pagination-bullets {
  display: flex;
  gap: 0.35rem;
}

.hero-dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-dots .swiper-pagination-bullet-active {
  width: 28px;
  background: #fff;
  border-color: #fff;
}

.hero-title {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
}

/* Hero content consistency */
.hero-eyebrow {
  margin-bottom: 1rem !important;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  line-height: 1.5;
}

.hero-heading,
.hero-title {
  margin-bottom: 1.25rem !important;
  line-height: 1.15;
  max-width: 100%;
}

.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.25rem !important;
  max-width: 100%;
}

.hero-support {
  font-size: clamp(1rem, 1.5vw, 1.15rem) !important;
  line-height: 1.7;
  margin-bottom: 2rem !important;
  max-width: 100%;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mukta-primary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.card-glow {
  border: 1px solid rgba(138, 75, 36, 0.15);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 15px 45px rgba(24, 16, 10, 0.08);
}

.icon-pill {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background-color: rgba(138, 75, 36, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mukta-primary);
}

.bg-soft {
  background-color: #fff;
  border: 1px solid rgba(138, 75, 36, 0.08);
  border-radius: 1.75rem;
}

.text-muted-custom {
  color: var(--mukta-muted);
}

.products-grid .card {
  border: none;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(34, 23, 17, 0.15);
}

.products-grid .card-img-top {
  height: 240px;
  object-fit: cover;
}

.products-grid .btn-link {
  text-decoration: none;
  font-weight: 600;
}

/* Ensure consistent card image heights in product listing rows */
.row:has(.product-card) .card .card-img-top,
.row.g-4 .card .card-img-top {
  height: 240px;
  object-fit: cover;
}

.row:has(.product-card) .card,
.row.g-4 .card {
  border-radius: 1.5rem;
  overflow: hidden;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.check-list i {
  color: var(--mukta-primary);
  margin-top: 0.2rem;
}

.partner-cta {
  border: 1px solid rgba(138, 75, 36, 0.15);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #faf6f2 50%, #fff5f0 100%);
  box-shadow: 0 15px 45px rgba(24, 16, 10, 0.08);
  position: relative;
  overflow: hidden;
}

.partner-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--mukta-primary), #ff8a5c);
  border-radius: 2rem 0 0 2rem;
}

.partner-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(138, 75, 36, 0.1);
  height: 100%;
  justify-content: center;
}

/* Ensure all parent elements allow sticky positioning */
main {
  overflow: visible !important;
}

#differentiators {
  overflow: visible !important;
}

#differentiators .container {
  overflow: visible !important;
}

#differentiators .row {
  overflow: visible !important;
}

.differentiator-layout {
  align-items: flex-start;
  position: relative;
  min-height: 100vh;
  overflow: visible !important;
}

/* Ensure parent container matches scrollable content height for sticky positioning */
.differentiator-layout > .col-lg-7 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: auto;
}

.differentiator-layout > .col-lg-7 .diff-scroll-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.differentiator-layout > .col-lg-5 {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  z-index: 10;
  height: fit-content;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  will-change: position;
}

.differentiator-points li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.diff-scroll-area {
  position: relative;
  min-height: 100%;
}

.diff-spacer {
  width: 100%;
  min-height: 20vh;
}

.diff-wrapper {
  width: 100%;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 50px;
}

.diff-card-wrapper {
  width: 100%;
  perspective: 500px;
  margin-bottom: 50px;
}

.diff-card-wrapper:last-child {
  margin-bottom: 0;
}

.diff-cards {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 20px;
}

.diff-card {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 243, 237, 0.8));
  border-radius: 1.75rem;
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(18, 10, 6, 0.15);
  border: 1px solid rgba(255, 87, 36, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transform-origin: top center;
}

.diff-card-icon .icon-pill {
  width: 56px;
  height: 56px;
  font-size: 1.25rem;
}

.diff-card .card-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  color: var(--mukta-muted);
}

.diff-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.diff-card p {
  margin-bottom: 0;
  color: var(--mukta-muted);
}

.card-two {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 245, 255, 0.9));
}

.card-three {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(235, 255, 237, 0.85));
}

.card-four {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 235, 255, 0.85));
}

.footer-main {
  background: #2b2522;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
  margin-bottom: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-section {
  display: flex; 
  flex-direction: column;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-info p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-info span {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-contact-info a:hover {
  color: #fff;
}

.footer-address {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer-cta {
  margin: 3rem 0 2.5rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 87, 36, 0.15), rgba(255, 138, 92, 0.1));
  border: 2px solid rgba(255, 87, 36, 0.3);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--mukta-primary), #ff8a5c);
  border-radius: 1.5rem 0 0 1.5rem;
}

.footer-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-cta-text {
  flex: 1;
}

.footer-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.footer-cta-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.footer-cta-action {
  flex-shrink: 0;
}

.footer-cta-btn {
  background: linear-gradient(135deg, var(--mukta-primary), #ff8a5c);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 20px rgba(255, 87, 36, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-cta-btn:hover,
.footer-cta-btn:focus {
  background: linear-gradient(135deg, #e04c20, #ff7a4a);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 87, 36, 0.4);
  color: #fff;
}

.footer-cta-btn i {
  font-size: 1.1rem;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: right;
}

.footer-copyright p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-cta {
    margin: 2.5rem 0 2rem;
    padding: 2rem 1.5rem;
  }
  
  .footer-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-cta-title {
    font-size: 1.35rem;
  }
  
  .footer-cta-description {
    font-size: 0.95rem;
  }
  
  .footer-cta-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
  
  .footer-copyright {
    text-align: left;
  }
}


[data-fade] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Make first row of product cards visible by default on ALL screen sizes */
[data-fade].row > .col-md-4:nth-child(-n+3),
[data-fade].row > .col-md-6:nth-child(-n+3),
[data-fade].row > .col-lg-4:nth-child(-n+3),
[data-fade].row > .col-sm-6:nth-child(-n+3),
[data-fade].row > [class*="col-"]:nth-child(-n+3) {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Ensure cards inside are also visible */
[data-fade].row > [class*="col-"]:nth-child(-n+3) .card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Disable fade animation on mobile devices */
@media (max-width: 767.98px) {
  [data-fade] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
  }
  
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
  
  /* Ensure all nested elements inside [data-fade] are visible */
  [data-fade] * {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
  
  /* Ensure product cards and all cards are visible */
  [data-fade] .product-card,
  [data-fade] .card,
  [data-fade] .col-md-6,
  [data-fade] .col-lg-4,
  [data-fade] .col-md-4,
  [data-fade] .col-sm-6 {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}

@media (min-width: 768px) {
  .diff-cards {
    width: 80%;
    padding: 0 30px;
  }
}

@media (min-width: 1024px) {
  .diff-cards {
    width: 70%;
    padding: 0 50px;
  }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Extra Small Devices (phones, < 576px) */
@media (max-width: 575.98px) {
  /* Hero Section */
  .hero-section {
    min-height: calc(100vh - 70px);
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-title,
  .hero-heading {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1rem !important;
  }
  
  .hero-lead {
    font-size: 0.95rem !important;
    line-height: 1.5;
    margin-bottom: 1rem !important;
  }
  
  .hero-support {
    font-size: 0.875rem !important;
    line-height: 1.6;
    margin-bottom: 1.5rem !important;
    display: none; /* Hide on very small screens */
  }
  
  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    margin-bottom: 0.75rem !important;
    line-height: 1.4;
  }
  
  .hero-controls {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    gap: 0.5rem;
  }
  
  .hero-arrow {
    width: 36px;
    height: 36px;
  }
  
  .hero-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  
  .hero-dots .swiper-pagination-bullet-active {
    width: 20px;
  }
  
  .hero-content .btn-lg {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
  
  /* Section Spacing */
  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  
  /* Typography */
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
  }
  
  .fs-5 {
    font-size: 1rem !important;
  }
  
  .display-5 {
    font-size: 2rem;
  }
  
  /* Cards */
  .card-glow {
    padding: 1.25rem !important;
  }
  
  .icon-pill {
    width: 48px;
    height: 48px;
  }
  
  /* Products Grid */
  .products-grid .card-img-top {
    height: 180px;
  }
  
  /* Partner CTA */
  .partner-cta {
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
  }
  
  .partner-cta::before {
    width: 100%;
    height: 5px;
    border-radius: 1.25rem 1.25rem 0 0;
  }
  
  .partner-cta-action {
    padding-left: 0;
    padding-top: 1.5rem;
    border-left: none;
    border-top: 2px solid rgba(138, 75, 36, 0.1);
    margin-top: 1.5rem;
    align-items: center;
    text-align: center;
  }
  
  .partner-cta .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
  }
  
  /* Differentiator Section */
  .differentiator-layout > .col-lg-5 {
    position: relative;
    top: 0;
  }
  
  .diff-wrapper {
    min-height: auto;
    padding-bottom: 0;
  }
  
  .diff-spacer {
    display: none;
  }
  
  .diff-card {
    flex-direction: column;
    height: auto;
    min-height: auto;
    padding: 1.25rem;
  }
  
  .diff-card h3 {
    font-size: 1.15rem;
  }
  
  .diff-card p {
    font-size: 0.9rem;
  }
  
  .diff-card-wrapper {
    margin-bottom: 1rem;
  }
  
  .diff-cards {
    padding: 0 0.5rem;
  }
  
  .differentiator-points li {
    font-size: 0.85rem;
  }
  
  /* Check List */
  .check-list li {
    font-size: 0.9rem;
  }
  
  /* Footer */
  .footer-main {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-brand-header {
    justify-content: flex-start;
  }
  
  .footer-section {
    text-align: left;
  }
  
  .footer-links {
    align-items: flex-start;
  }
  
  .footer-contact-info {
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-cta {
    margin: 2rem 0 1.5rem;
    padding: 1.5rem 1.25rem;
    border-radius: 1.25rem;
  }
  
  .footer-cta::before {
    width: 100%;
    height: 5px;
    border-radius: 1.25rem 1.25rem 0 0;
  }
  
  .footer-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  
  .footer-cta-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-cta-description {
    font-size: 0.9rem;
  }
  
  .footer-cta-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Navbar */
  .navbar-brand img {
    height: 40px;
  }
  
  .navbar .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* Small Devices (landscape phones, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title,
  .hero-heading {
    font-size: 2rem;
    margin-bottom: 1.125rem !important;
    line-height: 1.15;
  }
  
  .hero-lead {
    font-size: 1rem !important;
    line-height: 1.55;
    margin-bottom: 1.125rem !important;
  }
  
  .hero-support {
    font-size: 0.95rem !important;
    line-height: 1.65;
    margin-bottom: 1.75rem !important;
  }
  
  .hero-eyebrow {
    margin-bottom: 0.875rem !important;
  }
  
  .hero-controls {
    right: 1rem;
    bottom: 1rem;
    padding: 0.35rem 0.9rem;
    gap: 0.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .diff-card {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
  
  .diff-wrapper {
    min-height: auto;
    padding-bottom: 1rem;
  }
  
  .diff-spacer {
    min-height: 5vh;
  }
  
  .differentiator-layout > .col-lg-5 {
    position: relative;
    top: 0;
  }
  
  .partner-cta {
    padding: 2rem;
  }
}

/* Medium Devices (tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title,
  .hero-heading {
    font-size: 2.5rem;
    margin-bottom: 1.25rem !important;
    line-height: 1.15;
  }
  
  .hero-content {
    padding: 2rem;
  }
  
  .hero-lead {
    font-size: 1.15rem !important;
    line-height: 1.6;
    margin-bottom: 1.25rem !important;
  }
  
  .hero-support {
    font-size: 1rem !important;
    line-height: 1.7;
    margin-bottom: 2rem !important;
  }
  
  .hero-eyebrow {
    margin-bottom: 1rem !important;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .diff-card {
    height: auto;
    min-height: 280px;
  }
  
  .diff-wrapper {
    min-height: auto;
  }
  
  .differentiator-layout > .col-lg-5 {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
  
  .differentiator-points {
    display: none;
  }
  
  .products-grid .card-img-top {
    height: 200px;
  }
  
  .partner-cta {
    padding: 3rem 2.5rem;
  }
  
  .partner-cta-action {
    padding-left: 2rem;
  }
  
  /* Footer 2 columns on tablet */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-cta {
    margin: 2.5rem 0 2rem;
    padding: 2rem 1.75rem;
  }
  
  .footer-cta-title {
    font-size: 1.4rem;
  }
  
  .footer-cta-description {
    font-size: 0.98rem;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-content {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .hero-title,
  .hero-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.25rem !important;
    line-height: 1.15;
  }
  
  .hero-lead {
    font-size: clamp(1.15rem, 1.8vw, 1.3rem) !important;
    line-height: 1.6;
    margin-bottom: 1.25rem !important;
  }
  
  .hero-support {
    font-size: clamp(1.05rem, 1.4vw, 1.15rem) !important;
    line-height: 1.7;
    margin-bottom: 2rem !important;
  }
  
  .hero-eyebrow {
    margin-bottom: 1rem !important;
  }
  
  /* Re-enable sticky for differentiator on desktop */
  .differentiator-layout > .col-lg-5 {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 100px !important;
    z-index: 10 !important;
    height: fit-content;
    max-height: calc(100vh - 120px);
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title,
  .hero-heading {
    font-size: 3.75rem;
    margin-bottom: 1.25rem !important;
    line-height: 1.1;
  }
  
  .hero-content {
    max-width: 1000px;
  }
  
  .hero-lead {
    font-size: 1.35rem !important;
    line-height: 1.6;
    margin-bottom: 1.25rem !important;
  }
  
  .hero-support {
    font-size: 1.15rem !important;
    line-height: 1.7;
    margin-bottom: 2rem !important;
  }
  
  .section-title {
    font-size: 2.75rem;
  }
}

/* Handle very tall screens */
@media (min-height: 900px) {
  .hero-section {
    min-height: calc(100vh - 80px);
  }
}

/* Handle landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-title,
  .hero-heading {
    font-size: 1.5rem;
    margin-bottom: 0.75rem !important;
    line-height: 1.2;
  }
  
  .hero-lead {
    font-size: 0.85rem !important;
    line-height: 1.5;
    margin-bottom: 0.75rem !important;
  }
  
  .hero-support {
    display: none;
  }
  
  .hero-eyebrow {
    margin-bottom: 0.5rem !important;
    font-size: 0.6rem;
  }
  
  .hero-content .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* Improve touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
  }
  
  .nav-link {
    padding: 0.75rem 1rem;
  }
  
  .hero-arrow {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  [data-fade] {
    opacity: 1;
    transform: none;
  }
}

/* Core Brand Values Cards */
.value-card {
  background: linear-gradient(145deg, #ffffff, #faf6f2);
  border: 1px solid rgba(138, 75, 36, 0.12);
  border-radius: 1.25rem;
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mukta-primary), #ff8a5c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 87, 36, 0.15);
  border-color: rgba(255, 87, 36, 0.2);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 87, 36, 0.12), rgba(255, 87, 36, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.value-icon i {
  font-size: 1.5rem;
  color: var(--mukta-primary);
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--mukta-primary);
  box-shadow: 0 8px 20px rgba(255, 87, 36, 0.3);
}

.value-card:hover .value-icon i {
  color: #fff;
  transform: scale(1.1);
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--mukta-dark);
}

.value-desc {
  font-size: 0.85rem;
  color: var(--mukta-muted);
  margin: 0;
  line-height: 1.5;
}

/* Value Cards Responsive */
@media (max-width: 575.98px) {
  .value-card {
    padding: 1.25rem 0.75rem;
    border-radius: 1rem;
    min-height: auto;
  }
  
  .value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }
  
  .value-icon i {
    font-size: 1.25rem;
  }
  
  .value-title {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  
  .value-desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  /* Ensure 2 columns on mobile */
  .about-values-section .row > [class*="col-"] {
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .value-card {
    padding: 1.5rem 1rem;
  }
  
  .value-icon {
    width: 55px;
    height: 55px;
  }
  
  .value-icon i {
    font-size: 1.35rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .value-card {
    padding: 1.5rem 1rem;
  }
  
  /* 3 columns on tablet */
  .about-values-section .row > [class*="col-md-4"] {
    margin-bottom: 1rem;
  }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-main {
  padding: 3rem 0 4rem;
}

/* Hero Section */
.about-hero {
  max-width: 800px;
  margin: 0 auto 5rem;
  padding: 0 1rem;
}

.about-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--mukta-dark);
}

.about-hero-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: var(--mukta-muted);
  margin: 0;
}

/* Story Section */
.about-story-section {
  margin-bottom: 6rem;
  padding: 0 1rem;
}

/* Founder Section - positioned after Story */
.founder-section {
  margin-bottom: 6rem;
  padding: 0 1rem;
}

.about-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--mukta-dark);
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--mukta-muted);
  margin-bottom: 1.25rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-vision-card {
  background: linear-gradient(135deg, #ffffff 0%, #faf6f2 100%);
  border: 1px solid rgba(138, 75, 36, 0.12);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(24, 16, 10, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(24, 16, 10, 0.1);
}

.about-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--mukta-dark);
}

/* Promise Section */
.about-promise-section {
  margin-bottom: 6rem;
  padding: 0 1rem;
}

.about-section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.about-subtitle {
  font-size: 1.1rem;
  color: var(--mukta-muted);
  margin: 0;
}

.promise-card {
  background: linear-gradient(145deg, #ffffff, #faf6f2);
  border: 1px solid rgba(138, 75, 36, 0.12);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mukta-primary), #ff8a5c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(255, 87, 36, 0.15);
  border-color: rgba(255, 87, 36, 0.2);
}

.promise-card:hover::before {
  transform: scaleX(1);
}

.promise-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 87, 36, 0.12), rgba(255, 87, 36, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.promise-icon i {
  font-size: 1.75rem;
  color: var(--mukta-primary);
  transition: transform 0.3s ease;
}

.promise-card:hover .promise-icon {
  background: var(--mukta-primary);
  box-shadow: 0 8px 20px rgba(255, 87, 36, 0.3);
}

.promise-card:hover .promise-icon i {
  color: #fff;
  transform: scale(1.1);
}

.promise-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--mukta-dark);
}

.promise-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mukta-muted);
  margin: 0;
}

/* Values Section */
.about-values-section {
  margin-bottom: 0;
  padding: 0 1rem;
}

.founder-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #faf6f2 50%, #fff5f0 100%);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(24, 16, 10, 0.08);
  border: 1px solid rgba(138, 75, 36, 0.1);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--mukta-primary), #ff8a5c);
  border-radius: 2rem 0 0 2rem;
}

.founder-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.founder-image-frame {
  position: relative;
  width: 280px;
  height: 340px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(255, 87, 36, 0.2);
  z-index: 2;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.founder-card:hover .founder-image {
  transform: scale(1.05);
}

.founder-accent {
  position: absolute;
  width: 280px;
  height: 340px;
  background: linear-gradient(135deg, var(--mukta-primary), #ff8a5c);
  border-radius: 1.5rem;
  top: 15px;
  left: 35px;
  z-index: 1;
  opacity: 0.3;
}

.founder-content {
  padding: 1rem 0;
}

.founder-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--mukta-dark);
  margin-bottom: 0.25rem;
}

.founder-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mukta-primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.founder-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--mukta-primary), #ff8a5c);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.founder-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--mukta-muted);
  margin-bottom: 1.5rem;
}

.founder-signature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 87, 36, 0.08), rgba(255, 87, 36, 0.04));
  border-radius: 0.75rem;
  border-left: 3px solid var(--mukta-primary);
}

.founder-signature i {
  color: var(--mukta-primary);
  font-size: 1.25rem;
}

.founder-signature span {
  font-style: italic;
  font-weight: 600;
  color: var(--mukta-dark);
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }
  
  .founder-card::before {
    width: 100%;
    height: 6px;
    border-radius: 2rem 2rem 0 0;
  }
  
  .founder-image-wrapper {
    justify-content: center;
  }
  
  .founder-image-frame {
    width: 240px;
    height: 300px;
  }
  
  .founder-accent {
    width: 240px;
    height: 300px;
    left: calc(50% - 105px);
    top: 12px;
  }
  
  .founder-divider {
    margin-left: auto;
    margin-right: auto;
  }
  
  .founder-signature {
    justify-content: center;
  }
}

/* ========================================
   ABOUT PAGE RESPONSIVE STYLES
   ======================================== */

/* Extra Small Devices (phones, < 576px) */
@media (max-width: 575.98px) {
  .about-main {
    padding: 2rem 0 3rem;
  }
  
  .about-hero {
    margin-bottom: 3rem;
    padding: 0;
  }
  
  .about-hero-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .about-hero-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .about-story-section {
    margin-bottom: 3rem;
    padding: 0;
  }
  
  .about-section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .about-vision-card {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .about-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .about-promise-section {
    margin-bottom: 3rem;
    padding: 0;
  }
  
  .about-section-header {
    margin-bottom: 2rem;
  }
  
  .about-subtitle {
    font-size: 0.95rem;
  }
  
  .promise-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .promise-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .promise-icon i {
    font-size: 1.5rem;
  }
  
  .promise-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .promise-text {
    font-size: 0.9rem;
  }
  
  .about-values-section {
    margin-bottom: 0;
    padding: 0;
  }
  
  .founder-section {
    margin-bottom: 3rem;
    padding: 0;
  }
  
  .founder-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    gap: 1.5rem;
  }
  
  .founder-image-frame {
    width: 200px;
    height: 260px;
  }
  
  .founder-accent {
    width: 200px;
    height: 260px;
    left: calc(50% - 90px);
    top: 10px;
  }
  
  .founder-name {
    font-size: 1.5rem;
  }
  
  .founder-title {
    font-size: 1rem;
  }
  
  .founder-quote {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .founder-signature {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1rem;
  }
  
  .founder-signature span {
    font-size: 0.9rem;
  }
}

/* Founder Section Responsive Updates */
@media (max-width: 991.98px) {
  .founder-section {
    margin-bottom: 4rem;
  }
}

/* Small Devices (landscape phones, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .about-main {
    padding: 2.5rem 0 3.5rem;
  }
  
  .about-hero {
    margin-bottom: 4rem;
  }
  
  .about-hero-title {
    font-size: 2.25rem;
  }
  
  .about-story-section {
    margin-bottom: 4rem;
  }
  
  .about-promise-section {
    margin-bottom: 4rem;
  }
  
  .founder-section {
    margin-bottom: 4rem;
  }
  
  .about-values-section {
    margin-bottom: 0;
  }
  
  .promise-card {
    margin-bottom: 1.5rem;
  }
}

/* Medium Devices (tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-main {
    padding: 3rem 0 4rem;
  }
  
  .about-hero {
    margin-bottom: 4.5rem;
  }
  
  .about-story-section {
    margin-bottom: 5rem;
  }
  
  .about-promise-section {
    margin-bottom: 5rem;
  }
  
  .founder-section {
    margin-bottom: 5rem;
  }
  
  .about-values-section {
    margin-bottom: 0;
  }
  
  .about-vision-card {
    margin-top: 0;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .about-main {
    padding: 4rem 0 5rem;
  }
  
  .about-hero {
    margin-bottom: 6rem;
  }
  
  .about-story-section {
    margin-bottom: 7rem;
  }
  
  .about-promise-section {
    margin-bottom: 7rem;
  }
  
  .founder-section {
    margin-bottom: 7rem;
  }
  
  .about-values-section {
    margin-bottom: 0;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .about-hero {
    max-width: 900px;
  }
  
  .about-section-header {
    max-width: 800px;
  }
}

/* ========================================
   BROCHURE PAGE STYLES
   ======================================== */

.brochure-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(138, 75, 36, 0.12);
}

.brochure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(24, 16, 10, 0.12);
  border-color: rgba(255, 87, 36, 0.2);
}

.brochure-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 87, 36, 0.12), rgba(255, 87, 36, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.brochure-icon i {
  font-size: 1.75rem;
  color: var(--mukta-primary);
  transition: transform 0.3s ease;
}

.brochure-card:hover .brochure-icon {
  background: var(--mukta-primary);
  box-shadow: 0 8px 20px rgba(255, 87, 36, 0.3);
}

.brochure-card:hover .brochure-icon i {
  color: #fff;
  transform: scale(1.1);
}

.brochure-card .list-unstyled li {
  display: flex;
  align-items: flex-start;
}

.brochure-card .list-unstyled i {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Brochure Page Responsive */
@media (max-width: 767.98px) {
  .brochure-icon {
    width: 56px;
    height: 56px;
  }
  
  .brochure-icon i {
    font-size: 1.5rem;
  }
  
  .brochure-card {
    padding: 1.5rem !important;
  }
  
  .brochure-card .d-flex {
    flex-direction: column;
  }
  
  .brochure-card .brochure-icon {
    margin-bottom: 1rem;
  }
}

/* Product Detail Pages */
.product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.product-image-wrapper img {
  transition: transform 0.3s ease;
}

.product-image-wrapper:hover img {
  transform: scale(1.05);
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  border-radius: 1.5rem;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(34, 23, 17, 0.15);
}

.product-card a {
  display: block;
  height: 100%;
}

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

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

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}

.breadcrumb-item a {
  color: var(--mukta-primary);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--mukta-muted);
}

/* ========================================
   CERTIFICATE PAGE STYLES
   ======================================== */

.cert-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(138, 75, 36, 0.08);
  box-shadow: 0 8px 32px rgba(24, 16, 10, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(24, 16, 10, 0.15);
  border-color: rgba(255, 87, 36, 0.3);
}

.cert-logo-wrapper {
  background: linear-gradient(160deg, #ffffff 0%, #faf7f4 50%, #f5efe9 100%);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(138, 75, 36, 0.06);
}

.cert-logo-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 87, 36, 0.03), transparent 40%);
  animation: subtleRotate 20s linear infinite;
}

@keyframes subtleRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cert-logo {
  max-width: 180px;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.cert-card:hover .cert-logo {
  transform: scale(1.12);
}

.cert-icon-wrapper {
  background: linear-gradient(160deg, rgba(255, 87, 36, 0.06) 0%, rgba(255, 87, 36, 0.02) 100%);
}

.cert-icon-wrapper i {
  font-size: 5rem;
  color: var(--mukta-primary);
  opacity: 0.75;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.cert-card:hover .cert-icon-wrapper i {
  transform: scale(1.15);
  opacity: 1;
}

.cert-content {
  padding: 1.75rem 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(46, 160, 67, 0.15), rgba(46, 160, 67, 0.08));
  color: #2ea043;
  margin-bottom: 1rem;
  width: fit-content;
}

.cert-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #2ea043;
  border-radius: 50%;
  margin-right: 0.5rem;
  box-shadow: 0 0 8px rgba(46, 160, 67, 0.4);
}

.cert-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--mukta-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cert-desc {
  font-size: 0.9rem;
  color: var(--mukta-muted);
  line-height: 1.65;
  margin-bottom: 0;
  flex: 1;
}

/* Certificate Card Responsive */
@media (max-width: 991.98px) {
  .cert-logo-wrapper {
    min-height: 180px;
    padding: 2rem 1.5rem;
  }
  
  .cert-logo {
    max-width: 150px;
    max-height: 120px;
  }
  
  .cert-icon-wrapper i {
    font-size: 4rem;
  }
}

@media (max-width: 767.98px) {
  .cert-card {
    flex-direction: row;
    border-radius: 1.25rem;
    text-align: left;
  }
  
  .cert-logo-wrapper {
    min-height: auto;
    min-width: 130px;
    max-width: 130px;
    padding: 1.25rem;
    border-bottom: none;
    border-right: 1px solid rgba(138, 75, 36, 0.06);
  }
  
  .cert-logo {
    max-width: 100px;
    max-height: 80px;
  }
  
  .cert-icon-wrapper i {
    font-size: 3rem;
  }
  
  .cert-content {
    padding: 1.25rem;
    align-items: flex-start;
  }
  
  .cert-badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .cert-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  
  .cert-desc {
    font-size: 0.825rem;
    line-height: 1.55;
  }
}

@media (max-width: 575.98px) {
  .cert-logo-wrapper {
    min-width: 110px;
    max-width: 110px;
    padding: 1rem;
  }
  
  .cert-logo {
    max-width: 80px;
    max-height: 65px;
  }
  
  .cert-icon-wrapper i {
    font-size: 2.5rem;
  }
  
  .cert-content {
    padding: 1rem;
  }
  
  .cert-title {
    font-size: 1rem;
  }
  
  .cert-desc {
    font-size: 0.8rem;
  }
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

/* Blog Featured Card */
.blog-featured-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(138, 75, 36, 0.1);
  box-shadow: 0 15px 45px rgba(24, 16, 10, 0.08);
  transition: all 0.4s ease;
}

.blog-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(24, 16, 10, 0.12);
}

.blog-featured-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-featured-image {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-featured-card:hover .blog-featured-image img {
  transform: scale(1.05);
}

.blog-featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: linear-gradient(135deg, var(--mukta-primary), #ff8a5c);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 87, 36, 0.3);
}

.blog-featured-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.blog-featured-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--mukta-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-featured-card:hover .blog-featured-title {
  color: var(--mukta-primary);
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.blog-read-time {
  color: var(--mukta-muted);
  font-size: 0.9rem;
}

/* Blog Listing Grid Cards */
.blog-grid-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(138, 75, 36, 0.1);
  box-shadow: 0 8px 25px rgba(24, 16, 10, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(24, 16, 10, 0.12);
}

.blog-grid-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-grid-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-grid-card:hover .blog-grid-image img {
  transform: scale(1.08);
}

.blog-grid-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-grid-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mukta-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-grid-card:hover .blog-grid-title {
  color: var(--mukta-primary);
}

.blog-grid-excerpt {
  font-size: 0.9rem;
  color: var(--mukta-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-grid-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.blog-grid-date {
  color: var(--mukta-muted);
}

.blog-grid-read {
  color: var(--mukta-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-grid-read i {
  transition: transform 0.3s ease;
}

.blog-grid-card:hover .blog-grid-read i {
  transform: translateX(4px);
}

/* ========================================
   BLOG DETAIL PAGE STYLES
   ======================================== */

.blog-detail-main {
  background: #fdfaf7;
}

/* Blog Hero Section */
.blog-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.blog-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 21, 16, 0.95) 0%, rgba(30, 21, 16, 0.6) 50%, rgba(30, 21, 16, 0.3) 100%);
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  max-width: 800px;
}

.blog-date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

/* Breadcrumb Light */
.breadcrumb-light {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-light .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-light .breadcrumb-item a:hover {
  color: #fff;
}

.breadcrumb-light .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* Blog Content */
.blog-content {
  background: #fff;
}

.blog-section {
  margin-bottom: 3rem;
}

.blog-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--mukta-dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.blog-section p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--mukta-muted);
  margin-bottom: 1.25rem;
}

.blog-section p:last-child {
  margin-bottom: 0;
}

.blog-intro {
  font-size: 1.15rem !important;
  line-height: 1.9 !important;
  color: var(--mukta-dark) !important;
}

/* Blog Images */
.blog-figure {
  margin: 2.5rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(24, 16, 10, 0.1);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.blog-figure:hover .blog-image {
  transform: scale(1.03);
}

.blog-figure figcaption {
  background: linear-gradient(135deg, #faf6f2, #fff);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--mukta-muted);
  font-style: italic;
  text-align: center;
  border-top: 1px solid rgba(138, 75, 36, 0.08);
}

.blog-figure-sm {
  margin: 0;
  box-shadow: 0 10px 25px rgba(24, 16, 10, 0.08);
}

.blog-figure-sm .blog-image {
  height: 180px;
  object-fit: cover;
}

.blog-figure-sm figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
}

/* Blog Highlight Card */
.blog-highlight-card {
  background: linear-gradient(135deg, #faf6f2 0%, #fff5f0 100%);
  border: 1px solid rgba(255, 87, 36, 0.12);
  border-radius: 1.25rem;
  padding: 2rem;
  margin: 2rem 0;
}

.highlight-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(138, 75, 36, 0.08);
}

.highlight-item:first-child {
  padding-top: 0;
}

.highlight-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mukta-primary), #ff8a5c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(255, 87, 36, 0.25);
}

.highlight-icon i {
  color: #fff;
  font-size: 1.25rem;
}

.highlight-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mukta-dark);
  margin-bottom: 0.5rem;
}

.highlight-item p {
  font-size: 0.95rem !important;
  margin: 0 !important;
  line-height: 1.7 !important;
}

/* Blog Quote Section */
.blog-quote-section {
  position: relative;
}

.blog-quote {
  background: linear-gradient(135deg, var(--mukta-primary), #ff8a5c);
  border-radius: 1.25rem;
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 15px 40px rgba(255, 87, 36, 0.2);
}

.blog-quote i {
  position: absolute;
  top: -15px;
  left: 2rem;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}

.blog-quote blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
  margin: 0;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Spice Cards */
.spice-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(138, 75, 36, 0.1);
  box-shadow: 0 8px 25px rgba(24, 16, 10, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.spice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(24, 16, 10, 0.12);
}

.spice-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.spice-card:hover .spice-card-img {
  transform: scale(1.05);
}

.spice-card-content {
  padding: 1.25rem;
}

.spice-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mukta-dark);
  margin-bottom: 0.5rem;
}

.spice-card p {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Blog CTA Section */
.blog-cta-section {
  margin-top: 4rem;
}

.blog-cta-box {
  background: linear-gradient(135deg, #faf6f2 0%, #fff5f0 50%, #fff 100%);
  border: 2px solid rgba(255, 87, 36, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.blog-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--mukta-primary), #ff8a5c);
  border-radius: 1.5rem 0 0 1.5rem;
}

.blog-cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mukta-primary), #ff8a5c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(255, 87, 36, 0.25);
}

.blog-cta-icon i {
  font-size: 2rem;
  color: #fff;
}

.blog-cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mukta-dark);
  margin-bottom: 0.5rem;
}

.blog-cta-content p {
  font-size: 1rem !important;
  margin-bottom: 1.25rem !important;
}

/* Blog Footer Section (Tags & Share) */
.blog-footer-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(138, 75, 36, 0.1);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.blog-tag-label {
  font-weight: 600;
  color: var(--mukta-dark);
  font-size: 0.9rem;
}

.blog-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #faf6f2, #fff);
  border: 1px solid rgba(138, 75, 36, 0.12);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--mukta-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-tag:hover {
  background: var(--mukta-primary);
  border-color: var(--mukta-primary);
  color: #fff;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-share-label {
  font-weight: 600;
  color: var(--mukta-dark);
  font-size: 0.9rem;
}

.blog-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #faf6f2, #fff);
  border: 1px solid rgba(138, 75, 36, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mukta-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-share-btn:hover {
  background: var(--mukta-primary);
  border-color: var(--mukta-primary);
  color: #fff;
  transform: translateY(-3px);
}

/* Blog Related Section */
.blog-related {
  background: linear-gradient(180deg, #faf6f2, #fff);
}

/* Blog Responsive Styles */
@media (max-width: 991.98px) {
  .blog-featured-image {
    min-height: 280px;
  }
  
  .blog-featured-content {
    padding: 2rem;
  }
  
  .blog-featured-title {
    font-size: 1.5rem;
  }
  
  .blog-hero {
    min-height: 380px;
  }
  
  .blog-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .blog-cta-box::before {
    width: 100%;
    height: 6px;
    border-radius: 1.5rem 1.5rem 0 0;
  }
}

@media (max-width: 767.98px) {
  .blog-featured-image {
    min-height: 220px;
  }
  
  .blog-featured-content {
    padding: 1.5rem;
  }
  
  .blog-featured-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .blog-featured-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .blog-hero {
    min-height: 320px;
  }
  
  .blog-hero-content {
    padding: 2rem 0;
  }
  
  .blog-title {
    font-size: 1.75rem;
  }
  
  .blog-subtitle {
    font-size: 1rem;
  }
  
  .blog-section h2 {
    font-size: 1.5rem;
  }
  
  .blog-section p {
    font-size: 1rem;
  }
  
  .blog-highlight-card {
    padding: 1.5rem;
  }
  
  .highlight-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .blog-quote {
    padding: 1.5rem;
  }
  
  .blog-quote blockquote {
    font-size: 1rem;
  }
  
  .blog-cta-box {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .blog-cta-icon {
    width: 60px;
    height: 60px;
  }
  
  .blog-cta-icon i {
    font-size: 1.5rem;
  }
  
  .blog-cta-content h3 {
    font-size: 1.25rem;
  }
  
  .blog-footer-section {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .blog-figure-sm .blog-image {
    height: 140px;
  }
  
  .spice-card-img {
    height: 140px;
  }
}

@media (max-width: 575.98px) {
  .blog-featured-content {
    padding: 1.25rem;
  }
  
  .blog-featured-title {
    font-size: 1.1rem;
  }
  
  .blog-hero {
    min-height: 280px;
  }
  
  .blog-hero-content {
    padding: 1.5rem 0;
  }
  
  .blog-title {
    font-size: 1.5rem;
  }
  
  .blog-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .blog-section h2 {
    font-size: 1.35rem;
  }
  
  .blog-intro {
    font-size: 1.05rem !important;
  }
  
  .blog-quote i {
    font-size: 3rem;
    top: -10px;
  }
  
  .blog-tags,
  .blog-share {
    width: 100%;
  }
  
  .blog-grid-image {
    height: 160px;
  }
  
  .blog-grid-content {
    padding: 1.25rem;
  }
  
  .blog-grid-title {
    font-size: 1.05rem;
  }
}