:root {
  --brand-primary: #004AAD;
  --brand-accent: #FFC107;
  --brand-dark: #333333;
  --brand-light: #f7f9fc;
}

body {
  color: var(--brand-dark);
  background-color: white;
  font-family: 'Segoe UI', sans-serif;
}

.bg-brand { background-color: var(--brand-primary) !important; color: white; }
.text-brand { color: var(--brand-primary) !important; }
.text-accent { color: var(--brand-accent) !important; }
.btn-brand {
  background-color: var(--brand-primary);
  color: #FFC107;
  border: none;
}
.btn-brand:hover {
  background-color: #00388c;
  color: white
}


.scrolling-text-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
  font-size: 1rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.navbar {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.navbar-nav .nav-link {
  font-size: 1.05rem;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}

.navbar-nav .nav-link.active {
  font-weight: bold;
  color: #0d6efd;
}

.site-logo {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.site-logo:hover {
  transform: scale(1.01);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.hero-slide {
	height: 70vh;
	background-size: cover;
	background-position: center;
	position: relative;
}

.hero-slide .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
	z-index: 1;
}

.hero-slide .container {
	z-index: 2;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}


 .pricing-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    background-color: #fff;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
  }

  .border-bronze {
    border: 3px solid #cd7f32;
  }

  .border-silver {
    border: 3px solid #c0c0c0;
  }

  .border-gold {
    border: 3px solid #ffd700;
  }

  .plan-price {
    font-size: 2rem;
    font-weight: 700;
  }

  .plan-period {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
  }

  .plan-features li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  .plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0d6efd;
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0.3rem;
  }

  .card.pricing-card {
    position: relative;
  }


  .accordion-button {
  background-color: #f8f9fa;
  color: #0d6efd;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: #0d6efd;
  color: white;
}

.accordion-button {
  border-radius: 0 !important;
}


.accordion-item {
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.05);
}

.accordion-body {
  background-color: #ffffff;
  color: #212529;
}