:root {
  --primary-blue: #0a2540; /* 30% Color */
  --accent-gold: #d4af37; /* 10% Color */
  --bg-white: #ffffff; /* 60% Color */
  --text-dark: #333333;
}

body {
  font-family: "Poppins", sans-serif;
}

/*====================
 Topbar Styling 
  ======================*/
.topbar {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  font-size: 0.85rem;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.topbar a {
  color: var(--bg-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.topbar a:hover {
  color: var(--accent-gold);
}

.social-icons a {
  margin-left: 15px;
  font-size: 1rem;
}

.navbar-nav .nav-link {
  white-space: nowrap;
  font-size: 0.95rem;
  padding-left: 0.7rem !important;
  padding-right: 0.7rem !important;
  color: #0a2540 !important;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #d4af37 !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #d4af37;
  transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* 🔥 FIX: Dropdown Arrow (Dot) Remove Karega 🔥 */
.dropdown-toggle::after {
  display: none !important;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    border-top: 3px solid #d4af37;
  }
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  color: #0a2540;
  transition: 0.3s;
}
.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  padding-left: 25px;
}

/* 🔥 Premium Working Search Bar Box 🔥 */
.search-collapse-area {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #eaeaea;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}
.search-form-header input:focus {
  box-shadow: none;
  border-color: #0a2540;
}
/* Premium Quote Button */
.btn-quote {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.4s ease;
  border: 2px solid var(--accent-gold);
}

.btn-quote:hover {
  background-color: transparent;
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Search Icon */
.search-icon {
  color: var(--primary-blue);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.search-icon:hover {
  color: var(--accent-gold);
}

/* Sticky Navbar JS Class */
.is-sticky {
  position: fixed;
  top: 0 !important; /* Force to absolute top */
  left: 0;
  width: 100%;
  z-index: 1030;
  background-color: var(--bg-white) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Premium soft shadow */
  animation: slideDown 0.4s ease-in-out forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* =======================
    Footer section styling
==========================*/

.footer-section {
  background-color: #051626; /* Deep Navy Blue */
  color: #d1d5db;
  padding: 80px 0 0;
  font-family: "Poppins", sans-serif;
  border-top: 4px solid #d4af37; /* Gold Accent Top Border */
}

.footer-logo {
  max-height: 70px;
  margin-bottom: 25px;
  /* Agar logo dark hai, toh is filter se wo white ho jayega. 
           Agar already light hai toh ise hata dena */
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #a0aec0;
}

/* Social Icons matching the design */
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-social a:hover {
  background: #d4af37;
  color: #0a2540;
  transform: translateY(-5px);
}

/* Headings with Gold Underline */
.footer-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 2px;
  background-color: #d4af37;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: #d4af37;
  transform: translateX(6px);
}

/* Contact List[cite: 11] */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-contact i {
  color: #d4af37;
  margin-right: 15px;
  margin-top: 4px;
  font-size: 1.1rem;
}

/* Bottom Copyright Bar */
.footer-bottom {
  background: #030d17;
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
}
.footer-bottom p {
  margin: 0;
  color: #8892a0;
  font-size: 0.9rem;
}
.footer-bottom p a {
  color: #d4af37;
  text-decoration: none;
}
.footer-bottom p a:hover {
  text-decoration: underline;
}

/* =====================
  Breadcrumb Styling
=======================*/

.breadcrumb-section {
  position: relative;
  padding: 80px 0;

  /* 🔥 THE FIX: Pattern aur Gradient dono ek sath combine kar diye 🔥 */
  background:
    radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #0a2540 0%, #051626 100%) !important;
  background-size:
    20px 20px,
    100% 100%;
  background-color: #0a2540 !important; /* Fallback strict color */

  color: #ffffff !important;
  text-align: center;
  overflow: hidden;
  border-bottom: 3px solid #d4af37 !important; /* Gold Accent Line */
}

/* Ensure title is always white */
.breadcrumb-title {
  color: #ffffff !important;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8) !important;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpTitle 0.6s ease forwards;
}

/* Subtle glow effect behind text */
.breadcrumb-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  ) !important;
  z-index: 1;
  pointer-events: none;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  /* Delaying the breadcrumb link animation slightly */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpTitle 0.6s ease 0.2s forwards;
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.05) !important; /* Slight glassmorphism */
  padding: 10px 25px;
  border-radius: 30px;
  margin: 0;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.breadcrumb-item {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #d4af37 !important;
}

.breadcrumb-item.active {
  color: #d4af37 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›"; /* Premium separator */
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 1.2rem;
  vertical-align: middle;
  line-height: 1;
}

@keyframes fadeUpTitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
