/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* --primary-color: #17a2b8;
  --secondary-color: #20c997; */

  --primary-color: #1a8fb8;
  --secondary-color: #1ea2c4;
  --dark-color: #2c3e50;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-800: #495057;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
}

/* Navigation */
.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
}

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

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

.nav-link {
  font-weight: 500;
  color: var(--gray-800) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.btn-primary {
  /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
  background: var(--primary-color);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 8px;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
  background: var(--primary-color);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

/* Hero Option 2 Specific Styles */
.hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: slideInLeft 0.8s ease-out;
}

.tag-icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.gradient-text {
  background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle,
.hero-description {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-buttons,
.cta-section {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideInLeft 0.8s ease-out 0.8s both;
}

.achievement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: slideInLeft 0.8s ease-out 0.6s both;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
}

.achievement-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.achievement-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.achievement-content p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 12px;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-primary:hover {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  border-color: transparent;
  color: white;
  
}

/* Dashboard Preview */
.dashboard-preview {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  animation: slideInRight 0.8s ease-out 1s both;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-controls {
  display: flex;
  gap: 0.5rem;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control-dot.red {
  background: #ff5f57;
}
.control-dot.yellow {
  background: #ffbd2e;
}
.control-dot.green {
  background: #28ca42;
}

.header-title {
  font-size: 1rem;
  font-weight: 600;
}

.preview-content {
  padding: 1.5rem;
}

.dashboard-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.5rem;
}

.nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.nav-item.active {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.nav-item:hover {
  opacity: 1;
}

.dashboard-content {
  position: relative;
  min-height: 225px;
}
@media (max-width: 768px) {
 .dashboard-content { 
  min-height: 315px;
} 

  .hero-section {
    margin-top: 7rem !important;
  }
}


.content-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.content-panel.active {
  opacity: 1;
  transform: translateY(0);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.panel-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #28ca42;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.ai-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.feature-item i {
  color: #28ca42;
  font-size: 1.1rem;
}

/* Original Hero Elements */
.hero-image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.2rem;
}

.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.card-2 {
  top: 20%;
  right: 15%;
  animation-delay: -2s;
}
.card-3 {
  bottom: 30%;
  left: 5%;
  animation-delay: -4s;
}
.card-4 {
  bottom: 20%;
  right: 10%;
  animation-delay: -1s;
}

.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-brain {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  animation: pulse 3s ease-in-out infinite;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: var(--light-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.service-header h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-description {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

/* About Section */
.about-section {
  padding: 5rem 0;
}

.about-content {
  padding-right: 2rem;
}

.about-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.image-placeholder {
  text-align: center;
  padding: 3rem;
  background: var(--light-color);
  border-radius: 16px;
  border: 2px dashed var(--gray-300);
}

/* Login Section */
.login-section {
  padding: 5rem 0;
  background: var(--white);
}

.login-container {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.login-tabs {
  display: flex;
  background: var(--gray-100);
  border-radius: 12px;
  padding: 0.5rem;
  margin-bottom: 2rem;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-sm);
}

.login-form-container {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.forgot-password {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.login-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: 8px;
}

.info-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.info-card h6 {
  margin: 0;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Contact Section */
.contact-section {
  padding: 3rem 0;
}

.contact-info h4 {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-item a {
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Dashboard Styles */
.dashboard-body {
  background: var(--gray-100);
}

.dashboard-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.dashboard-logo {
  height: 70px;
  border-radius: 6px;
}

.search-container {
  display: flex;
  justify-content: center;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-600);
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 2px solid var(--gray-200);
  border-radius: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.user-menu .dropdown-toggle {
  border: none;
  background: none;
  color: var(--gray-600);
}

.user-menu .dropdown-toggle:focus {
  box-shadow: none;
}

.dashboard-main {
  padding: 2rem 0;
}

.welcome-banner {
  /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
  background: var(--primary-color);
  color: white;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
}

.welcome-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.welcome-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.dashboard-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Category Navigation */
.category-navigation {
  margin-bottom: 2rem;
}

.category-tabs {
  background: var(--white);
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  justify-content: center;
}

.category-tabs .nav-link {
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.3s ease;
  margin: 0 0.25rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.category-tabs .nav-link:hover {
  background: var(--gray-100);
  color: var(--primary-color);
}

.category-tabs .nav-link.active {
  /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-sm);
}

.category-tabs .badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}

.tools-grid {
  margin-bottom: 3rem;
}

.tool-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.tool-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.tool-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.tool-icon {
  flex-shrink: 0;
}

.icon-circle {
  width: 50px;
  height: 50px;
  /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.tool-description {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.tool-actions {
  display: flex;
  gap: 0.5rem;
}

.tool-actions .btn {
  border-radius: 6px;
  font-weight: 500;
}

/* Coming Soon Sections */
.coming-soon-section {
  padding: 3rem 0;
}

.coming-soon-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.coming-soon-icon {
  width: 100px;
  height: 100px;
  /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: white;
}

.coming-soon-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.coming-soon-card .lead {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.feature-preview {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.feature-preview h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.feature-preview .feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.feature-preview .feature-list li {
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--gray-700);
}

.quick-actions {
  margin-top: 3rem;
}

.action-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.action-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.action-card h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.action-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading States */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-buttons,
  .cta-section {
    justify-content: center;
  }

  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-nav {
    flex-wrap: wrap;
  }

  .nav-item {
    flex: none;
    min-width: 120px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
  }

  .service-header h5 {
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .login-info {
    grid-template-columns: 1fr;
  }

  .dashboard-stats {
    justify-content: center;
  }

  .tool-header {
    flex-direction: column;
    text-align: center;
  }

  .tool-title {
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .header-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .search-container {
    margin: 1rem 0;
  }

  .category-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .category-tabs .nav-link {
    margin: 0.25rem;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .dashboard-preview {
    margin-top: 2rem;
  }

  .preview-content {
    padding: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .welcome-title {
    font-size: 2rem;
  }

  .login-container {
    padding: 2rem 1rem;
  }

  .welcome-banner {
    padding: 2rem;
  }

  .tool-card {
    padding: 1.5rem;
  }

  .coming-soon-card {
    padding: 2rem 1rem;
  }

  .coming-soon-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States */
.btn:focus,
.form-control:focus {
  outline: none;
}

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

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-600);
}

/* Tab Content Animation */
.tab-pane {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
