body {
  font-family: 'Neue Montreal', sans-serif;
  background-color: #ffffff;
  color:  #222;
  margin: 0;
  padding-top: 100px;
}


/* === NAVBAR === */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem 3rem;
  z-index: 10;
  background: transparent;
  transition: all 0.4s ease;
}

/* Logo */
.navbar-brand img {
  height: 65px;
  width: auto;
}

/* Navbar links (default = white) */
.navbar-brand img {
  height: 65px;
  width: auto;
}

/* Navbar base */
.custom-navbar {
  background: #FFFFFF; /* solid white background */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Navbar links */
.navbar-nav .nav-link {
  color: #061ab0 !important;  /* DORO teal accent */
  font-weight: 500;
  font-size: 1rem;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ED0103 !important;  /* DORO red hover */
}

/* === SCROLLED STATE === */
.custom-navbar.scrolled {
  background: #FFFFFF; /* stays white */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-navbar.scrolled .nav-link {
  color: #061ab0 !important;
}

.custom-navbar.scrolled .nav-link:hover {
  color: #ED0103 !important;
}
/* Highlight active dropdown link */
.dropdown-item.active {
  background-color: #ED0103 !important;
  color: #fff !important;
  font-weight: 600;
}

/* === NAVBAR MOBILE FIX === */
@media (max-width: 992px) {
  .custom-navbar {
    padding: 0.6rem 1rem;
  }

  .navbar-nav {
    background: #FFFFFF;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .navbar-nav .nav-link {
    text-align: center;
    color: #061AB0 !important;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .navbar-toggler {
    border: none;
    outline: none;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(6,26,176)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}

/* === Banner === */
.banner-container-catalogue {
  background: url("../images/catalog_banner.jpg") no-repeat center center / cover;
  height: 380px;
  border-radius: 10px;
  margin: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-container-catalogue::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.banner-container-catalogue h1 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  letter-spacing: 2px;
}

/* === Section Styling === */
.catalogue-section {
  margin: 60px 0;
}

.catalogue-section h2 {
  color: #061ab0;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* === Catalogue Grid === */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.decorative-catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* exactly 2 per row */
  gap: 30px;
}
/* === Catalogue Card === */
.catalogue-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.catalogue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.catalogue-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.catalogue-card h3 {
  font-weight: 700;
  color: #ed0103;
  margin-bottom: 10px;
}

.catalogue-card p {
  font-size: 0.95rem;
  color: #555;
  min-height: 50px;
  margin-bottom: 16px;
}

/* === Download Button === */
.btn-download {
  display: inline-block;
  background: linear-gradient(90deg, #ed0103, #061ab0);
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background: linear-gradient(90deg, #061ab0, #ed0103);
  text-decoration: none;
  color: #fff;
}

/* === Responsive === */
@media (max-width: 768px) {
  .banner-container-catalogue {
    height: 280px;
  }

  .banner-container-catalogue h1 {
    font-size: 2rem;
  }
  .decorative-catalogue-grid {
    grid-template-columns: 1fr;
  }
}
/* Footer Section */
/* === FINAL SYMMETRIC FOOTER === */
footer {
  /* background: linear-gradient(180deg, #181818 0%, #1f1f1f 50%, #2d150b 100%);
  color: #ddd; */
  background: linear-gradient(180deg, #061AB0 0%, #05148A 50%, #040C63 100%);
  color: #f2f2f2;
  padding: 70px 0 30px;
  font-size: 0.95rem;
  position: relative;
  box-shadow: 0 -4px 20px rgba(6, 26, 176, 0.35);
  text-align: center;
}

/* Orange top line */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #ED0103;
}

/* Layout fix for perfect symmetry */
footer .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section Headings */
footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

footer h5::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #ED0103;
}

/* List Styling */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.6rem;
}

footer ul li a {
  /* color: #ccc; */
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: #ED0103;
}

/* Social Icons */
footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 1.2rem;
}

footer .social-icons a {
  color: #fff;
  /* background: #2b2b2b; */
  background: #0B1185;
  border: 1.5px solid #ED0103;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

footer .social-icons a:hover {
  background: #ED0103;
  color: #fff;
  transform: translateY(-3px);
  /* box-shadow: 0 0 12px rgba(229, 88, 7, 0.8); */
  box-shadow: 0 0 12px rgba(237, 1, 3, 0.8);
}

/* Divider line */
.footer-divider {
  width: 60%;
  height: 1px;
  /* background: rgba(255, 255, 255, 0.1); */
  background: rgba(255, 255, 255, 0.1);
  margin: 20px auto 20px;
}

/* Tagline & Copyright */
.footer-tagline {
  /* color: #f8f8f8; */
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  font-style: italic;
  letter-spacing: 0.5px;
}

footer .copyright {
  /* color: #aaa; */
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

/* === FOOTER RESPONSIVE FIX === */
@media (max-width: 768px) {
  footer {
    padding: 50px 10px;
  }

  footer .container {
    max-width: 100%;
  }

  footer h5 {
    font-size: 1.2rem;
  }

  footer ul li a {
    font-size: 0.95rem;
  }

  .footer-divider {
    width: 80%;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }
}