/* 1. Google Fonts Import (Modern & Elegant) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --maroon: #800000;
  --gold: #d4af37;
  --white: #ffffff;
  --dark: #121212;
  --light-gray: #f4f4f4;
  --font-main: 'Outfit', sans-serif;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  margin: 0;
  padding: 0;
}

/* 2. Navbar Styling */
.navbar {
  background: var(--white) !important;
  padding: 6px 0;
  transition: 0.4s;
  border-bottom: 2px solid #d4af37;
  position: relative;
  z-index: 9999;
}

.logo {
  height: 100px;
}

.nav-link.active {
  position: relative;
  color: var(--gold) !important; /* सक्रिय लिंकचा रंग गोल्ड केला */
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; /* पूर्ण रुंदी */
  height: 2px; /* रेषेची जाडी थोडी वाढवली */
  background-color: var(--gold); /* रेषेचा रंग */
}

/* आणि ड्रॉपडाउनच्या लिंकसाठी एक खास नियम: */
.dropdown-item {
  pointer-events: auto; /* ड्रॉपडाउन आयटम्स क्लिक होतील याची खात्री करा */
}

@media (max-width: 991px) {
  .nav-link.active::after {
    display: none; /* मोबाइलवर रेषा नको असल्यास */
  }
}

@media (max-width: 768px) {
  /* लोगोची उंची मोबाइलसाठी कमी केली */
  .navbar-brand img,
  .logo {
    height: 63px !important; /* तुम्हाला हवी तशी साईज (उदा. 30px किंवा 35px) सेट करा */
    width: auto !important; /* यामुळे लोगो स्ट्रेच होणार नाही */
  }
}

.nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  font-size: 16px;
  padding: 8px 10px !important;
  transition: 0.3s;
}

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

/* 3. Modern Dropdown */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
  padding: 15px;
  width: 320px;
}

.dropdown-item {
  padding: 12px 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: 0.3s;
}

.dropdown-item i {
  color: var(--gold);
  margin-right: 12px;
  width: 20px;
}

.dropdown-item:hover {
  background: var(--maroon);
  color: var(--white) !important;
}

.dropdown-item:hover i {
  color: var(--white);
}

/* 4. Attractive Hero Section */
.carousel-item img {
  height: 85vh;
  object-fit: cover;
  /* filter: brightness(0.5); */
}

.carousel-caption {
  top: 35%;
  bottom: auto;
}

.display-3 {
  font-weight: 800;
  color: var(--gold);
  text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

.fs-4 {
  font-weight: 300;
  color: var(--white);
  margin-bottom: 30px;
}

/* 5. Buttons with Glow Effect */
.btn-gold {
  background: var(--gold);
  color: #000;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-gold:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-outline-light:hover {
  background: var(--white);
  color: #000;
}

/* नेव्हिगेशन लिंक आणि ड्रॉपडाउन यांच्यातील अंतर भरून काढण्यासाठी */
.dropdown {
  position: relative;
}

/* ड्रॉपडाउन नेहमी लिंकला लागून असावा */
.dropdown-menu {
  display: none; /* सुरुवातीला लपवलेले */
  position: absolute;
  top: 100%;
  left: -80px;
  margin: 0;
  padding: 10px 0;
  border-radius: 12px;
}

/* माऊस ड्रॉपडाउनवर असताना तो दिसणार */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ॲनिमेशन स्टाईल */
.animate-text {
  animation: fadeInUp 1s ease-out;
}

.animate-subtext {
  animation: fadeInUp 1.5s ease-out;
}

.animate-buttons {
  animation: fadeInUp 2s ease-out;
}

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

/* एरो (Arrows) अधिक उठून दिसण्यासाठी */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  /* background-color: var(--maroon); */
  border-radius: 50%;
  padding: 20px;
}

/* स्लाइडरचा वेग वाढवण्यासाठी (0.5s ऐवजी 0.3s) */
.carousel-item {
  transition: transform 0.5s ease-in-out;
}

