/* Modern Bootstrap 5 Compatible Styles */

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Navigation Enhancements */
.navbar {
  transition: all 0.3s ease;
  /* backdrop-filter: blur(10px); */
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(45deg, #1DA1F2, #47F0F8);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Enhancements */
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 1rem 0;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(45deg, #1DA1F2, #47F0F8);
  color: white;
  transform: translateX(5px);
}

/* Button Styles */
.btn {
  border-radius: 25px;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(45deg, #1DA1F2, #47F0F8);
  box-shadow: 0 4px 15px rgba(29,161,242,0.3);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #0d8bd9, #2ee0e8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,161,242,0.4);
}

.btn-outline-primary {
  border: 2px solid #1DA1F2;
  color: #1DA1F2;
  background: transparent;
}

.btn-outline-primary:hover {
  background: linear-gradient(45deg, #1DA1F2, #47F0F8);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
}

/* Card Enhancements */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Section Spacing */
section {
  padding: 80px 0;
}

/* Typography */
.display-5 {
  font-weight: 900;
  color: #2c3e50;
}

.lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: #6c757d;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .display-5 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* Utility Classes */
.bg-gradient-primary {
  background: linear-gradient(45deg, #1DA1F2, #47F0F8);
}

.text-gradient {
  background: linear-gradient(45deg, #1DA1F2, #47F0F8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #1DA1F2, #47F0F8);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #0d8bd9, #2ee0e8);
}