:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --secondary: #0ea5e9;
  --success: #10b981;
  --dark: #111827;
  --light: #f9fafb;
  --body-color: #374151;
  --border-radius: 16px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--body-color);
  line-height: 1.7;
  background-color: var(--light);
}

/* Hero Section */
.hero-banner {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Add this pattern overlay */
.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-image-container {
  position: relative;
}

.hero-image {
  border-radius: var(--border-radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: floatAnimation 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatAnimation 5s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  left: -10%;
}

.card-2 {
  bottom: 20%;
  right: -10%;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: white;
}

.section-header {
  margin-bottom: 60px;
}

.section-header .badge {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.service-image img {
  transition: transform 0.4s ease;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0;
  color: var(--dark);
}

.service-description {
  color: var(--body-color);
  margin-bottom: 1.5rem;
}

.service-card .btn {
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: rotateY(180deg);
}

/* Stats Section */
.stats-section {
  background: var(--primary);
  padding: 80px 0;
  color: white;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

  .floating-card {
    display: none;
  }

  .service-card {
    margin-bottom: 2rem;
  }
}

.feature-image {
  max-height: 500px;
  object-fit: cover;
  width: 100%;
}

/* Navigation Styles */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar .nav-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem !important;
  color: var(--dark) !important;
  transition: color 0.3s ease;
}

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

.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.navbar .dropdown-item {
  padding: 0.7rem 1.5rem;
  font-weight: 500;
}

/* Footer Styles */
.footer-section {
  background-color: var(--dark);
  color: #fff;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.bg-darker {
  background-color: rgba(0, 0, 0, 0.2);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--bs-primary);
  transform: translateY(-3px);
}

.footer-bg {
  position: relative;
  overflow: hidden;
}

.color-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.color-shape img {
  max-width: 800px;
  opacity: 0.05;
}

.color-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.color-shape-2 img {
  max-width: 800px;
  opacity: 0.05;
}

.footer-section .container {
  position: relative;
  z-index: 2;
}

/* Modern Footer Styling */
.footer-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1557683316-973673baf926?w=1920")
    center/cover no-repeat;
  padding: 80px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Top CTA Section */
.glass-effect {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-effect:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.2);
}

/* Typography */
.discussed-content h2,
.widget-head h4,
.footer-bottom p a,
.gradient-text {
  color: #fff;
}

.discussed-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.widget-head h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Buttons */
.modern-btn {
  padding: 16px 40px;
  border-radius: 12px;
  background: #2196f3;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modern-btn:hover {
  background: #1976d2;
  transform: translateY(-2px);
}

/* Widget Layout */
.single-footer-widget {
  margin-bottom: 40px;
}

/* Social Icons */
.social-icon {
  display: flex;
  gap: 12px;
}

.social-icon a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.social-icon a:hover {
  background: #2196f3;
  color: white;
  transform: translateY(-2px);
}

/* List Items */
.list-items li {
  margin-bottom: 12px;
}

.list-items a,
.contact-items .content a,
.footer-menu li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-size: 15px;
}

