body {
  font-family: 'Poppins', sans-serif;
  background-color: #e2dfdf;
}

/* ================= NAVBAR ================= */

.custom-navbar {
  background: transparent; /* transparent on hero */
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Navbar after scroll */
.custom-navbar.scrolled {
  background: rgb(172, 171, 171); 
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Navbar container adjustment */
.custom-navbar .container-fluid{
  padding-left: 0;
}

/* Logo spacing */
.navbar-brand {
   margin-left: 0px; 
   padding-left: 0px;
}

.logo {
  height: 50px;
}

/* Nav links */
.nav-link {
  color: #111010 !important;
  margin-left: 20px;
  font-weight: 500;
}/* ================= MOBILE SLIDE FROM LEFT NAV ================= */
@media (max-width: 991px) {

  /* Navbar collapse as sidebar */
  .navbar-collapse {
    position: fixed;
    top: 122px;
    left: -280px; /* hidden by default */
    width: 260px;
    height: 100vh;
    background: rgb(172, 171, 171); 
    padding-top: 120px;
    transition: left 0.4s ease;
    box-shadow: 4px 0 15px rgba(0,0,0,0.3);
    z-index: 999;
  }

  /* Show menu */
  .navbar-collapse.show {
    left: 0;
  }

  /* Nav items vertical */
  .navbar-nav {
    flex-direction: column;
    padding-left: 20px;
  }

  .nav-link {
    margin: 15px 0;
    font-size: 18px;
  }

  /* Prevent background scroll when menu open */
  body.nav-open {
    overflow: hidden;
  }
}



/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
 
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.45);
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Catalog */
.catalog-card {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  transition: 0.4s;
}

.catalog-card img {
  width: 100%;
  border-radius: 10px;
}

.catalog-card:hover {
  transform: translateY(-10px);
}
.catalog-row {
  margin-bottom: 80px;
}

/* Animation base */
.animate-left, .animate-right {
  opacity: 0;
  transition: all 1s ease;
}

.animate-left {
  transform: translateX(-80px);
}

.animate-right {
  transform: translateX(80px);
}

.animate-show {
  opacity: 1;
  transform: translateX(0);
}


/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.delay { animation-delay: 0.3s; }
.delay2 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   FOOTER MAIN STYLES
==============================*/

.footer {
  background-image: url('../assets/images/modernization.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  padding: 50px 40px;
}

/* Dark overlay */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Keep content above overlay */
.footer * {
  position: relative;
  z-index: 2;
}

/* ==============================
   FOOTER LAYOUT
==============================*/

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Common column */
.footer-col {
  flex: 1;
}

/* ==============================
   BRAND (LEFT MOST)
==============================*/

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  flex: 1.4; /* slightly wider */
}

.footer-logo {
  width: 120px;
  flex-shrink: 0;
}

.footer-brand p {
  margin: 0;
  line-height: 1.7;
  color: #eaeaea;
}

/* ==============================
   QUICK LINKS (CENTER)
==============================*/

.footer-col:nth-child(2) {
  text-align: center;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: #f5e800;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 6px 0;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f5e800;
}

/* ==============================
   ADDRESS / SUPPORT (RIGHT MOST)
==============================*/

.footer-col:nth-child(3) {
  text-align: right;
}

.footer-col:nth-child(3) p {
  margin-bottom: 6px;
}

/* ==============================
   BOTTOM FOOTER
==============================*/

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 35px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================
   FOOTER LINKS
==============================*/

.footer-link {
  color: #f5e800;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #f5e800;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

/* ==============================
   SOCIAL ICONS
==============================*/

.footer-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-icons i {
  font-size: 24px;
  color: white;
  transition: 0.3s;
}

.footer-icons i:hover {
  color: #f5e800;
}

.footer-icons img.social-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.25s ease-in-out;
}

.footer-icons img.social-icon:hover {
  transform: scale(1.15);
}

/* ==============================
   WHATSAPP FLOATING BUTTON
==============================*/

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: white;
  z-index: 9999;
  transition: transform 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

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

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-col,
  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


.contact-section {
  min-height: 100vh;
  background: url("../assets/images/map.webp") center/cover no-repeat;
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
}

/* Dark overlay */
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Bring content above overlay */
.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.about-page {
  padding-top: 140px; /* space below navbar */
}
.about-page section {
  scroll-margin-top: 140px; /* height of navbar */
}
.about-section {
  padding-top: 40px;
  padding-bottom: 80px;
}
.section-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #333;
}

.journey-section {
  background: #111;
  color: #fff;
  padding: 60px 0;
}

.journey-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}


.journey-item:last-child {
  margin-bottom: 0;
}
.journey-item.left {
  justify-content: flex-start;
}

.journey-item.right {
  justify-content: flex-end;
}

