 /* Top header styles */
 .top-header {
  background-color: #000000;
  padding: 8px 0;
  font-size: 14px;
  width: 100%;
}

.top-header a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 15px;
  transition: all 0.3s ease;
}
.top-margin{
  margin-top: 100px;
}

.top-header a:hover {
  color: #ad3d09;
  transform: scale(1.1);
}

.top-header .social-icons a {
  margin-right: 10px;
  font-size: 16px;
}

.top-header .time {
  color: #ffffff;
  display: flex;
  align-items: center;
}

.top-header .time i {
  margin-right: 5px;
  color: #ffffff;
}

.top-header .time i:hover {
  color: #ad3d09;
}

/* Separator line */
.separator-line {
  height: 2px;
  background-color: #ffffff;
  margin: 0;
}

/* Logo styles */
.navbar-brand {
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.1);
}

.navbar-brand img {
  height: 70px;
  /*margin-right: 20px;*/
  
}



/* Existing navbar styles */
.custom-navbar {
  background-color: #0e194d;
  padding: 15px 0;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  margin: 0 15px;
  position: relative;
  font-weight: 500;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important; /* Changed hover color */
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #ffffff; /* Changed underline color */
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Remove special active styling to make HOME match other links */
.navbar-nav .nav-link.active {
  color: #ffffff !important;
}

.navbar-nav .nav-link.active:hover {
  color: #fdfdfd !important; /* Changed hover color */
}

.quote-btn {
  background-color: #f0c419;
  color: #0e194d;
  border: none;
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.quote-btn:hover {
  transform: scale(1.1);
}

.navbar-toggler {
  border-color: #ffffff;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
      margin: 10px 0;
      text-align: right;
  }
  
  .quote-btn {
      margin-top: 10px;
      margin-left: auto;
  }

  .navbar-collapse {
      text-align: right;
  }

  .navbar-nav {
      text-align: right;
  }

  .d-flex {
      justify-content: flex-end;
  }

  .navbar-toggler {
      margin-left: auto;
  }

  .navbar-nav .nav-link::after {
      right: 0;
      left: auto;
  }

  .navbar-nav .nav-link:hover::after {
      width: 100%;
  }
}

/* Responsive styles for top header */
@media (max-width: 767.98px) {
  .top-header .time {
      justify-content: center;
      margin-bottom: 10px;
  }
  
  .top-header .links {
      justify-content: center;
      margin-top: 5px;
  }
  
  .navbar-brand img {
      height: 60px; /* Slightly smaller on mobile but still larger than before */
  }
}
/* Smooth page fade-in animation */
@keyframes fadeInAnimation {
0% { opacity: 0; }
100% { opacity: 1; }
}

.text-danger{
  color: rgb(240 196 25) !important;
}