/* Social icons styling in navbar */
.social-icons {
  display: flex;
  align-items: center;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1030;
}

.social-icons .btn-facebook {
  background-color: #3b5998;
  color: #fff;
}

.social-icons .btn-twitter {
  background-color: #1da1f2;
  color: #fff;
}

.social-icons .btn-youtube {
  background-color: #ff0000;
  color: #fff;
}

.social-icons .btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

/* Logo styling - completely hide the logo */
.navbar-brand img {
  display: none; /* Hide the logo images */
}

/* Hide the entire navbar-brand element */
.navbar-brand {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
}

.navbar-brand:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.25)) brightness(1.08);
}

/* Make the footer logo stand out more */
footer img {
  max-height: 90px; /* Footer logo even larger */
  width: auto;
  margin: 15px 0; /* Add vertical spacing in footer */
}

/* Add a subtle shadow to make the logo pop more */
.navbar-brand img, footer img {
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

/* Sharpen the logo a bit to make it crisper */
.navbar-brand img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Add a subtle animation to highlight the logo on page load */
@keyframes logoHighlight {
  0% { opacity: 0.7; transform: scale(0.92); }
  70% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.navbar-brand img {
  animation: logoHighlight 1.2s ease-out forwards;
}

/* Add subtle pulsing effect for the logo in dark mode */
@keyframes logoPulse {
  0% { filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2)); }
  50% { filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)); }
  100% { filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2)); }
}

.navbar-stick-dark .navbar-brand img.logo-light {
  animation: logoHighlight 1.2s ease-out forwards, logoPulse 3s ease-in-out infinite;
}

.block-number {
  text-align: center;
  font-weight: bold;
  font-size: 0.8125em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #191919;
  transition: 0.3s ease-out; }
  .block-number:hover {
    opacity: 1; }
  .block-number::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    margin-bottom: 2px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #191919; }
  .block-number a:hover,
  .block-number a:focus {
    color: #191919; }

.demo-section .main-content .section,
.demo-topbar .main-content .topbar,
.demo-navbar .main-content .navbar,
.demo-header .main-content .header,
.demo-footer .main-content .footer {
  margin: 30px 20px 100px;
  border: 1px solid #f5f6f7;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); }

.demo-topbar .main-content .topbar,
.demo-navbar .main-content .navbar {
  position: static;
  margin: 0; }

.sample-blocks img {
  border-radius: 0.25rem; }
  .sample-blocks img.aos-animate {
    opacity: 0.5 !important; }
  .sample-blocks img:hover {
    opacity: 1 !important;
    transition: 0.7s !important; }

.sample-blocks a {
  position: absolute; }

.sample-blocks a:nth-child(1) {
  -webkit-animation: wobble 4s infinite;
          animation: wobble 4s infinite;
  right: 15px;
  bottom: -20px; }

.sample-blocks a:nth-child(2) {
  -webkit-animation: wobble 8s infinite;
          animation: wobble 8s infinite;
  right: 320px;
  bottom: 30px; }

.sample-blocks a:nth-child(3) {
  -webkit-animation: wobble 5s infinite;
          animation: wobble 5s infinite;
  right: 0px;
  bottom: 190px; }

.sample-blocks a:nth-child(4) {
  -webkit-animation: wobble 6s infinite;
          animation: wobble 6s infinite;
  right: 280px;
  bottom: 180px; }

.sample-blocks a:nth-child(5) {
  -webkit-animation: wobble 9s infinite;
          animation: wobble 9s infinite;
  right: 270px;
  bottom: 320px; }

.sample-blocks a:nth-child(6) {
  -webkit-animation: wobble 7s infinite;
          animation: wobble 7s infinite;
  right: 20px;
  bottom: 370px; }

.sample-blocks a:nth-child(7) {
  -webkit-animation: wobble 5s infinite;
          animation: wobble 5s infinite;
  right: 200px;
  bottom: 470px; }

.sample-blocks a:nth-child(8) {
  -webkit-animation: wobble 8s infinite;
          animation: wobble 8s infinite;
  right: 10px;
  bottom: 470px; }

.sample-blocks a:nth-child(9) {
  -webkit-animation: wobble 9s infinite;
          animation: wobble 9s infinite;
  right: 0px;
  bottom: 570px; }

@-webkit-keyframes wobble {
  0% {
    transform: rotate(-1deg) translate(-5px, -5px); }
  50% {
    transform: rotate(1deg) translate(5px, 5px); }
  100% {
    transform: rotate(-1deg) translate(-5px, -5px); } }

@keyframes wobble {
  0% {
    transform: rotate(-1deg) translate(-5px, -5px); }
  50% {
    transform: rotate(1deg) translate(5px, 5px); }
  100% {
    transform: rotate(-1deg) translate(-5px, -5px); } }

@media (max-width: 400px) {
  body > .footer .social a:last-child,
  body > .footer .nav a:last-child {
    display: none; } }

/*# sourceMappingURL=style.css.map */
