body {
  font-family: "Inter", sans-serif;
  color: #161c2d;
}

.login-form input {
  border-bottom: 1px solid #33333380;
  width: 100%;
}

.login-form input:focus {
  border-bottom: 1px solid #10A3E7;
  box-shadow: none;
}

/* FAQ toggle icon styles */
.faq-toggle-icon {
  transition: transform 0.3s ease;
}
.faq-toggle-icon.rotate {
  transform: rotate(180deg);
}

/* Custom DataTable CSS */
.datatable-wrapper {
  width: 100%;
  overflow-x: auto;
}

.datatable {
  width: 100%;
  border-collapse: collapse;
}

.datatable th {
  cursor: pointer;
  user-select: none;
  position: relative;
}

.sort-icon::after {
  content: "⇅";
  position: absolute;
  right: 8px;
  color: #6b7280;
}

.sort-asc::after {
  content: "↑";
  position: absolute;
  right: 8px;
  color: #4b5563;
}

.sort-desc::after {
  content: "↓";
  position: absolute;
  right: 8px;
  color: #4b5563;
}

.pagination-btn {
  cursor: pointer;
}

.pagination-btn.active {
  background-color: #10a3e7;
  color: white;
}

.pagination-btn.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Notifications */
.notification-unread {
  background-color: #f0f9ff;
}

/* blog style */

.content-over-banner {
  position: relative;
  z-index: 10;
  width: 100%;
}
.tab-link.active {
  color: #000000;
  border-bottom: 2px solid #10a3e7;
  font-weight: 600;
}

.no-blogs-message {
  transition: transform 0.3s ease;
  display: inline-block; /* needed for transform */
  cursor: default;
}

.no-blogs-message:hover {
  transform: scale(0.9); /* zoom out on hover */
}

/* Hero Section */
/* Contact Animation Styles */
@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}

@keyframes floatDown {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(10px) scale(0.95);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px) translateY(-50%) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes slideInBottom {
  0% {
    transform: translateY(100px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}

/* Contact specific animations */
.contact-float-1 {
  animation: floatUp 4s ease-in-out infinite, slideInLeft 1s ease-out;
  animation-delay: 0s, 0.5s;
}

.contact-float-2 {
  animation: floatDown 3.5s ease-in-out infinite, slideInRight 1s ease-out;
  animation-delay: -1s, 1s;
}

.contact-float-3 {
  animation: floatUp 4.5s ease-in-out infinite, slideInRight 1s ease-out;
  animation-delay: -2s, 1.5s;
}

.contact-float-4 {
  animation: floatDown 3s ease-in-out infinite, slideInBottom 1s ease-out;
  animation-delay: -0.5s, 2s;
}

.contact-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.dots-rotate {
  animation: rotate 15s linear infinite, wiggle 3s ease-in-out infinite;
  animation-delay: 0s, 1s;
}

/* Hover effects */
.contact-image:hover {
  transform: scale(1.2) rotate(5deg) !important;
  transition: all 0.3s ease;
  z-index: 20;
}

.contact-image {
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-image:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

/* Breathing effect for the main hero image */
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.hero-image-breathe {
  animation: breathe 6s ease-in-out infinite;
}

.bubble-animation {
  animation: float 6s ease-in-out infinite;
}

.bubble-pulse {
  animation: pulse 4s ease-in-out infinite;
}

.bubble-rotate {
  animation: rotate 20s linear infinite;
}

.bubble-delay-1 {
  animation-delay: -1s;
}
.bubble-delay-1-5 {
  animation-delay: -1.5s;
}
.bubble-delay-2 {
  animation-delay: -2s;
}
.bubble-delay-3 {
  animation-delay: -3s;
}