.icon-circle {
    background: #e50914; /* premium red */
  color: #fff;
  font-size: 32px; /* bigger icon */
  width: 80px;     /* bigger circle */
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-item.left .icon-circle {
  margin-right: 20px;
}

.journey-item.right .icon-circle {
  margin-left: 20px;
}

.journey-item h3 {
  font-size: 42px; /* BIG year */
  margin-bottom: 8px;
}

.journey-item p {
  font-size: 18px; /* larger text */
  line-height: 1.6;
  max-width: 420px; /* keeps section compact */
}
@media (max-width: 768px) {
  .journey-item {
    flex-direction: column;
    text-align: center;
  }

  .journey-item.right,
  .journey-item.left {
    justify-content: center;
  }

  .journey-item .icon-circle {
    margin: 0 0 15px 0;
  }

  .journey-item p {
    max-width: 100%;
  }
}


.awards-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.award-slider {
  overflow: hidden;
  width: 100%;
}

.award-track {
  display: flex;
  width: max-content;
  animation: scrollAwards 20s linear infinite;
}

.award-card {
  min-width: 250px;
  margin: 0 15px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.award-card img {
  width: 100%;
}

@keyframes scrollAwards {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
html {
  scroll-behavior: smooth;
}

/* ================= HISTORY PAGE ================= */

/* ================= HISTORY PAGE ================= */

.history-page {
  padding: 80px 0;
  background: #fafafa;
}

.history-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #222;
}

/* Timeline rows */
.timeline-row {
  margin-bottom: 60px;
}

.timeline-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.timeline-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
}

/* Accent underline */
.timeline-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 10px;
  background: linear-gradient(90deg, #d4af37, rgba(212,175,55,0.6));
  border-radius: 2px;
}

/* ================= BACKGROUND IMAGES ================= */

.history-bg {
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}

/* Image 1 – RIGHT TOP */
.history-bg::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -100px;
  width: 420px;
  height: 420px;
  background:
    linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15)),
    url("../assets/images/bg1.webp") center/cover no-repeat;
  filter: saturate(1.25) contrast(1.1);
  z-index: 0;
}

/* Image 2 – LEFT TOP */
.history-bg::after {
  content: "";
  position: absolute;
  top: 28%;
  left: -90px;
  width: 380px;
  height: 380px;
  background:
    linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15)),
    url("../assets/images/bg1.webp") center/cover no-repeat;
  filter: saturate(1.25) contrast(1.1);
  transform: scaleX(-1);
  z-index: 0;
}

/* Image 3 – RIGHT MIDDLE */
.bg-right-2 {
  position: absolute;
  top: 52%;
  right: -100px;
  width: 420px;
  height: 420px;
  background:
    linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15)),
    url("../assets/images/bg1.webp") center/cover no-repeat;
  filter: saturate(1.25) contrast(1.1);
  z-index: 0;
}

/* Image 4 – LEFT LOWER */
.bg-left-2 {
  position: absolute;
  top: 72%;
  left: -100px;
  width: 450px;
  height: 450px;
  background:
    linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15)),
    url("../assets/images/bg1.webp") center/cover no-repeat;
  filter: saturate(1.25) contrast(1.1);
  z-index: 0;
}

/* Image 5 – RIGHT BOTTOM */
.bg-center-5 {
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background:
    linear-gradient(rgba(255,255,255,0.18), rgba(255,255,255,0.18)),
    url("../assets/images/bg1.webp") center/cover no-repeat;
  filter: saturate(1.3) contrast(1.15);
  z-index: 0;
}

/* Keep content above backgrounds */
.history-bg .container {
  position: relative;
  z-index: 2;
}

/* Mobile cleanup */
@media (max-width: 768px) {
  .history-bg::before,
  .history-bg::after,
  .bg-right-2,
  .bg-left-2,
  .bg-center-5 {
    display: none;
  }

  .timeline-content {
    text-align: center;
  }

  .timeline-content h2::after {
    margin-left: auto;
    margin-right: auto;
  }
}


.section-text {
  color: #444;
}
.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product-card img {
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card:hover {
  transform: translateY(-8px);
}
/* ================= HOME ABOUT SECTION ================= */

.home-about {
  background: #f7f3f3;
  padding: 90px 0;
  color: #070707;
}

.about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.about-image-grid img:hover {
  transform: scale(1.03);
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text {
  font-size: 18px;
  line-height: 1.7;
  color: #0c0c0c;
  margin-bottom: 30px;
}

.about-text .highlight {
  display: inline-block;
  background: #e50914;
  padding: 4px 8px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.about-btn {
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
}
/* ================= MEESHO ICON FIX ================= */

.icon-circle i {
  font-size: 30px;
}
