::-webkit-scrollbar {
  width: 4px;
}
/* On hover */
::-webkit-scrollbar:hover {
  width: 8px;
}

/* Scrollbar track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

/* Scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

::-webkit-scrollbar-track {
  background: #363636;
}

::-webkit-scrollbar-thumb {
  background: #09a2bd;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #09a2bd, #6ecede);
}



.justify {
  text-align: justify !important;
}

.bg-light-2 {
  background-color: #fffcf8 !important;
}

/* .social-icon i {
  transition: transform 0.3s cubic-bezier(0.4, 2, 0.6, 1), color 0.3s !important;
}
.social-icon:hover i {
  transform: translateY(-5px) scale(1.2) rotate(-10deg);
  color: #0d6efd !important;
} */

.navbar-nav .dropdown-menu {
  min-width: 200px;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.navbar-nav .dropdown-item {
  transition: background 0.2s, color 0.2s;
  border-radius: 0.5rem;
}
.navbar-nav .dropdown-item:hover {
  background: #0d6efd;
  color: #fff;
}
.navbar-nav .dropdown-menu .dropdown-item i {
  min-width: 20px;
}

.beautiful-border {
  border: 0.5px solid #929297;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(9, 162, 189, 0.3);
  transition: box-shadow 0.3s, border-color 0.3s;
  background: #fff;
  padding: 24px 16px;
  cursor: pointer;
}
.beautiful-border:hover {
  border-color: #929297;
  box-shadow: 0 2px 12px rgba(9, 162, 189, 0.8);
}

.hamburger-img {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../img/hamburger.webp") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hamburger-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hamburger-img .content-area {
  position: relative;
  z-index: 2;
}

.dotted-square-list {
  list-style-type: square;
  list-style-position: inside;
}

.dotted-square-list li {
  margin-bottom: 10px;
  border-left: 2px dotted rgb(65, 62, 62);
  padding-left: 10px;
  text-align: justify;
  color: rgb(65, 62, 62);
}

/* Contact Form */
.form-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.loading {
  opacity: 0.6;
  pointer-events: none;
}
#submitBtn {
  transition: all 0.3s ease;
}
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

/* Custom Toast Styles */
.toast-success {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.toast-error {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}
.toast-warning {
  background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%) !important;
  box-shadow: 0 8px 25px rgba(254, 202, 87, 0.4);
}
.toast-info {
  background: linear-gradient(135deg, #54a0ff 0%, #2e86de 100%) !important;
  box-shadow: 0 8px 25px rgba(84, 160, 255, 0.4);
}

/* Success Popup Modal */
.success-modal {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}
.success-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  color: rgb(65, 62, 62) !important;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
  animation: modalSlideIn 0.5s ease-out;
}
@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.nothing-just-animate:hover .animate-life {
  transform: translateY(-5px) scale(1.2) rotate(-10deg);
  transition: transform 0.3s cubic-bezier(0.4, 2, 0.6, 1), color 0.3s !important;
}



