/* Main Content Styling */
.custon-iskon-main-content {
  padding: 60px 20px;
  text-align: center;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lotus" patternUnits="userSpaceOnUse" width="40" height="40"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23lotus)"/></svg>');
}

.custon-iskon-main-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #284369;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.custon-iskon-main-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Bottom Navigation Bar */
.custon-iskon-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 8px 0;
}

.custon-iskon-nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Navigation Items */
.custon-iskon-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  min-width: 55px;
  position: relative;
}

.custon-iskon-nav-item:hover {
  /* background: rgba(255, 255, 255, 0.1); */
  transform: translateY(-2px);
  border: 1px solid #284369 !important;
}

.custon-iskon-nav-item:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.2);
}

.custon-iskon-nav-item.custon-iskon-active .custon-iskon-nav-icon {
  transform: scale(1.1);
}

/* Navigation Icons */
.custon-iskon-nav-icon {
  font-size: 20px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  color: #284369 !important;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.custon-iskon-nav-item:not(.custon-iskon-active) .custon-iskon-nav-icon {
  opacity: 0.7;
}

.custon-iskon-nav-item:hover .custon-iskon-nav-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* Navigation Labels */
.custon-iskon-nav-label {
  font-size: 11px;
  font-weight: 500;
  color: #284369 !important;

  text-align: center;
  line-height: 1.2;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.custon-iskon-nav-item.custon-iskon-active .custon-iskon-nav-label {
  opacity: 1;
  font-weight: 600;
}

.custon-iskon-nav-item:hover .custon-iskon-nav-label {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 320px) {
  .custon-iskon-nav-item {
    padding: 6px 8px;
    min-width: 50px;
  }

  .custon-iskon-nav-icon {
    font-size: 18px;
    width: 24px;
    height: 24px;
  }

  .custon-iskon-nav-label {
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  .custon-iskon-bottom-bar {
    display: none; /* Tablet/Desktop पर hide करें */
  }
}

/* Animation Effects */
@keyframes custon-iskon-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
  }
  60% {
    transform: translateY(-2px);
  }
}

.custon-iskon-nav-item.custon-iskon-active .custon-iskon-nav-icon {
  animation: custon-iskon-bounce 0.6s ease-in-out;
}

/* Loading State */
.custon-iskon-nav-item.custon-iskon-loading .custon-iskon-nav-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
