/* ==========================================================================
   HOTEL MANNAN — ABOUT US PAGE (LUXURY DARK EDITORIAL THEME)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. PAGE HERO BANNER
   -------------------------------------------------------------------------- */
.about-hero {
  position: relative;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto 30px;
  padding: 80px 32px 70px;
  border-radius: 4px;
  background: linear-gradient(180deg, #181310 0%, #0d0a08 100%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at 50% 0%, rgba(201, 162, 39, 0.15), transparent 75%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
}

.about-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--brass);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.about-hero .eyebrow span {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--brass);
}

.about-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.2;
  margin: 18px 0 16px;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.about-hero p {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 3.5vw, 2.8rem);
  color: var(--cream);
  text-align: center;
  margin: 12px 0 0;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   2. OUR STORY SECTION
   -------------------------------------------------------------------------- */
.about-story {
  max-width: 1340px;
  margin: 80px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-story-media {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  aspect-ratio: 4 / 5;
  background-color: var(--charcoal-2);
}

.about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brass);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.about-story-copy .eyebrow span {
  width: 20px;
  height: 1px;
  background: var(--brass);
}

.about-story-copy h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.25;
  color: var(--cream);
  margin: 0 0 24px;
}

.about-story-copy p {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-dim);
  margin: 0 0 20px;
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   3. BEHIND THE SCENES / TIMELINE
   -------------------------------------------------------------------------- */
.about-timeline {
  max-width: 1340px;
  margin: 110px auto 0;
  padding: 0 32px;
}

.about-timeline .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brass);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-timeline .eyebrow span {
  width: 20px;
  height: 1px;
  background: var(--brass);
}

.bts-subtitle {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dim);
  text-align: center;
  max-width: 600px;
  margin: 16px auto 0;
}

.bts-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.bts-step {
  position: relative;
  background: #16110e;
  border-radius: 4px;
  padding: 38px 28px 32px;
  text-align: left;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bts-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brass);
  opacity: 0.6;
}

.bts-step .value-icon {
  margin-bottom: 22px;
}

.bts-step h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--cream);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.bts-step p {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ash);
  margin: 0;
}

/* --------------------------------------------------------------------------
   4. CORE VALUES SECTION
   -------------------------------------------------------------------------- */
.about-values {
  max-width: 1340px;
  margin: 100px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: #16110e;
  border-radius: 4px;
  padding: 42px 32px;
  text-align: left;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.12);
  color: var(--brass);
  margin-bottom: 22px;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.value-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--cream);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.value-card p {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ash);
  margin: 0;
}

/* --------------------------------------------------------------------------
   5. FIND US / MAP SECTION
   -------------------------------------------------------------------------- */
.about-map {
  max-width: 1340px;
  margin: 110px auto 110px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.map-info {
  background: linear-gradient(180deg, #181310 0%, #110d0b 100%);
  border-radius: 4px;
  padding: 50px 42px;
  color: var(--cream);
  border: 1px solid rgba(201, 162, 39, 0.3);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-info .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brass);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.map-info .eyebrow span {
  width: 20px;
  height: 1px;
  background: var(--brass);
}

.map-info h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 3.2vw, 2.6rem);
  margin: 16px 0 20px;
  color: var(--cream);
}

.map-address {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin: 0 0 26px;
}

.map-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  padding: 22px 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.map-detail {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.map-detail-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}

.map-detail-value {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  text-align: right;
}

