/* ===== Navbar Base (Desktop) ===== */
.blink-navbar {
  background: #fff;
  border-bottom: 3px solid #e65100;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 0.8rem 2rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1050;
}

/* Brand */
.blink-navbar .brand {
  font-weight: 700;
  font-size: 1.7rem;
  color: #0a2f5a;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.blink-navbar .brand:hover {
  color: #e65100;
}

/* Nav Links */
.blink-navbar .nav-link {
  color: #0a2f5a;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover underline animation */
.blink-navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0%;
  height: 2px;
  background: #e65100;
  transition: width 0.3s ease;
}

.blink-navbar .nav-link:hover::after {
  width: 100%;
}

.blink-navbar .nav-link:hover {
  color: #e65100;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, #0a2f5a, #e65100);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0.45rem 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline-custom {
  border: 2px solid #0a2f5a;
  color: #0a2f5a;
  border-radius: 25px;
  padding: 0.45rem 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: #0a2f5a;
  color: #fff;
}

/* ===== Mega Menu (Desktop) ===== */
.mega-menu-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #f8f9fa;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 2rem 3rem;
  border-top: 3px solid #e65100;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 0 0 10px 10px;
}

.dropdown-hover:hover .mega-menu-container,
.mega-menu-container.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega Menu Columns */
.mega-menu-column {
  flex: 1;
  min-width: 200px;
}

.mega-menu-column h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #0a2f5a;
  margin-bottom: 1rem;
  border-left: 4px solid #e65100;
  padding-left: 8px;
}

.mega-menu-column a {
  display: block;
  margin-bottom: 0.6rem;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mega-menu-column a:hover {
  color: #e65100;
}

/* Divider Lines */
.mega-menu-column:not(:last-child) {
  border-right: 1px solid #ddd;
  padding-right: 2rem;
}

/* ===== Mobile (Keep same as before) ===== */
@media (max-width: 991px) {
  .mega-menu-container { display: none !important; }

  .offcanvas-start {
    width: 280px;
    max-width: 85%;
    overflow-y: auto;
    background-color: #fff;
    padding: 1rem;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
  }

  .offcanvas-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
  }

  .offcanvas-body .nav-link {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f1f1;
    font-weight: 500;
  }

  .offcanvas-body .btn-primary-custom,
  .offcanvas-body .btn-outline-custom {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .offcanvas-title.brand {
    font-size: 1.5rem;
  }
}

/* Navbar Toggler */
.navbar-toggler {
  border: none;
  outline: none;
  padding: 0.25rem 0.5rem;
}

/* Optional Scroll for smaller width */
@media (max-width: 1200px) {
  .mega-menu-container {
    overflow-x: auto;
  }
}



/* ===== Footer Section ===== */
.footer-section {
  background: linear-gradient(135deg, #0a2f5a 0%, #e65100 100%) !important;
  color: #fff !important;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* All text white by default */
.footer-section * {
  color: #fff;
}

/* Company Title */
.footer-title {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}

/* Company Description */
.footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #f2f2f2;
}

/* Social Icons */
.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #ffd8b0; /* light orange hover */
}

/* Column Titles */
.footer-subtitle {
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffd8b0;
}

/* Footer Links */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #f2f2f2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd8b0;
}

/* Contact Info */
.footer-contact li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i {
  color: #ffd8b0;
  font-size: 1.1rem;
}

/* Copyright */
.footer-bottom {
  color: #f0f0f0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-title,
  .footer-subtitle {
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-social {
    text-align: center;
  }

  .footer-section {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
