* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: Arial, Helvetica, Tahoma, Geneva, Verdana, sans-serif; */
}

:root {
  --primary-color: #eb8511;
  --secondary-color: #000000;
  --lightblue-color: #75bcfe;
  --background-color: #f7f7f7;
}

p {
  font-family: Helvetica, Arial, Verdana, "Segoe UI", Tahoma, Geneva, sans-serif;
  font-size: 1.1rem;
  color: #000000;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  color: #a35905;
}

.naav {
  padding: 0.9rem;
  background: transparent;
  /* background: #bd75097a !important; */
}

.footer-section {
  background: var(--secondary-color);
}

div.banner.carousel-item img {
  max-height: 99vh;
  width: 100%
}

.bg-footer,
.bg-header {
  background: #2489fa7a;
}

.vh-50 {
  height: 50vh;
}

nav.navbar.shrink {
  width: 100%;
  height: auto;
  background-color: #2489fa7a !important;
  transition: all 1.5s ease;
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

nav.navbar.shrink1 {
  width: 100%;
  height: auto;
  background-color: #2489fa !important;
  transition: all 1.5s ease;
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

.navbar-toggler {
  background-color: var(--primary-color) !important;
}

.naav .nav-item a {
  color: var(--primary-color) !important;
  margin: auto 0.8rem;
  font-weight: 600;
}

.naav .nav-item a.active {
  color: #eb3c08 !important;
  font-weight: 700;
}

.bm-primary {
  color: var(--primary-color);
}

.bm-secondary {
  color: var(--secondary-color);
}

.bm-ternary {
  color: #b28800;
}

.bm-bg {
  background-color: #000000;
}

.bm-bg p {
  color: #fff;
}

.footer-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-list li {
  list-style-type: none;
  margin: 0.5rem 0;
}

.footer-social-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  backdrop-filter: blur(4px);
}

.social-icon-btn:hover {
  transform: translateX(5px);
  color: #fff !important;
}

.social-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.social-icon-btn:hover .social-icon-circle {
  transform: scale(1.12) rotate(-5deg);
}

.social-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 1rem;
}

.social-label small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.social-arrow {
  opacity: 0;
  font-size: 0.8rem;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transform: translateX(-6px);
}

.social-icon-btn:hover .social-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Facebook */
.social-facebook .social-icon-circle {
  background: #1877F2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.45);
}
.social-facebook:hover {
  background: rgba(24, 119, 242, 0.15);
  border-color: rgba(24, 119, 242, 0.5);
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.25);
}

/* Instagram */
.social-instagram .social-icon-circle {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.45);
}
.social-instagram:hover {
  background: rgba(220, 39, 67, 0.12);
  border-color: rgba(220, 39, 67, 0.45);
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.25);
}

/* YouTube */
.social-youtube .social-icon-circle {
  background: #FF0000;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.45);
}
.social-youtube:hover {
  background: rgba(255, 0, 0, 0.12);
  border-color: rgba(255, 0, 0, 0.45);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.25);
}

div.justify {
  text-align: justify !important;
  font-size: 1.1rem;
}

.text-justify {
  text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

/* for banner slider for small  */
@media (max-width: 999px) {
  .carousel-inner .carousel-item>div {
    display: none;
  }

  .carousel-inner .carousel-item>div:first-child {
    display: block;
    width: 100%;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 1;
  width: 10%;
}

/* medium and up screens */
@media (min-width: 1000px) {

  .carousel-inner .carousel-item-end.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(33.33%);
  }

  .carousel-inner .carousel-item-start.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-33.33%);
  }

  .carousel-inner .carousel-item>div {
    display: flex;
  }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
  transform: translateX(0);
}

.card {
  background-color: #b28800;
}

/* end here for small banner sliders */

@media (max-width: 992px) {
  .naav {
    padding: 1.5rem;
    background-color: #2489fa7a !important;
    /* background: #bd75097a !important; */
  }
}