.map-info .btn {
  width: fit-content;
  padding: 14px 32px;
  background: var(--ember);
  color: var(--cream);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.map-info .btn:hover {
  background: var(--ember-light);
  transform: translateY(-2px);
}

.map-frame {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  min-height: 380px;
  background-color: var(--charcoal-2);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* --------------------------------------------------------------------------
   6. LUXURY HOVER ANIMATIONS
   -------------------------------------------------------------------------- */
.about-story-media {
  transition: transform 0.6s ease, box-shadow 0.6s ease, border-color 0.6s ease;
}

.about-story-media:hover {
  transform: translateY(-5px);
  border-color: var(--brass);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.about-story-media img {
  transition: transform 0.8s ease;
}

.about-story-media:hover img {
  transform: scale(1.05);
}

.bts-step,
.value-card {
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.bts-step:hover,
.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--brass);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.bts-step .value-icon,
.value-card .value-icon {
  transition: transform 0.45s ease, background-color 0.45s ease, color 0.45s ease;
}

.bts-step:hover .value-icon,
.value-card:hover .value-icon {
  transform: scale(1.1) rotate(-4deg);
  background: rgba(201, 162, 39, 0.25);
  color: var(--ember-light);
}

.map-frame {
  transition: transform 0.6s ease, border-color 0.6s ease;
}

.map-frame:hover {
  transform: translateY(-4px);
  border-color: var(--brass);
}

/* --------------------------------------------------------------------------
   7. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .bts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .about-hero {
    width: 100%;
    padding: 50px 20px 40px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
    margin-top: 50px;
  }

  .about-story-media {
    aspect-ratio: 16 / 10;
  }

  .about-timeline {
    padding: 0 20px;
    margin-top: 70px;
  }

  .about-values {
    grid-template-columns: 1fr;
    padding: 0 20px;
    margin-top: 70px;
    gap: 20px;
  }

  .about-map {
    grid-template-columns: 1fr;
    padding: 0 20px;
    margin-top: 70px;
    gap: 30px;
  }

  .map-info {
    padding: 38px 28px;
  }
}

@media (max-width: 520px) {
  .bts-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   HOTEL MANNAN — GLOBAL BLACK THEME & LIGHT LAVENDER TEXT OVERRIDE
   ========================================================================== */

/* 1. Global Color Variables Override */
:root {
  --charcoal: #050404;
  --charcoal-2: #0e0b10;
  --cream: #E6E6FA !important;          /* Light Lavender primary text */
  --cream-2: #050404 !important;
  --text-dim: #D8BFD8 !important;       /* Soft Lavender/Thistle secondary text */
  --ash: #C8A2C8 !important;            /* Muted Lavender accent */
  --ink: #E6E6FA !important;
  --ink-soft: #D8BFD8 !important;
}

/* 2. Base Dark/Black Background & Lavender Text */
body, 
html {
  background-color: #050404 !important;
  color: #E6E6FA !important;
}

/* Force light lavender color across all textual elements */
h1, h2, h3, h4, h5, h6, 
p, span, li, a, label, 
div, blockquote, figcaption, input, textarea {
  color: #E6E6FA;
}

/* Secondary & description copy in soft lavender */
.subtitle, 
.menu-item-desc, 
.journey-text, 
.mission-text, 
.delivery-text, 
p.quote-text,
.about-hero p,
.gallery-hero p,
.contact-hero p,
.leadership-hero p,
.menu-hero p,
.card-description,
.bts-subtitle,
.intro-text,
.map-address {
  color: #D8BFD8 !important;
}

/* 3. Preserve Background Images with Dark/Black Tint Overlays */
.order-banner-section,
.mannan-grand-footer,
.hero,
.gallery-hero,
.about-hero,
.contact-hero,
.leadership-hero,
.menu-hero {
  background-color: #000000 !important;
}

/* Keep dark black dimming overlays so background photos remain visible */
.order-banner-overlay,
.footer-bg-overlay,
.hero::before,
.about-hero::before,
.gallery-hero::before,
.leadership-hero::before,
.menu-hero::before {
  background: rgba(5, 4, 4, 0.88) !important;
}

/* 4. Cards, Drawers, Lightboxes & Section Containers */
.menu-item,
.testimonial-card,
.pillar-box,
.bts-step,
.value-card,
.contact-info-card,
.footer-center-card,
.philosophy-card,
.info-card,
.ticket,
.leader-card,
.menu-section-block,
.menu-page,
.nav-drawer,
.slide-menu-drawer,
.lightbox,
.gallery-lightbox {
  background: #0d0a0f !important;
  border-color: rgba(200, 162, 200, 0.22) !important;
}

/* 5. Inputs & Forms */
input, textarea {
  background: #140e18 !important;
  border-color: rgba(200, 162, 200, 0.3) !important;
  color: #E6E6FA !important;
}
/* ==========================================================================
   HOTEL MANNAN — AESTHETIC DEEP BLACK & SOLID LIGHT LAVENDER THEME
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=IBM+Plex+Mono:wght@400;500;600&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Color Palette: Deep Pitch Black & Solid Aesthetic Light Lavender */
  --charcoal: #000000;
  --charcoal-2: #08080a;
  --bg-deep-black: #000000;
  --card-black: #08080a;
  --card-border-lavender: rgba(224, 208, 255, 0.22);

  --lavender-primary: #fff8e6;   /* Crisp, high-contrast solid light lavender */
  --lavender-secondary: #D8C4F8; /* Soft solid lavender for descriptions */
  --lavender-accent: #C5A3FF;    /* Aesthetic glowing lavender accent */
  --lavender-bright: #E8D5FF;    /* Bright solid headings */
  --lavender-muted: #B39DDB;

  --cream: #F0E6FF !important;
  --cream-2: #000000 !important;
  --text-dim: #D8C4F8 !important;
  --ash: #B39DDB !important;
  --ink: #F0E6FF !important;
  --ink-soft: #D8C4F8 !important;
  --brass: #C5A3FF !important;
  --ember: #B388FF !important;
  --ember-light: #D1C4E9 !important;
}

/* ---------- GLOBAL RESET & BASE STYLES ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: #000000 !important;
}

body {
  font-family: 'Work Sans', sans-serif !important;
  background-color: #000000 !important;
  color: var(--lavender-primary) !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Solid Aesthetic Typography Override */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif !important;
  font-weight: 700 !important;
  color: var(--lavender-bright) !important;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

p, span, li, a, label, div, blockquote, figcaption {
  color: var(--lavender-primary);
}

/* Secondary / Subtitle text */
.subtitle,
.menu-item-desc,
.journey-text,
.mission-text,
.delivery-text,
p.quote-text,
.about-hero p,
.gallery-hero p,
.contact-hero p,
.leadership-hero p,
.menu-hero p,
.card-description,
.bts-subtitle,
.intro-text,
.map-address,
.footer-address-block p {
  color: var(--lavender-secondary) !important;
  font-weight: 500;
}

.eyebrow, .box-label, .map-detail-label, .contact-info-label {
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 700 !important;
  color: var(--lavender-accent) !important;
  letter-spacing: 0.18em !important;
}

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

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

/* ---------- TOP BAR & NAVIGATION ---------- */
.topbar {
  background: #000000 !important;
  border-bottom: 1px solid rgba(197, 163, 255, 0.2) !important;
}

.topbar-hours svg, .topbar-contact svg {
  color: var(--lavender-accent) !important;
}

header, .site-header, .main-navbar {
  background: rgba(0, 0, 0, 0.96) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 163, 255, 0.2) !important;
}

.logo, .brand-title, .navbar-logo {
  font-family: 'Fraunces', serif !important;
  font-weight: 800 !important;
  font-size: 1.4rem;
  color: var(--lavender-bright) !important;
  letter-spacing: 0.05em;
}

.nav-cta, .header-btn-order {
  background: #B388FF !important;
  color: #000000 !important;
  font-weight: 700 !important;
  font-family: 'IBM Plex Mono', monospace !important;
  border-radius: 4px;
  padding: 10px 22px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(179, 136, 255, 0.3);
}

.nav-cta:hover, .header-btn-order:hover {
  background: #D1C4E9 !important;
  transform: translateY(-2px);
}

/* Sidebar Drawer Navigation */
.nav-links, .nav-drawer, .slide-menu-drawer {
  background: #050507 !important;
  border-right: 1px solid rgba(197, 163, 255, 0.25) !important;
}

.nav-links li, .drawer-exact-menu li {
  border-bottom: 1px solid rgba(197, 163, 255, 0.12) !important;
}

.nav-links a, .drawer-exact-menu a {
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 600 !important;
  color: var(--lavender-primary) !important;
}

.nav-links a.active, .drawer-exact-menu li.active a, .diamond-icon {
  color: var(--lavender-accent) !important;
}

/* ---------- SECTIONS & BACKGROUND PRESERVATION ---------- */
section, .mannan-section, .journey-section, .mission-section, .strength-gallery-section, .look-gallery-section, .delivery-partners-section {
  background-color: #000000 !important;
  border-color: rgba(197, 163, 255, 0.18) !important;
}

/* Hero & Banner Sections with Images Overlays */
.hero, .order-banner-section, .mannan-grand-footer, .gallery-hero, .about-hero, .contact-hero, .leadership-hero, .menu-hero {
  background-color: #000000 !important;
}

.order-banner-overlay, .footer-bg-overlay {
  background: rgba(0, 0, 0, 0.88) !important;
}

/* Buttons */
.btn-primary, .btn-order-now {
  background: #B388FF !important;
  color: #000000 !important;
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 700 !important;
  border: 1px solid #B388FF !important;
  box-shadow: 0 6px 20px rgba(179, 136, 255, 0.35) !important;
}

.btn-primary:hover, .btn-order-now:hover {
  background: #D1C4E9 !important;
  border-color: #D1C4E9 !important;
  transform: translateY(-2px);
}

.btn-ghost, .btn-clear-filter, .filter-btn {
  border: 1px solid rgba(197, 163, 255, 0.4) !important;
  color: var(--lavender-primary) !important;
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 600 !important;
  background: rgba(197, 163, 255, 0.05) !important;
}

.btn-ghost:hover, .btn-clear-filter:hover, .filter-btn.active, .filter-btn:hover {
  background: #B388FF !important;
  color: #000000 !important;
  border-color: #B388FF !important;
}

/* ---------- CARDS & CONTAINERS ---------- */
.philosophy-card,
.info-card,
.ticket,
.testimonial-card,
.strength-card,
.pillar-box,
.bts-step,
.value-card,
.contact-info-card,
.footer-center-card,
.leader-card,
.menu-item,
.partner-badge {
  background: #08080a !important;
  border: 1px solid rgba(197, 163, 255, 0.22) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
}

.philosophy-card:hover,
.info-card:hover,
.ticket:hover,
.testimonial-card:hover,
.strength-card:hover,
.pillar-box:hover,
.bts-step:hover,
.value-card:hover,
.contact-info-card:hover,
.leader-card:hover,
.menu-item:hover {
  border-color: rgba(197, 163, 255, 0.6) !important;
  transform: translateY(-4px);
}

/* Form Controls */
input, textarea, select {
  background: #0a0810 !important;
  border: 1px solid rgba(197, 163, 255, 0.3) !important;
  color: var(--lavender-primary) !important;
  font-family: 'Work Sans', sans-serif !important;
  font-size: 0.95rem !important;
}

input:focus, textarea:focus {
  border-color: #B388FF !important;
  outline: none;
}

/* Footer Accent */
.mannan-grand-footer {
  border-top: 1px solid rgba(197, 163, 255, 0.2) !important;
}

.footer-bottom-credit p {
  color: var(--lavender-muted) !important;
}
/* Header मधील MANNAN नाव लपवण्यासाठी */
.site-header .brand-title,
header .brand-title {
  display: none !important;
}
/* ==========================================
   FOOTER LOGO - CLEAN (NO SHADOWS)
   ========================================== */

.footer-card-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 28px;
  padding: 10px 0;
}

.footer-logo-img {
  width: clamp(180px, 45%, 240px) !important;
  max-width: 90% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  
  /* सर्व शॅडो आणि ग्लो बंद केले आहेत */
  filter: none !important;
  box-shadow: none !important;
}
/* ==========================================
   FOOTER LOGO - BIG & PERFECT FIT
   ========================================== */

/* सेंटर बॉक्सची साईझ आणि स्पेसिंग योग्य केली */
.footer-center-card {
  padding: 40px 24px !important;
}

.footer-card-logo {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto 20px auto !important;
  width: 100% !important;
}

.footer-logo-img {
  /* लोगोची विड्थ बॉक्सनुसार एकदम मोठी केली */
  width: 280px !important;
  max-width: 85% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  
  /* कुठलीही शॅडो किंवा ग्लो नाही */
  filter: none !important;
  box-shadow: none !important;
}

/* मोबाईल स्क्रीनसाठी ॲडजस्टमेंट */
@media (max-width: 480px) {
  .footer-logo-img {
    width: 220px !important;
    max-width: 90% !important;
  }
}