.navbar-nav .nav-link {
  font-size: 14px !important;
  font-family: 'Roboto', Arial, sans-serif !important;
  color: #fff !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
}

/* Navbar background color set to black for consistency */
.navbar.second-header,
#primary-header.navbar,
.header-top.first-header {
  background-color: #000 !important;
}
/* Match nav font size to index page nav */
.navbar-nav .nav-link {
  font-size: 13px;
}
@media only screen and (max-width: 999px) {
  .navbar-nav .nav-link {
    font-size: 14px;
  }

  @media only screen and (max-width: 999px) {
    .navbar-nav .nav-link {
      font-size: 2rem;
    }
  }
}

/* Decorative background shapes */
.bg-shape {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.bg-shape.shape1 {
  top: 0;
  left: 0;
  width: 35vw;
  height: 35vw;
  max-width: 400px;
  max-height: 400px;
  background: radial-gradient(circle at 40% 40%, #007bff 60%, transparent 100%);
  opacity: 0.10;
  border-radius: 50%;
}
.bg-shape.shape2 {
  bottom: 0;
  right: 0;
  width: 45vw;
  height: 45vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle at 60% 60%, #5B7BCE 60%, transparent 100%);
  opacity: 0.08;
  border-radius: 50%;
}
.bg-shape.shape3 {
  top: 55vh;
  left: 60vw;
  width: 18vw;
  height: 18vw;
  max-width: 180px;
  max-height: 180px;
  background: linear-gradient(135deg, #1D157C 60%, transparent 100%);
  opacity: 0.07;
  border-radius: 50%;
}
.bg-shape.shape4 {
  top: 20vh;
  left: 5vw;
  width: 120px;
  height: 120px;
  background: linear-gradient(120deg, #5B7BCE 60%, transparent 100%);
  opacity: 0.09;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  z-index: -1;
}
.bg-shape.shape5 {
  bottom: 10vh;
  right: 10vw;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 70% 30%, #1D157C 50%, transparent 100%);
  opacity: 0.08;
  border-radius: 50%;
  z-index: -1;
}
.bg-shape.shape6 {
  top: 70vh;
  left: 15vw;
  width: 90px;
  height: 90px;
  background: linear-gradient(210deg, #007bff 60%, transparent 100%);
  opacity: 0.10;
  border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
  z-index: -1;
}
.bg-shape.shape7 {
  bottom: 25vh;
  right: 30vw;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 30% 70%, #5B7BCE 50%, transparent 100%);
  opacity: 0.09;
  border-radius: 50%;
  z-index: -1;
}
@media (max-width: 768px) {
  .bg-shape.shape1,
  .bg-shape.shape2,
  .bg-shape.shape3,
  .bg-shape.shape4,
  .bg-shape.shape5,
  .bg-shape.shape6,
  .bg-shape.shape7 {
    width: 50vw;
    height: 50vw;
    max-width: 250px;
    max-height: 250px;
  }
}

main.container {
  position: relative;
  z-index: 1;
  background: transparent;
}
.container {
  margin-top: 125px;  
}
.success-header {
  background: linear-gradient(90deg, #007bff 60%, #0056b3 100%);
  color: #fff;
  border-bottom: 4px solid #fff;
  margin-top: 150px;
}
.success-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.success-header p {
  font-size: 1.2rem;
  font-weight: 400;
}
.blog-article {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 2.5rem 2rem;
  max-width: 800px;
}
.blog-article h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #007bff;
}
.blog-article h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #3C5494;
  margin-bottom: 1rem;
}
.blog-article ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}
.blog-article li {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  color: #343536;
  line-height: 1.7;
}
.blog-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #1D157C;
  border-radius: 0.5rem;
  background: #e3ebff;
  border-left: 6px solid #007bff;
}
.blog-quote .blockquote-footer {
  font-size: 1rem;
  color: #777F81;
  margin-top: 0.5rem;
  display: block;
}
footer {
  background: var(--primary-color);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-top: 4px solid #fff;
  position: relative;
  z-index: 2;
}
/* Social links styles for visibility */
.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #007bff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s;
  border: 2px solid #007bff;
}
.footer-social-links a:hover {
  background: #007bff;
  color: #fff;
  border-color: #fff;
}
.footer-social-links a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: fill 0.2s;
}
/* Header styles from index page for consistency */
#header.fixed-top {
  z-index: 1030;
}
.header-top.first-header {
  background: #111 !important;
  color: #fff;
  font-size: 15px;
}
.header-top .info li,
.header-top .social-links li {
  color: #fff;
}
.header-top .social-links a svg {
  fill: #fff;
}
.navbar.second-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.navbar .navbar-brand .logo {
  max-height: 60px;
}

#bdNavbar {
  background-color: #000000;
}

.header-bottom .navbar-nav{
  padding: 20px 20px 20px 20px;
}
.header-bottom .navbar-nav a{
  font-size: 27px;
  padding: 20px 20px 20px 20px
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #007bff !important;
}
.navbar-toggler {
  background: #007bff;
  border-radius: 8px;
}
.navbar-toggler svg {
  fill: #fff;
}
.offcanvas-header .btn-close-black {
  background-color: #222;
}

.dropdown-menu {
  background: #000000;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
#primary-header {
    background-color: #222;
}
#navbar-search-input {
  border-radius: 0.5rem;
}
/* Footer menu styles for consistency */
.footer-menu {
  margin-bottom: 1.5rem;
}
.footer-menu .logo {
  max-width: 320px;
  margin-bottom: 1.2rem;
}
.footer-menu h5,
.footer-menu h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #fff;
}
.footer-menu ul.menu-list {
  padding-left: 0;
}
.footer-menu ul.menu-list li {
  margin-bottom: 0.5rem;
}
.footer-menu ul.menu-list a {
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu ul.menu-list a:hover {
  color: #e3ebff;
}
.footer-bottom {
  border-top: 1px solid #fff;
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.95rem;
  color: #fff;
}
@media (max-width: 990px) {
  .success-header {
    padding: 2rem 1rem;
  }
  .blog-article {
    padding: 1.5rem 1rem;
  }
  .header-top.first-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .navbar.second-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-nav .nav-link {
		font-size: 21px !important;
		font-family: 'Roboto', Arial, sans-serif !important;
		color: #fff !important;
		text-transform: uppercase !important;
		font-weight: 500 !important;
		letter-spacing: 0.5px !important;
	}
}
@media (max-width: 600px) {
  .success-header h1 {
    font-size: 1.6rem;
  }
  .blog-article h2 {
    font-size: 1.2rem;
  }
  .blog-article h3 {
    font-size: 1rem;
  }
  .blog-article {
    padding: 1rem 0.5rem;
  }
  .navbar .navbar-brand .logo {
    max-height: 40px;
  }
}
@media (max-width: 768px) {
  .footer-menu {
    margin-bottom: 1rem;
  }
  .footer-menu .logo {
    max-width: 220px;
  }
}
