@import url('developer.css');
@import url('color.css');
@import url('fonts.css');
@import url('style.css');



/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-400) transparent;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-400);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-400);
}


#sidebar a {
  transition: all 0.3s ease;
}

#sidebar a.active {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

#sidebar a.active svg path {
  fill: #fff !important;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.slide-in-from-right {
  animation: slideInRight 0.3s ease-out forwards;
}


.collapse-content {
  opacity: 0;
}

.collapse[open]>.collapse-content,
.collapse-open>.collapse-content,
.collapse:focus:not(.collapse-close)>.collapse-content,
.collapse:not(.collapse-close)>input[type="checkbox"]:checked~.collapse-content,
.collapse:not(.collapse-close)>input[type="radio"]:checked~.collapse-content {
  opacity: 1;
}

.notif-tab {
  border: transparent !important;
}

.notifications-tab-head button {
  opacity: 1 !important;
}

.notifications-tab-head .active.notif-tab:nth-child(1) {
  border-bottom: solid 1px #EF4444 !important;
}

.notifications-tab-head .active.notif-tab:nth-child(2) {
  border-bottom: solid 1px #EAB308 !important;
}

.notifications-tab-head .active.notif-tab:nth-child(3) {
  border-bottom: solid 1px #22C55E !important;
}


body .tab-btn.active {
  background: #EEF2F6 !important;
  color: #14447B !important;
}



/* Custom Checkbox Styling */
.form-checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #E4E4E7;
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  outline: none;
}

.form-checkbox:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Header Styles */
.main-header {
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border);
}


.nav-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: var(--primary-400);
}

.btn-login {
  background-color: var(--primary-400);
  color: white !important;
  padding: 10px 35px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px 0 rgba(77, 163, 255, 0.2);
}

.btn-login:hover {
  background-color: var(--primary-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(77, 163, 255, 0.3);
}

.btn-register {
  background-color: var(--foreground);
  color: white !important;
  padding: 10px 35px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-register:hover {
  background-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(19, 38, 56, 0.2);
}

.language-dropdown label {
  transition: all 0.3s ease;
}

.language-dropdown label:hover {
  background-color: #FAFAFA;
  border-color: var(--primary-400);
}

/* Responsive adjustment for header */
@media (max-width: 1280px) {
  .nav-menu {
    gap: 25px;
  }
}

@media (max-width: 1024px) {

  .btn-login,
  .btn-register {
    padding: 12px 25px;
    font-size: 13px;
  }

  .header-actions {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .main-header .container {
    height: 70px;
  }

  .logo-wrapper img {
    height: 24px;
  }
}

/* Mobile Menu Specifics */
.mobile-menu-drawer {
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay:not(.hidden) {
  display: block !important;
}

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, var(--primary-50) 0%, #FFFFFF 100%);
}

.hero-grid-bg {
  background-image:
    linear-gradient(to right, rgba(20, 68, 123, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 68, 123, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.btn-get-started {
  background-color: var(--primary-400);
  color: white !important;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px 0 rgba(77, 163, 255, 0.3);
}

.btn-get-started:hover {
  background-color: var(--primary-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px 0 rgba(77, 163, 255, 0.4);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .hero-section {
    padding-top: 80px;
    /* Offset for fixed header */
  }

  .hero-section h1 {
    font-size: 42px;
  }

  .hero-section .container>div {
    text-align: center;
    justify-content: center;
  }

  .hero-section .w-full {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 32px;
  }

  .btn-get-started {
    width: 100%;
    padding: 14px 30px;
  }
}

.hero-section {
  background: url(../images/top-bg.png) no-repeat center center/cover;
}

/* Feature Section Styles */
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-400);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: var(--primary-400);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 0 auto 30px;
  font-size: 28px;
  box-shadow: 0 8px 16px rgba(77, 163, 255, 0.2);
}

@media (max-width: 768px) {
  .feature-card {
    padding: 40px 25px;
  }
}

/* About Section Styles */
.about-image {
  width: 100%;
  height: auto;
  border-radius: 250px 250px 0 0;
  object-fit: cover;
  aspect-ratio: 1/1.2;
}

@media (max-width: 1024px) {
  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-content {
    text-align: center;
  }

  .about-content ul {
    display: inline-block;
    text-align: left;
  }
}

/* Packages Section Styles */

.packages-section {
  background: url(../images/investment-packages-bg.png) no-repeat center top/cover;
}

.package-card {
  background: var(--primary-400);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: solid 1px var(--primary-400);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(77, 163, 255, 0.3);
}

.package-card-inner {
  background: var(--background);
  flex: 1;
  border-radius: 16px;
}

.package-btn {
  background-color: var(--primary-400);
  color: white !important;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  margin-top: auto;
  transition: all 0.3s ease;
}

.package-btn:hover {
  background-color: var(--primary-500);
}

/* Swiper Pagination Customization */
.packages-swiper .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
}

.packages-swiper .swiper-pagination-bullet-active {
  background: var(--primary-400);
  width: 60px;
}

.inner-banner-section {
  background: url(../images/about-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
}