/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa; /* Light background for the site */
  color: #1e293b; /* Dark text */
  margin: 0;
  overflow-x: hidden;
}

/* Custom Scrollbar for sidebars if needed */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.submenu-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

/* Submenu animations */
.group:hover .submenu-container {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.submenu-container {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(135deg, #003366 0%, #1E4C7A 100%);
}

.green-gradient {
  background: linear-gradient(135deg, #00a651 0%, #008f45 100%);
}

/* Rounded Cards */
.card-rounded {
  border-radius: 24px;
}
.card-rounded-lg {
  border-radius: 32px;
}

/* Swiper pagination dots styling */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: #fff !important;
}

/* Hover scales */
.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-scale:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Transition */
#mobile-menu {
  transition: transform 0.4s ease-in-out;
}
#mobile-menu.open {
  transform: translateX(0);
}

.mobile-submenu {
  display: none;
}
.mobile-submenu.open {
  display: block;
}