/* हेडलाईन अतिशय बोल्ड आणि मोठी करण्यासाठी */
.main-headline {
  font-size: 50px !important; /* खूप मोठी साईझ */
  font-weight: 900 !important; /* सर्वात बोल्ड */
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.1;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

/* मोबाइल स्क्रीनसाठी स्लाइडरची उंची कमी करा */
@media (max-width: 768px) {
  .carousel-item img {
    height: 50vh !important; /* मोबाइलवर फक्त ५०% स्क्रीन व्यापेल */
  }

  .main-headline {
    font-size: 2.5rem !important; /* हेडलाईन छोटी करा */
  }

  .carousel-caption {
    top: 20% !important; /* कॅप्शन वर घ्या */
    padding: 0 10px;
  }

  .btn-gold,
  .btn-outline-light {
    padding: 10px 20px !important;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .dropdown-menu {
    position: static !important; /* मोबाइलवर ड्रॉपडाउनला फ्लोटिंग न ठेवता खाली उघडेल */
    box-shadow: none;
    width: 100%;
    border-left: 2px solid var(--maroon);
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  /* मेनूचा बॅकग्राउंड आणि पॅडिंग */
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  /* मेनू आयटम्सना अधिक जागा (Spacing) द्या */
  .nav-item {
    border-bottom: 1px solid #eee;
  }

  .nav-link {
    font-size: 14px !important;
    padding: 10px 0 !important;
    font-weight: 600 !important;
  }

  /* ड्रॉपडाउन मेनूची स्टाईल */
  .dropdown-menu {
    background: #f8f9fa;
    border: none;
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  /* 1. Slider height 28vh keli */
  .carousel-item img {
    height: 35vh !important;
    object-fit: cover;
  }

  /* 2. Content adjust kela */
  .carousel-caption {
    top: 5% !important; /* Content var chya bajula ghetla */
    padding: 30px 10px !important;
  }

  /* 3. Headline ani Text size kami keli */
  .main-headline {
    font-size: 1.2rem !important;
    margin-bottom: 5px !important;
  }

  .fs-3 {
    font-size: 0.8rem !important;
    margin-bottom: 10px !important;
  }

  /* 4. Buttons adjust kele */
  .btn-gold,
  .btn-outline-light {
    padding: 4px 10px !important;
    font-size: 0.7rem !important;
    margin: 2px !important;
  }
}

/* मोबाइलसाठी हे सेटिंग (जेणेकरून उंची कमी पडणार नाही) */
@media (max-width: 768px) {
  .sub-headline-wrapper {
    display: none;
  } /* खूप जास्त कंटेंट असल्यास मोबाइलवर लपवणे चांगले */
}

/* डेस्कटॉप स्क्रीनसाठी (जिथे स्क्रीन रुंद आहे) */
@media (min-width: 992px) {
  .carousel-caption {
    top: 18% !important; /* हे व्हॅल्यू कमी-जास्त करून तुम्ही मजकूर वर-खाली सेट करू शकता */
    bottom: auto;
  }
}

.sub-headline-wrapper {
  margin: 20px auto;
  padding: 20px;
  max-width: 850px;

  /* Glassmorphism Effect (Blur Background) */
  background: rgba(255, 255, 255, 0.1); /* पांढरा पण पारदर्शक */
  backdrop-filter: blur(10px); /* हा मुख्य Blur इफेक्ट आहे */
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.company-tagline {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.highlight-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--gold); /* हे गोल्ड रंगात दिसेल */
  display: block;
  margin-top: 10px;
  line-height: 1.4;
}

/* मोबाइलसाठी उंची कमी असल्याने हा इफेक्ट थोडा बदलूया */
@media (max-width: 768px) {
  .sub-headline-wrapper {
    padding: 10px;
    margin: 10px;
    backdrop-filter: blur(5px);
  }
  .company-tagline {
    font-size: 0.8rem;
  }
  .highlight-text {
    font-size: 0.7rem;
  }
}

/* since 2000 साठी मोठी आणि आकर्षक स्टाईल */
.highlight-big {
  font-size: 23px; /* मजकूर मोठा */
  font-weight: 600;
  color: var(--gold); /* गोल्ड रंग */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

  margin-top: 10px;
}

.about-luxury-section {
  padding: 80px 0;
  background-color: #fff;
}

.main-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.1;
  color: #111; /* मुख्य मजकूर काळा */
}

.small-title {
  display: block;
  font-family: var(--font-main);
  font-size: 0.8rem;
  letter-spacing: 5px;
  color: #950204; /* गोल्ड कलर */
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* खालच्या हेडलाईन मधील 'Elevator Manufacturer' ला गोल्ड करण्यासाठी */
.main-heading b {
  color: var(--gold); /* हा शब्द गोल्ड दिसेल */
  font-weight: 800;
}

.stats-bar-minimal {
  gap: 40px;
  margin: 40px 0;
  padding: 20px 0;
}

/* मोबाईलसाठी (Screen < 576px) */
@media (max-width: 576px) {
  .stats-bar-minimal {
    display: grid; /* Flex ऐवजी Grid वापरले */
    grid-template-columns: repeat(3, 1fr); /* ३ कॉलम्स */
    gap: 44px;
    text-align: center;
  }

  .stat-divider {
    display: none; /* मोबाईलवर मधले Dividers काढून टाकले */
  }

  .stat-value {
    font-size: 1.2rem; /* व्हॅल्यू थोडी लहान केली */
    display: block;
  }

  .stat-label {
    font-size: 0.7rem; /* लेबल मोबाईलसाठी परफेक्ट केले */
    display: block;
  }
}

.stat-group {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2.1rem;
  font-weight: 800;
  color: #111;
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #777;
  margin-top: 5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: #ddd;
}

.brand-paragraph p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* Quote Box Styling */
.quote-box {
  border-left: 4px solid var(--gold);
  padding: 20px;
  background: #fdfdfd;
}

.quote-text {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.quote-sub {
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: #888;
}

.img-frame {
  border: 8px solid #f9f9f9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.btn-luxury {
  display: inline-block;
  padding: 15px 40px;
  background: #111; /* डार्क इंडस्ट्रियल बॅकग्राउंड */
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: none;
  /* फक्त खालच्या बाजूला गोल्डन बॉर्डर - हे एकदम रॉयल वाटते */
  border-bottom: 4px solid var(--gold);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-luxury:hover {
  background: #000;
  border-bottom: 4px solid #fff; /* होव्हर केल्यावर बॉर्डर पांढरी होईल */
  color: var(--gold); /* अक्षर गोल्ड होतील */
  transform: translateY(-2px);
}

.premium-stats {
  padding: 0px 0px 57px;
  background: #fff;
}

/* मजकुरासाठी स्टाईल */
.stat-circle span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #555;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.stats-container {
display: flex;
    justify-content: center; /* मधोमध अलाईन करण्यासाठी */
    align-items: center;
    flex-wrap: wrap;
    gap: 60px; /* सर्कल्समध्ये थोडी जास्त जागा */
    padding: 60px 20px;
}

.stat-card {
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 190px;  /* थोडी रुंदी वाढवली */
    height: 190px; /* थोडी उंची वाढवली */
    border: 2px solid #9191914b;
    border-radius: 50%;
    font-size: 2.2rem; /* फॉन्ट थोडा कमी केला, जेणेकरून वर्तुळात बसेल */
    font-weight: 800;
    color: #980204;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
    padding: 10px; /* आतून थोडी जागा */
}

.stat-card:hover {
 border-color: #d4af37; /* येथे तुमची 'gold' कलर कोड टाका */
    background: #fdfdfd;
    transform: scale(1.05); /* 1.1 ऐवजी 1.05 केल्यास जास्त कंट्रोल राहील */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card span {
font-size: 0.65rem; /* मजकूर वर्तुळात बसण्यासाठी फॉन्ट थोडा कमी केला */
    text-transform: uppercase;
    color: #777;
    margin-top: 8px;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 1.1; /* ओळींमधील अंतर */
    display: block;
    max-width: 140px; /* मजकूर एका मर्यादेत राहील */
}


.products-container {
    display: grid;
    /* खालील ओळीत '4' ऐवजी '3' करा */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    padding: 50px 20px;
}


.products-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  min-height: 650px;
}
.overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 23, 42, 0.904), rgba(15, 23, 42, 0.856));
}
.content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 40px;
}

.section-title {
  font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(to right, #e9bb29, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* ग्रेडियंट टेक्स्ट इफेक्ट */
}

/* शीर्षकाच्या खाली एक लहान रेषा */
.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #c5a059;
    margin: 20px auto 0 auto;
}

.section-sub {
  font-size: 1.3rem;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-weight: 300;
  line-height: 1.6;
  border-top: 1px solid #d4af37; /* सब-हेडलाईनला वरून एक गोल्ड लाईन */
  border-bottom: 1px solid #d4af37;
  padding: 15px 0;
}

.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
}
.prod-slide {
  flex: 0 0 calc(33.333% - 20px); /* 100% ला 3 भागांत विभागले आणि गॅप वजा केला */
  min-width: 260px;
  height: 350px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.39);
  transition: 0.5s;
}
.prod-slide:hover {
  transform: translateY(-15px);
  border-color: #d4af37;
}


/* नवीन मजकूर (जो माऊस नेल्यावर दिसेल) */
.prod-slide .hover-text {
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* बॅकग्राउंडला थोडी पारदर्शकता (Transparency) द्या */
    background: rgba(148, 119, 44, 0.85); 
    color: #fff;
    display: flex;
    flex-direction: column; /* टेक्स्ट आणि बटण एकाखाली एक येण्यासाठी */
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: 0.5s ease;
}

/* माऊस नेल्यावर काय व्हावे */
.prod-slide:hover .hover-text {
    opacity: 1; /* माऊस नेल्यावर दिसेल */
}

.prod-slide:hover .overlay {
    opacity: 0; /* सध्याचे नाव लपेल */
}


.hover-text .hover-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    border: 1px solid #ffffff; /* पांढरी बॉर्डर, जेणेकरून गोल्ड बॅकग्राउंडवर उठून दिसेल */
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.4s ease;
}

