/* Custom Navbar Styling */
.navbar-custom {
  background: linear-gradient(
    to right,
    #1b1464,
    #2e3a87
  ); /* Business-class theme */
  padding: 14px 0;
  transition: background-color 0.3s ease-in-out;
}

.navbar-custom .navbar-brand {
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar-custom .navbar-toggler {
  background-color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
}

/* Nav Links */
.navbar-custom .nav-link {
  color: #f8f9fa;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: #ffd700; /* Gold on hover/active */
}
/* Hero Section */
/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-section p {
  font-size: 1.25rem;
  color: #e2e2e2;
  margin-bottom: 2rem;
}

.hero-section .btn {
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.hero-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.widget-title {
  margin-bottom: 20px;
  color: #003a75;
}
/* Top Travel Deals */
.deal-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.deal-card img {
    transition: transform 0.3s ease;
}

.deal-card:hover img {
    transform: scale(1.05);
}

.destination-name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    background-color: #1B1464;
    /* Custom dark blue */
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
}

.overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    transition: bottom 0.3s ease-in-out;
}

.deal-card:hover .overlay {
    bottom: 0;
}

.btn-book {
    background-color: #FFD700;
    /* Gold color */
    color: #1B1464;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-book:hover {
    background-color: #e6c200;
    color: #fff;
}

.carousel-item img {
    height: 300px;
    object-fit: cover;
}

.btn-outline-primary {
    border-color: #1B1464;
    color: #1B1464;
}

.btn-outline-primary:hover {
    background-color: #1B1464;
}

.text-primary-color {
    color: #1B1464;
}