.list-items a:hover,
.contact-items .content a:hover,
.footer-menu li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Contact Info */
.contact-items {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-items .icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 15px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.scroll-icon {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-icon:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .glass-effect {
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .discussed-content h2 {
    font-size: 2rem;
  }

  .footer-bottom .footer-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-menu {
    justify-content: center;
  }

  .single-footer-widget,
  .social-icon,
  .contact-items {
    text-align: center;
    justify-content: center;
  }

  .mob.card-body{
    text-align: center !important;
  }

  .mob .text-end{
    padding-top: 20px !important;
  }
  
  .mob .col-lg-7{
    padding-top: 20px !important;
  }
}

.discussed-items {
  text-align: center;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 50px;
}

.discussed-content h2 {
  color: #fff;
  font-size: 2.5rem;
  margin: 20px 0;
}

.discussed-content h2 span {
  color: var(--bs-primary);
}

.theme-btn {
  background: var(--bs-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
}

.theme-btn:hover {
  background: #fff;
  color: var(--bs-primary);
  transform: translateY(-2px);
}

.widget-head h4 {
  color: #fff;
  margin-bottom: 25px;
}

.list-items {
  list-style: none;
  padding: 0;
}

.list-items li {
  margin-bottom: 15px;
}

.list-items a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.list-items a:hover {
  color: var(--bs-primary);
  padding-left: 5px;
}

.contact-items {
  display: flex;
  margin-bottom: 20px;
}

.contact-items .icon {
  /*color: var(--bs-primary);*/
  margin-right: 15px;
}

.contact-items .content {
  color: rgba(255, 255, 255, 0.8);
}

.contact-items .content a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-items .content a:hover {
  color: var(--bs-primary);
}

.recent-post-items {
  display: flex;
  margin-bottom: 20px;
}

.recent-post-items .thumb {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  border-radius: 5px;
}

.recent-post-items .content h6 a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-items .content h6 a:hover {
  color: var(--bs-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.footer-menu li {
  margin-right: 20px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--bs-primary);
}

.scroll-icon {
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-icon:hover {
  background: #fff;
  color: var(--bs-primary);
}

.social-icon a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon a:hover {
  background: var(--bs-primary);
  transform: translateY(-3px);
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
  opacity: 1;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark);
}

.footer-bottom a:hover {
  opacity: 1;
}

.footer-section .brand-text {
  font-size: 2rem;
  color: #fff;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  line-height: 1;
}

/* Registration Section */
.registration-section {
  padding-top: 120px !important;
  background-color: var(--light);
}

.registration-section .card {
  border-radius: var(--border-radius);
}

.registration-section .form-label {
  font-weight: 500;
  color: var(--dark);
}

.registration-section .form-control,
.registration-section .form-select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.registration-section .form-control:focus,
.registration-section .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.1);
}

/* Login Section */
.login-section {
  padding-top: 120px !important;
  background-color: var(--light);
  min-height: 80vh;
}

.login-section .card {
  border: none;
  border-radius: var(--border-radius);
}

.login-section .form-control {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.login-section .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.1);
}

/* Dashboard Section */
.dashboard-section {
  padding-top: 100px !important;
  background-color: var(--light);
  min-height: 100vh;
}

.dashboard-section .card {
  border: none;
  border-radius: var(--border-radius);
}

.list-group-item {
  border: none;
  padding: 0.8rem 1rem;
  margin-bottom: 3px;
  border-radius: 8px !important;
}

.list-group-item.active {
  background-color: var(--primary);
}

.list-group-item i {
  width: 20px;
}

/* Profile verification badge */
/* Profile styles */
.profile-image-container {
  position: relative;
  display: inline-block;
}

.profile-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.profile-image-container label {
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-image-container label:hover {
  background-color: #0056b3 !important;
}

.profile-badge {
  position: absolute;
  bottom: 5px;
  right: 35px;
  width: 20px;
  height: 20px;
  background-color: #00a884;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

.profile-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.profile-badge i {
  color: #fff;
  font-size: 10px;
}

/* Bootstrap Tags Input styles */
.bootstrap-tagsinput {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.bootstrap-tagsinput .tag {
  background: var(--primary);
  padding: 3px 7px;
  border-radius: 4px;
  color: white;
  margin-right: 4px;
}

.bootstrap-tagsinput input {
  width: auto;
  max-width: 100%;
}

.py-5 {
  padding-top: 8rem !important;
}

.dashboard-section.py-5 {
  padding-top: 3rem !important;
}

/* Worker Directory Styles */
.form-control-lg,
.form-select-lg {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
}

.input-group-text {
  padding: 0 1.25rem;
  border-radius: 0.5rem;
}

.input-group .form-control {
  border-start-start-radius: 0;
  border-end-start-radius: 0;
}

.btn-lg {
  padding: 1rem 2rem;
}

/* Search Container Styles */
.search-container {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.search-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

/* Search Input Styles */
.search-input-wrapper .input-group {
  background-color: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
}

.search-input-wrapper .input-group-text {
  background-color: transparent;
  padding: 15px 20px;
}

.search-input {
  border: none !important;
  padding: 15px 20px;
  font-size: 1rem;
  background-color: transparent !important;
  box-shadow: none !important;
}

.search-input:focus {
  background-color: #fff !important;
}

.search-icon {
  color: #6c757d;
  font-size: 1.1rem;
}

/* Category Select Styles */
.select-wrapper {
  position: relative;
}

.category-select {
  border: none;
  background-color: #f8f9fa;
  padding: 15px 20px;
  border-radius: 12px;
  width: 100%;
  appearance: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-select:focus {
  box-shadow: none;
  background-color: #fff;
}

.select-wrapper::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
}

/* Search Button Styles */
.search-btn {
  padding: 15px 30px;
  border-radius: 12px;
  width: 100%;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.hover-shadow-lg {
  transition: all 0.3s ease;
}

.hover-shadow-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.border-animation {
  position: relative;
}

.border-animation::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg, #0d6efd, #0dcaf0);
  z-index: -1;
  animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* Filter Styles */
.custom-checkbox .form-check-input {
  border-color: #dee2e6;
  background-color: #fff;
}

.custom-checkbox .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.custom-checkbox .form-check-label {
  color: #495057;
  font-size: 0.95rem;
}

.filter-group {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: #f8f9fa;
}

.custom-switch .form-check-input {
  height: 1.5rem;
  width: 3rem;
}

.custom-switch .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.hover-shadow {
  transition: all 0.3s ease;
}
.hover-shadow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Add these pagination styles */
.pagination .page-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 14px;
  margin: 0 3px;
}

.pagination .page-item.active .page-link {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.pagination .page-link:hover {
  background-color: var(--bs-light);
  border-color: transparent;
  transform: translateY(-2px);
}

.pagination .page-item.disabled .page-link {
  background-color: transparent;
  opacity: 0.5;
}

.login-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  max-width: 400px;
  width: 90%;
  border-radius: 15px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control.bg-light {
  background-color: #f8f9fa !important;
  border: 1px solid #e9ecef;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.form-control {
  border-radius: 8px;
  padding: 10px 15px;
}
.btn-primary {
  border-radius: 8px;
}
.toggle-password:hover {
  color: #0d6efd;
}

.auth-page {
  min-height: calc(100vh - 140px);
  padding-top: 150px;
  padding-bottom: 100px;
}

.auth-footer {
  background: rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  position: relative;
  z-index: 1;
}

.auth-footer p {
  margin: 0;
  color: #fff;
}

.card {
  border-radius: 1.25rem;
}

.dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
}

.dropdown-item:hover {
  background-color: var(--bs-primary);
  color: white;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar .dropdown-menu {
  border-radius: 8px;
  margin-top: 0;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar .dropdown-item {
  padding: 8px 20px;
  transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
  background: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
  transform: translateX(5px);
}

.navbar .btn {
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar .btn:hover {
  transform: translateY(-2px);
}

.navbar-brand .brand-text {
  font-size: 24px;
  letter-spacing: -0.5px;
}

.card-img-top {
  height: 450px;
  object-fit: cover;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}

.contact-hero-img {
  height: 500px;
  object-fit: cover;
  margin: 0;
  display: block;
}

/* Worker Profile Styles */
.border-animation {
  position: relative;
}

.border-animation::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg, #0d6efd, #0dcaf0);
  z-index: -1;
  animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* Review Rating Styles */
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 0.5rem;
}

.rating input {
  display: none;
}

.rating label {
  color: #ddd;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
  color: #ffc107;
}

/* PWA Styles */
.pwa-install-popup {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  max-width: 90%;
  width: 400px;
  transition: transform 0.3s ease-in-out;
}

.pwa-install-popup.show {
  transform: translateX(-50%) translateY(0);
}

.pwa-install-popup h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #333;
}

.pwa-install-popup p {
  margin: 0 0 15px;
  color: #666;
  font-size: 0.9rem;
}

.pwa-install-popup .buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.pwa-install-popup button {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

.team-card {
  transition: all 0.3s ease;
}

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

.card-img-wrapper {
  position: relative;
  overflow: hidden;
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: rgba(var(--bs-primary-rgb), 0.8);
  padding: 10px;
  transition: all 0.3s ease;
  opacity: 0;
}

.team-card:hover .team-social {
  bottom: 0;
  opacity: 1;
}

.team-social a {
  margin: 0 10px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  transform: scale(1.2);
}

/* Hero Section Button Styles */
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-light {
  background: rgba(255, 255, 255, 0.95);
  border: none;
}

.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
  border-width: 2px;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Features Section Styles */
.features-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.feature-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-item {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2196f3;
}

.feature-item h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature-item p {
  color: #666;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .btn-lg {
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
  }

  .hero-content {
    text-align: center;
    padding: 2rem 1rem;
  }

  .features-section {
    padding: 3rem 0;
  }

  .feature-item {
    padding: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .features-content {
    padding: 2rem 1rem !important;
    text-align: center;
  }

  .feature-image {
    margin-bottom: 2rem;
  }
}