.hover-text .hover-btn:hover {
    background: #ffffff;
    color: #94772c; /* गोल्ड टेक्स्ट */
    font-weight: 600;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(transparent, #000);
  text-align: center;
}
.overlay h3 {
  font-size: 1.1rem;
  margin-bottom: 3px;
}
.overlay a {
  color: #d4af37;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: none;
}
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.nav-btn {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 15px 25px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

/* मोबाईलसाठी सर्व सेक्शनना रिस्पॉन्सिव्ह बनवणे */
@media (max-width: 768px) {
  /* पूर्ण वेबसाइटची रुंदी फिक्स करणे */
  body,
  html {
    overflow-x: hidden;
    width: 100%;
  }

  /* सर्व कंटेनरना मोबाईलसाठी पॅडिंग देणे */
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* इमेज मोबाईलमध्ये ओव्हरफ्लो होऊ नये म्हणून */
  img {
    max-width: 100%;
    height: auto;
  }

  /* हेडर फॉन्ट मोबाईलसाठी लहान करणे */
  .section-title {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 576px) {
  .stats-bar-minimal {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr); /* ३ कॉलम्स */
    gap: 10px;
    text-align: center;
  }
  .stat-divider {
    display: none;
  } /* मोबाईलवर डिव्हायडर लपवा */
  .stat-value {
    font-size: 1.1rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
}

/* मोबाईल व्ह्यूसाठी इमेज परफेक्ट सेट करण्यासाठी */
@media (max-width: 768px) {
  .prod-slide {
    min-width: 100% !important; /* मोबाईलवर पूर्ण रुंदी घेईल */
    height: 300px !important; /* उंची थोडी वाढवा म्हणजे इमेज नीट दिसेल */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  /* जर तुम्ही <img> टॅग वापरत असाल तर */
  .prod-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* इमेजचा आकार न बिघडवता फिट करेल */
  }
}

/* Container and Section */
.sje-process-section {
  padding: 50px 5%;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

/* Card Styling */
.process-card {
  background: #fff;
  padding: 20px 10px;
  text-align: center;
  border-left: 4px solid #d4af37;
  transform: skewX(-5deg);
  box-shadow: 6px 6px 0px #e2e8f0;
}

/* Delivery Highlight Card */
.process-card.highlight {
  background: #d4af37;
  box-shadow: 6px 6px 0px #b8860b;
}

/* Icons & Text */
.card-icon {
  font-size: 1.5rem;
  color: #1a365d;
  display: block;
  margin-bottom: 10px;
}

.highlight .card-icon,
.highlight .card-text {
  color: #fff !important;
}

.card-text {
  margin: 0;
  font-size: 20px;
  color: #1a365d;
  transform: skewX(0deg);
  font-weight: 700;

}

/* Heading */
.sje-title {
  font-size: 2rem;
  font-weight: 900;
  color: #1a365d;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -1px;
}
/* सेंटर अलाइनमेंट */
.process-header {
  text-align: center;
  margin-bottom: 60px;
}

/* HOW WE WORK - हायलाईटेड */
.main-heading1 {
  display: inline-block;
  background: #d4af37; /* गोल्ड बॅकग्राउंड */
  color: #ffffff; /* पांढरा मजकूर */
  padding: 8px 25px;
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  border-radius: 50px; /* गोलाकार लूक */
}

/* सब-हेडिंग - कमी आकार */
.sub-heading {
  font-size: 1.8rem; /* आकार कमी केला */
  font-weight: 700;
  color: #1a365d;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 700px;
}

.why-choose-section {
  padding: 100px 5%;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 30px;
  align-items: center;
}

/* मेगा कार्ड्स - थोडे मोठे आणि आकर्षक */
.feature-card {
  background: #ffffff;
  padding: 15px 20px; /* उंची कमी करण्यासाठी पॅडिंग कमी केले */
  margin-bottom: 25px; /* कार्ड्समध्ये गॅप वाढवला */
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  background: #1a365d;
  color: #ffffff;
  transform: translateX(-10px);
}

.feature-card:hover .icon-box {
  background: #ffffff;
  color: #1a365d;
  transform: scale(1.1);
}

.icon-box {
  /* गोल्ड ग्रेडियंट लूक */
  background: linear-gradient(135deg, #d4af37, #f7d465);
  color: #1a365d;
 width: 50px;       /* आयकॉनच्या बॉक्सला रुंदी दिली */
    height: 50px;      /* उंची दिली */
    min-width: 50px;   /* हे खूप महत्त्वाचे आहे, जेणेकरून बॉक्स दबणार नाही */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4e4bc; /* तुम्हाला हवा तो बॅकग्राउंड कलर */
    border-radius: 8px;
    font-size: 24px;   /* आयकॉनची साईज मोठी केली */
    color: #333;       /* आयकॉनचा रंग */
    margin-right: 15px;
}

/* इमेजला 'फ्लोटिंग' लूक */
.image-col {
  position: relative;
  padding: 20px;
}
.image-col img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: rotate(2deg); /* किंचित तिरकी इमेज */
  transition: 0.5s;
}
.image-col:hover img {
  transform: rotate(0deg) scale(1.02);
}

.why-header {
  text-align: center;
  margin-bottom: 30px;
}

/* टायटलसाठी ग्रेडियंट लूक */
.gradient-title {
  font-size: 3.0rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #1a365d, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

/* सब-टेक्स्टसाठी मॉडर्न स्टाईल */
.sub-title {
  font-size: 1.2rem;
  color: #4a5568;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px 20px;

  background: #f8f9fa;
  border-radius: 4px;
}

/* सेक्शन कंटेनर */
.client-section {
  padding: 80px 5%;
  position: relative;
  background:
    linear-gradient(rgba(15, 23, 42, 0.678), rgba(15, 23, 42, 0.829)),
    url('images/client-bg.jpg'); /* इकडे तुमचा फोटो टाका */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #ffffff;
}

/* हेडिंग अधिक उठून दिसण्यासाठी */
.section-title {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}
.sub-headline {
  font-size: 1.4rem;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 500;
}
.description-text {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
}

/* लोगो कार्ड्स */
.logo-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}
.logo-slider {
  display: flex;
  animation: scroll-loop 25s linear infinite;
  width: max-content;
}
.logo-slider:hover {
  animation-play-state: paused;
}

.logo-item {
  margin: 0 30px;
  min-width: 160px;
  height: 90px;
  background: #ffffff; /* लोगोसाठी पांढरा बॉक्स - आता स्पष्ट दिसेल */
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.logo-item img {
  max-width: 100%;
  max-height: 70%;
  transition: 0.4s;
}
.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}
.logo-item:hover img {
  filter: grayscale(0%);
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.maintenance-section {
  padding: 100px 5%;
  background: radial-gradient(circle at top right, #f8fafc, #ffffff);
  text-align: center;
}

.m-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  perspective: 1000px; /* 3D इफेक्टसाठी */
}

.new-card {
  width: 340px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px); /* ग्लास इफेक्ट */
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

/* 3D ॲनिमेशन - होव्हरवर कार्ड फिरेल */
.new-card:hover {
  transform: rotateY(10deg) translateY(-20px);
  border: 1px solid #d4af37;
}

.new-card h3 {
  font-size: 1.6rem;
  color: #1a365d;
  margin-bottom: 20px;
  background: linear-gradient(to right, #1a365d, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* ग्रेडियंट टेक्स्ट */
}

/* ॲनिमेशनची सुरुवात */
.new-card {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px) rotateX(-10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.main-title {
  font-size: 40px;
  font-weight: 900;
  color: #1a365d;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  /* टेक्स्टला थोडा डेप्थ देण्यासाठी */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* हेडिंगच्या खालील स्टायलिश अ‍ॅनिमेटेड लाईन */
.main-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f6e05e);
  transition: all 0.5s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* जेव्हा पेज लोड होईल तेव्हा लाईन दिसेल */
.main-title.animate::after {
  width: 100px; /* लाईनची लांबी */
}

/* सब-हेडिंगला थोडे अधिक प्रीमियम लूक */
.sub-headline1 {
  font-size: 1.1rem;
  color: #980105;
  font-weight: 500;
  margin-bottom: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* तीन भागांना वेगळे करणारी ओळ */
.divider-text span {
  padding: 0 15px;
  position: relative;
}

.divider-text span:not(:last-child)::after {
  content: '|';
  color: #d4af37; /* गोल्डन रंगाची ओळ */
  margin-left: 15px;
  font-weight: 300;
}

/* Footer Layout */
.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 59px 20px 0px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr; /* कॉन्टॅक्टसाठी जास्त जागा */
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Headings */
.footer h4 {
  color: #d4af37;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

/* Contact Details */
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-block i {
  color: #d4af37;
  font-size: 1.2rem;
  margin-top: 5px;
}

/* CIN Styling */
.cin-text {
  font-size: 15px;
  color: #94a3b8;
  margin-top: -15px;
  margin-bottom: 25px;
  padding-left: 32px;
  font-family: monospace;
}

/* Product List (Eka khali ek) */
.prod-list {
  list-style: none;
  padding: 0;
}
.prod-list li {
  padding: 10px 0;
  border-bottom: 1px solid #1e293b;
  font-size: 0.95rem;
  transition: 0.3s;
}
.prod-list li:before {
  content: '◆';
  color: #d4af37;
  margin-right: 10px;
}
.prod-list li:hover {
  color: #d4af37;
  padding-left: 10px;
}

/* सामान्य लिंकचा रंग */
.prod-list a {
    color: #c5a059 !important; /* इथे तुमचा हवा तो रंग कोड (उदा. गोल्डन) टाका */
    text-decoration: none;    /* लिंक खालची रेघ काढण्यासाठी */
    transition: 0.3s;         /* रंग बदलताना स्मूथ इफेक्टसाठी */
}

/* लिंकवर माउस नेल्यावर (Hover) रंग बदलण्यासाठी */
.prod-list a:hover {
    color: #8a713e !important; /* होव्हर केल्यावर थोडा गडद रंग */
    text-decoration: underline; /* हवी असल्यास रेघ ठेवा */
}

/* Tagline Box */
.tagline-section {
  background: linear-gradient(145deg, #1a2233, #0f1420); /* मेटल ग्रेडियंट */
  border: 2px solid #d4af37; /* गोल्डन बॉर्डर */
  padding: 25px;
  text-align: center;
  border-radius: 5px;
  max-width: 400px; /* रुंदी मर्यादित */
  margin: 20px 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* टॅगलाईन हेडिंग */
.tagline-section h5 {
  font-size: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 10px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #d4af37;
  display: inline-block;
  padding-bottom: 5px;
}

/* सर्व्हिसेस मजकूर */
.tagline-section p {
  font-size: 0.9rem;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  font-weight: 600;
}

/* Mobile view (Screen width 768px पेक्षा कमी असेल तर) */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr; /* सर्व कॉलम एका खाली एक */
    gap: 30px;
  }

  .footer h4 {
    margin-bottom: 15px;
  }

  /* प्रोडक्ट लिस्ट सेंटरमध्ये */
  .prod-list {
    align-items: center;
  }

  /* टॅगलाईनची रुंदी मोबाइलसाठी अजून कमी */
  .tagline-section {
    max-width: 90%;
    margin: 20px auto;
  }

  /* मॅपची उंची मोबाइलवर कमी केली */
  .footer-container > div:last-child > div {
    height: 200px;
  }
}

.footer-bottom {
  text-align: center;
  padding: 20px 10px;
  border-top: 1px solid #1e293b; /* वर एक पातळ रेषा */
  margin-top: 40px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-bottom a {
  color: #d4af37; /* गोल्डन रंग - क्लिक करण्यायोग्य */
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}

.footer-bottom a:hover {
  color: #ffffff; /* होव्हर केल्यावर पांढरा रंग */
  text-decoration: underline;
}


@media (max-width: 576px) {
    .process-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* एका ओळीत २ कार्ड्स */
        gap: 10px !important;
        padding: 10px !important;
    }

    .process-card {
        padding: 15px 5px !important; /* जागा वाचवण्यासाठी पॅडिंग कमी केली */
    }

    .card-icon {
        font-size: 1.4rem !important; /* आयकॉन लहान केला */
        margin-bottom: 5px !important;
    }

    .card-text {
        font-size: 0.8rem !important; /* फॉन्ट साईज लहान केली */
        line-height: 1.2;
    }
}


/* डेस्कटॉपसाठी (जसे तुमचे आहे) */
@media (min-width: 992px) {
    .why-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr; /* डावी बाजू - इमेज - उजवी बाजू */
        align-items: center;
        gap: 30px;
    }
}

/* मोबाइलसाठी */
@media (max-width: 991px) {
    .why-container {
        display: flex;
        flex-direction: column;
        padding: 0 15px;
    }

    /* इमेज हायड करण्यासाठी */
    .image-col {
        display: none !important; 
    }

    /* दोन्ही फीचर्स कॉलम आता एका खाली एक दिसतील */
    .features-col {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .feature-card {
     display: flex;
    align-items: flex-start; /* वरून अलाईन राहण्यासाठी */
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    }
}


/* Why Choose Us Section Desktop View */
@media (min-width: 992px) {
    .why-container {
        display: grid;
        grid-template-columns: 1fr 350px 1fr; /* डावी बाजू, मध्यवर्ती इमेज, उजवी बाजू */
        align-items: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0px 20px;
    }

    .image-col {
        display: flex;
        justify-content: center;
    }

    .image-col img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        object-fit: cover;
    }

    .features-col {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .feature-card {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 10px;
        background: #fff;
        border-radius: 8px;
        transition: 0.3s;
    }
    
 
}



/* मोबाइल आणि टॅब्लेटसाठी (991px पर्यंत) */
@media (max-width: 991px) {
    .about-luxury-section .col-lg-5 {
        display: none !important;
    }
}


/* मोबाइलसाठी मॅपची उंची कमी करणे */
@media (max-width: 768px) {
    .map-container { /* या डिव्हला एक क्लास द्या */
        height: 250px !important; /* तुम्हाला हवी ती उंची इथे सेट करा */
    }
}

.feature-content {
    display: flex;
    flex-direction: column;
}

/* मोबाइलसाठी टेक्स्टची साईज आणखी थोडी कमी करायची असेल तर */
@media (max-width: 768px) {
    .feature-content p {
        font-size: 0.75rem !important;
        line-height: 1.3;
    }
}



.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    padding: 0px 20px;
    max-width: 1200px;
    margin: auto;
}

.feature-card {
    display: flex;
    align-items: flex-start; /* वरून अलाईनमेंट */
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    transition: 0.4s;
    height: 140px; /* थोडी जास्त उंची दिली जेणेकरून मजकूर बसेल */
    overflow: hidden;
}

.feature-card:hover {
    height: auto; /* माऊस नेल्यावर मजकूर पूर्ण दिसेल */
    background: #0d121c;
    border-color: #d4af37;
    color: #fff;
}

.icon-box {
    font-size: 1.5rem;
    color: #980204;
    margin-right: 15px;
}

.description {
    font-size: 0.90rem;
    color: #000000;
    margin-top: 5px;
    transition: 0.3s;
    font-weight: 100;
}

.feature-card:hover .description {
    opacity: 1;
    color: #fff;
}

.feature-card:hover h5 { color: #d4af37; }

.profile-hero {
    height: 30vh;
    background: url('images/breadcrumb.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 10%; /* डावीकडे अलाइनमेंट केल्यामुळे लूक मॉडर्न होतो */
    position: relative;
}

/* डार्क लियर जो पूर्ण नसून थोडा तिरका आहे */
.profile-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 70%; height: 100%;
    background: linear-gradient(73deg, rgba(0, 0, 0, 0.9), #00000033);
}

.overlay-content {
    position: relative;
    z-index: 1;
    color: white;
}

.breadcrumb-custom {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #c5a059;
    margin-bottom: 20px;
}

.profile-hero h1 {
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
}



.divider {
    width: 80px;
    height: 4px;
    background: #c5a059;
    margin: 20px 0;
}

/* ब्रेडक्रममधील लिंकसाठी खास स्टाईल */
.breadcrumb-custom a {
    color: #c5a059 !important; /* गोल्डन रंग */
    text-decoration: none;     /* खालची रेघ काढण्यासाठी */
    transition: 0.3s;
}

/* होव्हर (Hover) इफेक्टसाठी */
.breadcrumb-custom a:hover {
    color: #ffffff !important; /* माउस नेल्यावर पांढरा रंग */
    text-decoration: none;
}

/* ब्रेडक्रममधील मजकुरासाठी (PROFILE जो लिंक नाही) */
.breadcrumb-custom {
    color: #ffffff; /* मजकूर पांढरा दिसेल */
}


.magazine-about { padding: 30px 0; background-color: #fff; position: relative;  }

.magazine-layout { display: flex; position: relative; margin-top: 50px; max-width: 1200px; margin-left: auto; margin-right: auto; }

.magazine-img { width: 60%; position: relative; z-index: 1; }
.magazine-img img { width: 100%; height: 700px; object-fit: cover; box-shadow: 0 30px 60px rgba(0,0,0,0.3); }

.magazine-text-box { width: 70%;                /* आधी 50% होती, आता 60% केली */
    background: #ffffff;
    padding: 60px;
    margin-left: -15%;         /* ओव्हरलॅप थोडा वाढवला आहे, बॉक्स मोठा झाल्यामुळे */
    margin-top: 80px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #eee; }

.issue-tag { color: #c5a059; letter-spacing: 4px; font-size: 0.8rem; font-weight: bold; }
.section-title { font-size: 2rem;  color: #000; margin: 15px 0; }
.first-para { font-size: 1.2rem; line-height: 1.7; color: #444; font-family: 'Georgia', serif; }
.divider-magazine { width: 60px; height: 3px; background: #c5a059; margin: 30px 0; }

.sub-title { font-size: 0.9rem; letter-spacing: 2px; color: #c5a059; margin-bottom: 10px; }
.other-text p { font-size: 1rem; line-height: 2.1; color: #000000; margin-bottom: 20px; }

.bold-statement { background: #fdf5e6; padding: 20px; border-left: 4px solid #c5a059; color: #000; font-size: 1rem; }

@media (max-width: 992px) {
    .magazine-layout { flex-direction: column; }
    .magazine-img, .magazine-text-box { width: 100%; margin-left: 0; }
}

/* मॅगझिन हेडलाइन स्टाईल */
.magazine-headline {
    font-size: 2.8rem;
    font-family: 'Georgia', serif;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* ड्रॉप-कॅप (पहिले अक्षर मोठे) */
.drop-cap {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    color: #c5a059;
    font-weight: bold;
    margin-right: 10px;
    font-family: 'Georgia', serif;
}
 

.mfg-glass-sec { padding: 80px 20px; background: #f4f6f8; }
.glass-box { max-width: 1200px; margin: 0 auto; background: #fff; padding: 50px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.glass-title { 
  display: block;            /* 'inline-block' ऐवजी 'block' करा */
    width: 100%;               /* पूर्ण रुंदी घेतल्यावर ते सेंटरला येईल */
    text-align: center;        /* टेक्स्ट सेंटरला करेल */
    font-size: 2.5rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    color: #1a1a1a; 
    margin-bottom: 40px; }

/* 3 कॉलम ग्रिड */
.glass-grid { 
   display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px; 
}

.card-header {
    display: flex;          /* आयकॉन आणि टेक्स्टला एका ओळीत आणण्यासाठी */
    align-items: center;    /* दोन्ही गोष्टी वर्टिकल सेंटरला राहण्यासाठी */
    gap: 12px;              /* आयकॉन आणि टेक्स्टमध्ये योग्य अंतर */
    margin-bottom: 12px;    /* हेडिंग आणि खालील पॅराग्राफमध्ये अंतर */
}

.card-icon {
    font-size: 1.4rem;      /* आयकॉनचा आकार थोडा ॲडजस्ट केला */
    color: #c5a059;         /* तुमचा गोल्डन कलर */
}


.g-card { 
  background: #fff; padding: 25px; border-radius: 10px; border-top: 4px solid #c5a059; box-shadow: 0 5px 15px rgba(0,0,0,0.03); 

}
.card-icon {
    font-size: 2rem;
    color: #c5a059;
    margin-bottom: 15px;
    display: block;
}

.g-card h4 { margin: 0 0 10px 0; font-size: 1.3rem; color: #980204; text-transform: uppercase; }
.g-card p { margin: 0; color: #030303; font-size: 1.1rem; line-height: 1.5; }

/* रिस्पॉन्सिव्ह डिझाइन */
@media (max-width: 992px) {
    .glass-grid { grid-template-columns: repeat(2, 1fr); } /* टॅब्लेटसाठी 2 कॉलम */
}
@media (max-width: 600px) {
    .glass-grid { grid-template-columns: 1fr; } /* मोबाईलसाठी 1 कॉलम */
}


.supply-chain-clean { 
    padding: 80px 20px; 
    background: #ffffff; 
    text-align: center; 
}

.container-narrow { 
    max-width: 800px; 
    margin: 0 auto; 
}

.sub-heading { 
    display: block; 
    font-size: 1.2rem; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: #c5a059; 
    margin-bottom: 15px; 
}

.main-heading { 
font-size: 2.5rem; 
    color: #1a1a1a; 
    margin-bottom: 20px; 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    font-weight: 700; 
    text-transform: uppercase;
}

.accent-line { 
    width: 60px; 
    height: 3px; 
    background: #1a1a1a; 
    margin: 0 auto 30px auto; 
}

.description { 
    font-size: 14px; 
    color: #000000; 
    line-height: 1.8; 
    font-weight: 300; 
}


/* मुख्य सेक्शन */
.corporate-philosophy-anim {
    padding: 0;
    background-color: #ffffff;
    overflow: hidden;
}

.container-split {
  display: grid;
    /* इमेजची विड्थ 350px वरून 500px केली आहे */
    grid-template-columns: 600px 1fr; 
    min-height: 700px;
    align-items: stretch;
}

/* डावी बाजू: इमेज स्टाईल */
.image-side {
    position: relative;
    background-color: #fbf2e0;
    padding: 20px; /* इमेजला कडेने थोडी जागा */
}

.quality-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px; /* आधीच्या डिझाइनशी सुसंगत */
}

/* उजवी बाजू: मजकूर स्टाईल (आधीचे जसे होते तसे) */
.content-side-anim {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fcfcfc;
}

.tag-line {
    font-size: 0.9rem;
    font-weight: 700;
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.main-head-text {
    font-size: 3.0rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0;
}

.accent-bar {
    width: 60px;
    height: 5px;
    background-color: #c5a059;
    margin: 30px 0;
}

.body-copy p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.impact-quote {
    margin-top: 40px;
    padding: 30px;
    border-left: 5px solid #000;
    background-color: #f0f0f0;
}

.impact-quote p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    font-style: italic;
}

/* रिस्पॉन्सिव्ह */
@media (max-width: 992px) {
    .container-split {
        grid-template-columns: 1fr; 
        min-height: auto;
    }
    .image-side {
        height: 300px;
    }
}

.company-journey-map {
    padding: 100px 20px;
    background: #fdfdfd;
    background-image: radial-gradient(#ddd 1px, transparent 1px); /* मॅपचा फील देण्यासाठी डॉटेड बॅकग्राउंड */
    background-size: 40px 40px;
}

.map-wrapper { max-width: 1200px; margin: 0 auto; position: relative; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 40px; }

.journey-nodes {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-top: 0px;
}

/* मध्यवर्ती लाईन */
.journey-nodes::before {
    content: "";
    position: absolute;
   
    background: #ccc;
}

.node { width: 180px; text-align: center; position: relative; }

/* पिन */
.pin {
    width: 30px; height: 30px; background: #1a1a1a;
    border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
    margin: 0 auto 20px; border: 4px solid #fff;
    box-shadow: 0 0 0 2px #1a1a1a;
}

.year { display: block; font-weight: 800; color: #c5a059; margin-bottom: 5px; }
.content h3 { font-size: 1rem; margin-bottom: 10px; color: #333; }
.content p { font-size: 0.85rem; color: #666; line-height: 1.4; }

/* अल्टरनेट लेआउट (एक वर, एक खाली) */
.node-2, .node-4 { margin-top: 150px; }

/* व्हिजन पिन हायलाईट */
.vision-pin { background: #c5a059; box-shadow: 0 0 0 2px #c5a059; }

@media (max-width: 768px) {
    .journey-nodes { flex-direction: column; align-items: flex-start; }
    .node { width: 100%; text-align: left; margin-bottom: 40px; display: flex; }
    .pin { margin: 0 20px 0 0; }
    .node-2, .node-4 { margin-top: 0; }
}

.journey-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}

.journey-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #c5a059;
}


.vision-pulse-section { 
    padding: 100px 20px; 
    background: #f6f7fa; 
    font-family: 'Segoe UI', sans-serif;
}

.pulse-container { max-width: 1100px; margin: 0 auto; text-align: center; }

.pulse-title { 
font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;      /* मजकूर सेंटरला */
    position: relative;      /* लाइनसाठी पॉझिशन सेट केली */
    padding-bottom: 20px;    /* लाइन आणि अक्षरात अंतर */
    margin-bottom: 40px;
  }

.pulse-title::after {
    
   content: '';
    position: absolute;
    bottom: 0;
    left: 50%;               /* डावीकडून ५०% वर */
    transform: translateX(-50%); /* स्वतःच्या लांबीच्या अर्ध्या अंतराने मागे सरकेल (सेंटरिंग) */
    width: 100px;            /* लाइनची रुंदी (तुम्ही हवी तशी वाढवू शकता) */
    height: 4px;             /* लाइनची जाडी */
    background: #c5a059;     /* गोल्डन कलर */
    border-radius: 2px;
}
.pulse-intro { font-size: 1.1rem; color: #4a4a4a; max-width: 800px; margin: 0 auto 60px; }

.pulse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* कार्डला ग्रेडियंट बॉर्डर इफेक्ट देण्यासाठी */
.pulse-card {
    background: linear-gradient(135deg, #c5a059 0%, #764ba2 100%);
    padding: 3px; /* ही बॉर्डरची जाडी आहे */
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.card-inner {
    background: #ffffff;
    padding: 11px 30px;
    border-radius: 18px;
    height: 100%;
}

.pulse-card:hover { transform: translateY(-10px); }

.card-icon { 
    font-size: 2rem; font-weight: 800; color: #960203; margin-bottom: 15px; 
}

.pulse-card h3 { color: #1a1a1a; margin-bottom: 15px; }
.pulse-card p { color: #666; line-height: 1.6; }

.pulse-quote { 
    margin-top: 60px; font-size: 1.4rem; font-style: italic; 
    color: #333; border-left: 5px solid #960203; padding-left: 30px; text-align: left;
}

@media (max-width: 768px) {
    .pulse-grid { grid-template-columns: 1fr; }
}

/* ८००px च्या खाली (मोबाईलवर) इमेज लपवण्यासाठी */
@media (max-width: 800px) {
    .magazine-about img {
        display: none !important;
    }
}

/* मोबाईलवर पॅडिंग कमी करण्यासाठी */
@media (max-width: 768px) {
    .magazine-about {
        padding: 20px 0 !important; /* इथे 100px ऐवजी 20px केले आहे */
    }
}

.passenger-elevator-section { padding: 80px 0; background: #f9f9f9; }
.pe-layout { display: flex; align-items: center; gap: 60px; }
.pe-content { flex: 1; }
.pe-image { flex: 1; }
.pe-image img { width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.category-tag { color: #c5a059; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; }
.passenger-elevator-section h2 { font-size: 2rem; margin: 15px 0; color: #1a1a1a; }
.pe-content p { color: #0c0b0b; line-height: 1.8; margin-bottom: 20px; }

.safety-box { 
    background: #fff; 
    padding: 20px; 
    border-left: 5px solid #c5a059; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* मोबाईलसाठी रिस्पॉन्सिव्ह */
@media (max-width: 900px) {
    .pe-layout { flex-direction: column; text-align: center; }
    .passenger-elevator-section h2 { font-size: 2.2rem; }
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: 20px;
}

.btn-quote:hover {
    background: #c5a059; /* होव्हरवर गोल्डन कलर */
    color: #fff;
    transform: translateY(-3px);
}

/* आयकॉन ॲनिमेशन */
.animate-icon {
    transition: transform 0.3s ease;
}

.btn-quote:hover .animate-icon {
    transform: translateX(8px); /* होव्हरवर आयकॉन उजवीकडे सरकेल */
}

/* १. ड्रॉपडाउन ॲरो नेहमी दिसण्यासाठी */
.nav-link.dropdown-toggle::after {
    display: inline-block !important;
}

/* २. जेव्हा 'active' क्लास असेल तेव्हा खाली रेषा येण्यासाठी */
.nav-item.active .nav-link {
    position: relative;
}

.nav-item.active .nav-link::before {
    content: "";
    position: absolute;
    bottom: 1px; /* रेषेची जागा */
    left: 0;
    width: 100%;
    height: 2px; /* रेषेची जाडी */
    background-color: #c79e43; /* तुमच्या रेषेचा सोनेरी रंग */
}


.key-features-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.key-features-section .custom-heading {
    color: #8B0000;
    font-size: 1.5rem;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
}

.key-features-section .title-underline {
    width: 60px;
    height: 3px;
    background-color: #c79e43;
    margin: 10px 0 0 0;
}

.key-features-section .features-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #c79e43;
}

.key-features-section .custom-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-features-section .custom-features-list li {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.key-features-section .custom-features-list li:last-child {
    border-bottom: none;
}

.key-features-section .custom-features-list i {
    color: #c79e43;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}


/* Technical Specifications Section */
.tech-specs-section {
    background-color: #ffffff; /* मागील सेक्शन ग्रे होता, त्यामुळे हा पांढरा ठेवलाय जेणेकरून वेगळा दिसेल */
    padding: 10px 0;
}

.tech-specs-section .custom-heading {
    color: #8B0000;
    font-size: 1.5rem;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
}

.tech-specs-section .title-underline {
    width: 60px;
    height: 3px;
    background-color: #c79e43;
    margin: 10px 0 0 0;
}

.tech-specs-section .specs-box {
    background: #f8f9fa; /* बॉक्सला हलका ग्रे रंग दिलाय */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #c79e43;
}

.custom-specs-table {
    margin-bottom: 0;
}

.custom-specs-table th {
    width: 22%; /* हेडिंगची रुंदी */
    color: #8B0000; /* डार्क लाल रंग */
    font-weight: 600;
    font-size: 16px;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.custom-specs-table td {
    color: #333;
    font-size: 16px;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

/* शेवटच्या ओळीची बॉर्डर काढण्यासाठी */
.custom-specs-table tr:last-child th,
.custom-specs-table tr:last-child td {
    border-bottom: none;
}

/* मोबाईल व्ह्यूसाठी थोडे ऍडजस्टमेंट */
@media (max-width: 768px) {
    .custom-specs-table th {
        width: 40%;
    }
}

/* नवीन हायलाइट बॉक्स स्टाईल */
.specs-highlight-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border: 1px solid #e2e8f0;
    border-left: 4px solid #8B0000;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
}

.highlight-icon {
    font-size: 24px;
    color: #c79e43;
    margin-right: 20px;
    flex-shrink: 0;
    background: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.highlight-content p {
    margin: 0;
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.6;
}

.highlight-content strong {
    color: #8B0000;
}


/* Space Requirement Chart Section */
.space-chart-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.space-chart-section .custom-heading {
    color: #8B0000;
    font-size: 1.5rem;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
}

.space-chart-section .title-underline {
    width: 60px;
    height: 3px;
    background-color: #c79e43;
    margin: 10px 0 0 0;
}

.space-chart-section .specs-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #c79e43;
}

.space-table thead th {
    background-color: #8B0000;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 12px;
    text-align: center;
    border: none;
    white-space: nowrap;
}

.space-table thead th:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    text-align: left;
}

.space-table thead th:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.space-table tbody td {
    color: #333;
    font-size: 14px;
    padding: 14px 12px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #edf2f7;
    white-space: nowrap;
}

.space-table tbody td:first-child {
    text-align: left;
    color: #8B0000;
}

.space-table tbody tr:last-child td {
    border-bottom: none;
}

.space-table tbody tr:hover {
    background-color: #fdfbfb;
}

/* मोबाईल फ्रेंडली स्क्रोलिंग */
@media (max-width: 992px) {
    .space-chart-section .specs-box {
        padding: 15px;
    }
}

.requirements-section {
    background-color: #ffffff;
    padding: 10px 0;
}

.requirements-section .custom-heading {
    color: #8B0000;
    font-size: 1.6rem;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
}

.requirements-section .title-underline {
    width: 60px;
    height: 3px;
    background-color: #c79e43;
    margin: 4px 0 0 0;
}

.requirements-section .specs-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-top: 4px solid #c79e43;
}

.req-table {
    margin-bottom: 0 !important;
}

.req-table thead th {
    background-color: #8B0000;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 5px 10px;
    text-align: left;
    border: none;
}

/* डाव्या बाजूच्या हेडिंगची width 35% केली */
.req-table thead th:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    width: 35%;
}

.req-table thead th:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    width: 65%;
}

.req-table tbody td {
    color: #333;
    font-size: 15px;
    padding: 10px 10px !important;
    vertical-align: middle;
    border-bottom: 1px solid #eef2f5;
    line-height: 1.3;
}

/* डाव्या बाजूच्या कॉलमची width 35% केली जेणेकरून जागा कमी होईल */
.req-table tbody td:first-child {
    color: #8B0000;
    font-weight: 600;
    width: 25%;
}

.req-table tbody td:last-child {
    width: 65%;
}

.req-table tbody tr:last-child td {
    border-bottom: none;
}

.req-table tbody tr:hover {
    background-color: #f1f3f5;
}

/* टेबलच्या खालील नोटसाठी CSS */
.specs-footer-note {
    border-top: 1px dashed #d1d5db; /* हलकी तुटक (dashed) रेषा */
    margin-top: 10px !important;
    padding-top: 8px !important;
}

.specs-footer-note p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
}

.specs-footer-note strong {
    color: #8B0000;
}


.requirements-section {
    background-color: #ffffff;
    padding: 10px 0;
}

.requirements-section .custom-heading {
    color: #8B0000;
    font-size: 1.5rem;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
}

.requirements-section .title-underline {
    width: 60px;
    height: 3px;
    background-color: #c79e43;
    margin: 4px 0 0 0;
}

.requirements-section .specs-box {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-top: 4px solid #c79e43;
}

/* नवीन युनिक क्लाससाठी स्टाइल */
.lift-compare-table {
    margin-bottom: 0 !important;
    width: 100%;
    table-layout: fixed;
}

.lift-compare-table thead th:first-child {
    background-color: #8B0000;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 10px;
    text-align: left;
    border: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    width: 20%; 
}

.lift-compare-table thead th {
    background-color: #8B0000;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 10px;
    text-align: left;
    border: none;
    width: 26.66%;
}

.lift-compare-table thead th:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.lift-compare-table tbody td {
    color: #333;
    font-size: 15px;
    padding: 6px 10px !important;
    vertical-align: middle;
    border-bottom: 1px solid #eef2f5;
    line-height: 1.4;
    word-wrap: break-word;
}

.lift-compare-table tbody td:first-child {
    color: #8B0000;
    font-weight: 600;
    width: 20%;
}

.lift-compare-table tbody td:not(:first-child) {
    width: 26.66%;
}

.lift-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.lift-compare-table tbody tr:hover {
    background-color: #f1f3f5;
}


.lift-cards-section {
    background-color: #ffffff;
    padding: 20px 0;
}

.lift-cards-section .custom-heading {
    color: #8B0000;
    font-size: 1.5rem;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
}

.lift-cards-section .title-underline {
    width: 60px;
    height: 3px;
    background-color: #c79e43;
    margin: 6px 0 0 0;
}

/* कार्ड डिझाइन */
.lift-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border-top: 4px solid #c79e43;
    height: 100%;
    transition: transform 0.3s ease;
}

.lift-card:hover {
    transform: translateY(-5px);
}

.lift-title {
    color: #8B0000;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

.lift-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #2b7a0b;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.lift-section-title.text-danger {
    color: #dc3545 !important;
}

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

.lift-list li {
    font-size: 14px;
    color: #333;
    padding: 3px 0;
    line-height: 1.4;
    position: relative;
    padding-left: 18px;
}

/* फायद्यांसमोर चेकमार्क */
.adv-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2b7a0b;
    font-weight: bold;
    font-size: 11px;
}

/* मर्यादांसमोर क्रॉस */
.lim-list li::before {
    content: "✘";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 11px;
}

.lift-cards-section .lift-list li {
    font-size: 15px;
    color: #333;
    padding: 3px 0;
    line-height: 1.4;
    position: relative;
    padding-left: 18px;
    font-weight: normal !important; /* फॉन्ट वेट काढून टाकण्यासाठी आणि तो नॉर्मल ठेवण्यासाठी */
}

/* Typical Lift Applications Section CSS */
.lift-apps-section {
    background-color: #ffffff;
    padding: 10px 0;
}

.lift-apps-section .custom-heading {
    color: #8B0000;
    font-size: 1.5rem;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
}

.lift-apps-section .title-underline {
    width: 60px;
    height: 3px;
    background-color: #c79e43;
    margin: 4px 0 0 0;
}

.lift-apps-section .specs-box {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-top: 4px solid #c79e43;
    width: 100%;
}

.lift-app-table {
    margin-bottom: 0 !important;
    width: 100%;
}

.lift-app-table thead th {
    background-color: #8B0000;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 5px 15px;
    text-align: left;
    border: none;
}

/* डाव्या कॉलमची रुंदी ६०% आणि उजव्या कॉलमची ४०% केली, ज्यामुळे गॅप कमी होईल */
.lift-app-table thead th:first-child,
.lift-app-table tbody td:first-child {
    width: 30%;
}

.lift-app-table thead th:last-child,
.lift-app-table tbody td:last-child {
    width: 40%;
}

.lift-app-table thead th:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.lift-app-table thead th:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.lift-app-table tbody td {
    color: #333;
    font-size: 15px;
    padding: 3px 15px !important;
    vertical-align: middle;
    border-bottom: 1px solid #eef2f5;
    line-height: 1.4;
    font-weight: normal !important;
}

.lift-app-table tbody td:first-child {
    color: #8B0000;
    font-weight: 600 !important;
}

.lift-app-table tbody tr:last-child td {
    border-bottom: none;
}

.lift-app-table tbody tr:hover {
    background-color: #f1f3f5;
}


/* Maintenance Card Style CSS */
.maintenance-card-section {
    background-color: #f0f0f0;
    padding: 40px 0;
}

.maintenance-card-section .maintenance-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #8B0000; /* वरच्या बाजूला लाल रंगाची ठळक बॉर्डर */
    border-left: 4px solid #c79e43; /* डाव्या बाजूला प्रीमियम गोल्ड बॉर्डर */
    position: relative;
}

.maintenance-card-section .maintenance-heading {
    color: #8B0000;
    font-size: 1.5rem;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
}

.maintenance-card-section .title-underline {
    width: 60px;
    height: 3px;
    background-color: #c79e43;
}

.maintenance-card-section .maintenance-subheading {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: normal !important;
}

/* Why Maintenance Matters Split Layout CSS */
.why-maintenance-section {
    background-color: #ffffff;
    overflow: hidden;
}

/* इमेज कॉलमची स्टाईल */
.why-maintenance-section .maintenance-img-col {
    position: relative;
    min-height: 350px; /* लहान स्क्रीनसाठी कमीतकमी उंची */
}

/* इमेजवर ओव्हरले मजकूर */
.why-maintenance-section .overlay-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(139, 0, 0, 0.8); /* SJE Red Transparent */
    padding: 20px;
    border-radius: 6px;
}

.why-maintenance-section .overlay-content .gold-line {
    width: 50px;
    height: 3px;
    background-color: #c79e43; /* SJE Gold */
}

/* मजकूर विभागाची स्टाईल */
.why-maintenance-section .custom-heading {
    color: #8B0000;
    font-size: 2.2rem;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    text-transform: uppercase;
}

.why-maintenance-section .title-underline {
    width: 60px;
    height: 3px;
    background-color: #c79e43;
    margin: 4px 0 0 0;
}

.why-maintenance-section .maintenance-text-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
}

/* ठळक मजकुरासाठी स्टाईल */
.why-maintenance-section .highlight-text {
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-left: 3px solid #c79e43;
    color: #070606;
}

/* responsive adjustments */
@media (max-width: 991px) {
    .why-maintenance-section .maintenance-img-col {
        min-height: 250px;
    }
    .why-maintenance-section .maintenance-text-content {
        padding: 0 !important;
    }
}


/* Maintenance Plans Section CSS */
.maintenance-plans-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.maintenance-plans-section .custom-heading {
    color: #8B0000;
    font-size: 2.3rem;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    text-transform: uppercase;
}

.maintenance-plans-section .title-underline {
    width: 70px;
    height: 3px;
    background-color: #c79e43;
    margin: 8px auto 0 auto;
}

/* कार्डची रचना */
.plan-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.096);
    display: flex;
    flex-direction: column;
    border-top: 4px solid #495057;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* प्लॅन १ (Full Comprehensive) ला विशेष लाल बॉर्डर */
.plan-card.premium-plan {
    border-top: 5px solid #8B0000;
}

/* प्लॅन २ (Semi Comprehensive) ला सोनेरी बॉर्डर */
.plan-card.featured-plan {
    border-top: 5px solid #c79e43;
    background: #fffdfb;
}

.plan-header {
    padding: 25px 25px 15px 25px;
    border-bottom: 1px solid #eef2f5;
    position: relative;
}

.plan-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: rgba(139, 0, 0, 0.1);
    color: #8B0000;
    margin-bottom: 10px;
}

.gold-badge {
    background-color: rgba(199, 158, 67, 0.15);
    color: #b08933;
}

.standard-badge {
    background-color: rgba(73, 80, 87, 0.1);
    color: #495057;
}

.plan-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.plan-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.3;
    margin-bottom: 10px;
    min-height: 55px;
}

.plan-desc {
    font-size: 1.0rem;
    color: #282a2c;
    margin-bottom: 0;
}

.plan-body {
    padding: 20px 25px;
    flex-grow: 1;
}

.coverage-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.plan-list li {
    font-size: 1.0rem;
    color: #000000;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px dashed #eef2f5;
    position: relative;
    padding-left: 18px;
    line-height: 1.4;
}

.plan-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c79e43;
    font-weight: bold;
}

.plan-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.plan-footer {
    padding: 15px 25px 25px 25px;
    background-color: rgba(0, 0, 0, 0.01);
    border-top: 1px solid #eef2f5;
}

.best-for {
    font-size: 0.95rem;
    color: #171b1f;
    background: #f1f3f5;
    padding: 10px 12px;
    border-radius: 6px;
    border-left: 3px solid #8B0000;
}

/* The SJE Maintenance Promise Section CSS */
.maintenance-promise-section {
    /* बॅकग्राउंडला तुम्ही दिलेली इमेज सेट केली आहे आणि वर डार्क ओव्हरले दिलाय जेणेकरून मजकूर उठून दिसेल */
    background: linear-gradient(rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.671)), 
                url('images/maintenance-promise.jpg') no-repeat center center/cover;
    padding: 70px 0;
}

.maintenance-promise-section .custom-heading {
    color: #940e0e;
    font-size: 2.3rem;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.maintenance-promise-section .title-underline {
    width: 70px;
    height: 3px;
    background-color: #c79e43; /* SJE Gold */
    margin: 8px auto 0 auto;
}

/* मुख्य कार्ड बॉक्स (ज्यामध्ये ट्रान्सपरंट इफेक्ट आहे) */
.promise-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #8B0000; /* SJE Red */
    border-left: 4px solid #c79e43; /* SJE Gold */
}

/* लिस्टची स्टाईल */
.promise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promise-list li {
    font-size: 1rem;
    color: #333333;
    padding: 10px 0 10px 25px;
    border-bottom: 1px dashed #eef2f5;
    position: relative;
    line-height: 1.5;
}

/* टिकमार्क किंवा बुलेट */
.promise-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #8B0000;
    font-weight: bold;
}

.promise-list li:last-child {
    border-bottom: none;
}


/* Clients Section CSS */
.our-clients-section {
    background-color: #ffffff;
    padding: 70px 0;
}

.our-clients-section .custom-heading {
    color: #8B0000; /* SJE Red */
    font-size: 1.5rem;
    font-family: var(--font-heading, sans-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.our-clients-section .title-underline {
    width: 60px;
    height: 3px;
    background-color: #c79e43; /* SJE Gold */
    margin: 8px auto 0 auto;
}

/* लोगो कार्डची स्टाईल (स्क्रीनशॉटमधील बॉर्डरनुसार) */
.client-logo-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px; /* गोल कॉर्नर्स */
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.client-logo-box img {
    max-height: 100px;
    max-width: 85%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease-in-out;
}

/* स्क्रीनशॉटमधील Logo 5 सारखी खास बॉर्डर (Gold आणि Red शेड) */
.client-logo-box.active-border {
    border: 2px solid #c79e43; /* सोन्याची बॉर्डर */
    border-bottom: 3px solid #8B0000; /* खाली लाल बॉर्डर */
    box-shadow: 0 6px 20px rgba(199, 158, 67, 0.15);
}

.client-logo-box.active-border img {
    filter: grayscale(0%) opacity(1);
}

/* सामान्य बॉक्सवर माउस नेल्यावर (Hover Effect) */
.client-logo-box:hover {
    border-color: #c79e43;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.client-logo-box:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Trusted Company Section Styles with Website's Common Font */
.trusted-company-royal {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

/* मुख्य बॉक्सची रचना */
.royal-content-box {
    background: #fdfcfb;
    padding: 60px;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* बॉक्सच्या वरची लाल पट्टी */
.royal-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #8B0000; /* SJE Deep Red */
    border-radius: 0 0 4px 4px;
}

/* सब-टायटल */
.royal-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #c79e43; /* SJE Gold */
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: inherit; /* वेबसाईटचा कॉमन फॉन्ट वापरण्यासाठी */
}

/* मुख्य टायटल */
.royal-title {
    color: #222222;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: inherit; /* वेबसाईटचा कॉमन फॉन्ट */
}

/* टायटल खालची सोनेरी रेषा */
.royal-separator {
    width: 60px;
    height: 3px;
    background-color: #c79e43;
    border-radius: 2px;
}

/* मजकुराची स्टाईल (वेबसाईटचा कॉमन फॉन्ट) */
.royal-text-block p {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: inherit; /* वेबसाईटचा कॉमन फॉन्ट */
}

.royal-text-block p:last-child {
    margin-bottom: 0;
}

/* कोटेशन बॉक्सची स्टाईल */
.royal-quote {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    color: #8B0000;
    text-align: center;
    position: relative;
    padding: 25px 40px;
    background: linear-gradient(to right, transparent, rgba(199, 158, 67, 0.05), transparent);
    border-top: 1px solid rgba(199, 158, 67, 0.2);
    border-bottom: 1px solid rgba(199, 158, 67, 0.2);
    margin: 0;
    font-family: inherit; /* वेबसाईटचा कॉमन फॉन्ट */
}

/* कोटेशन आयकॉन्स */
.royal-quote i {
    font-size: 0.9rem;
    color: #c79e43;
    opacity: 0.6;
    vertical-align: super;
    margin: 0 8px;
}

/* रिस्पॉन्सिव्ह डिझाइन */
@media (max-width: 768px) {
    .royal-content-box {
        padding: 30px;
    }
    .royal-title {
        font-size: 1.8rem;
    }
    .royal-quote {
        font-size: 1.1rem;
        padding: 20px 15px;
    }

    .client-logo-box img {
    max-height: 90px;
    }
}


/* Contact Page Styles */
.contact-page-section {
    background-color: #ffffff;
    padding: 70px 0;
}

.contact-page-section .section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #8B0000;
    background-color: rgba(139, 0, 0, 0.08);
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.contact-page-section .custom-heading {
    color: #212529;
    font-size: 2.3rem;
    font-weight: 700;
}

.contact-page-section .title-underline {
    width: 70px;
    height: 3px;
    background-color: #c79e43;
    margin: 8px auto 0 auto;
}

.contact-info-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #eaeaea;
    border-top: 4px solid #8B0000;
}

.contact-item {
    background: #fdfdfd !important;
    border: 1px solid #fdde9b !important;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #c79e43 !important;
    box-shadow: 0 5px 15px rgba(199, 158, 67, 0.08);
    transform: translateY(-2px);
}

.item-label {
    color: #212529;
    font-weight: 700;
    font-size: 1rem;
}

.item-text {
    color: #111010;
    font-size: 1.0rem;
    line-height: 1.6;
}

/* क्लिक करण्यायोग्य लिंक्सची स्टाईल */
.contact-link {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #8B0000;
    text-decoration: underline;
}

/* आयकॉन बॉक्स */
.contact-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(199, 158, 67, 0.12);
    color: #c79e43;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* सोशल मीडिया बटन्स */
.social-links-box .social-btn {
    width: 40px;
    height: 40px;
    background: #f1f3f5;
    color: #495057;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links-box .social-btn:hover {
    background: #8B0000;
    color: #ffffff;
    transform: translateY(-3px);
}

/* गुगल मॅप स्टाइल */
.map-container {
    border-radius: 10px;
}

.map-container iframe {
    border-radius: 8px;
}


@media (max-width: 768px) {
    /* प्रॉडक्ट्स सेक्शनला मोबाईलवर व्यवस्थित फिट करा */
    .products-section .content-wrapper {
        padding-left: 10px !important;
        padding-right: 10px !important;
        overflow: hidden !important;
    }

    /* मुख्य स्लाइडर ज्यामध्ये प्रॉडक्ट्स आहेत */
    .product-slider {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 10px 0 !important;
        scrollbar-width: none; /* Firefox साठी स्क्रोलबार लपवा */
    }
    
    .product-slider::-webkit-scrollbar {
        display: none; /* Chrome/Safari साठी स्क्रोलबार लपवा */
    }

    /* प्रत्येक प्रॉडक्ट कार्डची मोबाईलवर योग्य साईझ */
    .prod-slide {
        flex: 0 0 85% !important; /* मोबाईलवर एक कार्ड पूर्ण आणि दुसऱ्याचे थोडेसे दिसेल */
        width: 85% !important;
        height: 320px !important; /* मोबाईलसाठी योग्य उंची */
        scroll-snap-align: center !important;
        margin-right: 0 !important;
    }
}