:root {
    --primary: #009cde;
    --primary-dark: #047caf;
    --primary-light: #8EABF0;
    --primary-very-light: #EEF2FF;
    --secondary: #003780;
    --secondary-light: #64D9CA;
    --secondary-dark: #008778;
    --neutral-100: #F8FAFC;
    --neutral-200: #E2E8F0;
    --neutral-300: #CBD5E1;
    --neutral-600: #475569;
    --neutral-800: #1E293B;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --grey-bg: #eaebe7;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--neutral-800);
    overflow-x: hidden;
    background-color: white;
}

a {
    text-decoration: none;
}
/* Top bar styling */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--neutral-100);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1050;
}

.c2p-back-to-top {
    display: none !important;
}

.fw-bold {
   
}

.language-selector {
    background: transparent;
    border: none;
    color: var(--neutral-100);
    padding: 0;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.language-selector:hover,
.language-selector:focus {
    color: var(--primary-light);
    background: transparent;
    box-shadow: none;
}


    /* Page Header */
    .page-header {
      background: var(--gradient-primary);
      color: white;
      padding: 4rem 0 3rem;
      position: relative;
      overflow: hidden;
  }

  .page-header::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
      opacity: 0.3;
  }

  .page-header .container {
      position: relative;
      z-index: 2;
  }

/* buttons */
.btn-link {
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.btn-link:hover {
    color: #fff;
    background-color: var(--primary);
}

.btn-browse {
    background: #F4a261;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.btn-browse:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: white;
}

.btn-browse-outline {
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

  .btn-message, .btn-quote {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .btn-message {
    background-color: var(--primary-dark);
    color: #fff;
    border: 1px solid var(--primary-light);
    flex: 1;
  }
  
  .btn-message:hover {
    background-color: var(--primary);
    color: white;
  }
  
   .btn-quote {
    color: var(--primary-dark);
    border: 1px solid var(--primary);
    flex: 1;
  }
  
  .btn-quote:hover {
    background-color: var(--primary);
    color: white;
  }
  
.just-4u{
 background-color: #F4A261;
 color: #000;
 font-weight: bold;
 border: 0px;
   
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
  
}

.just-4u:hover{
    background-color: #FAE0c0;
    color: #000;
}

/* New Navigation Styles */
.new-navbar-nav .nav-item .just-4u {
  margin-left: 10px;
  padding: 12px 20px;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
  vertical-align: middle;
}
.new-navbar {
  background-color: #009cde;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1000;
}

.new-navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.new-navbar-brand {
  position: relative;
  z-index: 2;
  
}

.new-navbar-menu {
  display: flex;
  align-items: center;
}

.new-navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.new-nav-item {
  margin: 0;
}

.new-nav-link {
  display: block;
  font-weight: 500;
  color: white;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.3s ease;
  padding: 25px 10px;
}

.new-nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.new-navbar-toggler {
  display: none;
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 2;
}

/* Enhanced nav link hover effect */
.new-nav-link {
  position: relative;
  transition: color 0.3s;
}
.new-nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: 10px;
}
.new-nav-link:hover {
  color: #fff;
}
.new-nav-link:hover::after {
  width: 100%;
}

/* Enhanced just-4u button hover effect */
.just-4u {
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s;
}
.just-4u:hover {
  background: linear-gradient(90deg, #F4A261 60%, #FFD699 100%);
  color: #000;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

/* Mobile Styles */
@media (max-width: 991.98px) {
  .new-navbar-toggler {
      display: block;
      margin-right: 15px;
  }
  
  .new-navbar-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #009cde;
      flex-direction: column;
      align-items: stretch;
      display: none;
      padding: 0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .new-navbar-menu.show {
      display: block;
  }
  
  .new-navbar-nav {
      flex-direction: column;
      width: 100%;
  }
  
  .new-nav-link {
      padding: 15px 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}


.find-pro{
    background-color: #F4A261;
    color: #000;
    font-weight: bold;
    border: 0px;
}

/* dropdown */
.dropdown-menu {
    background-color: var(--neutral-100);
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 1100 !important;
    /* Bootstrap default: hidden by default, shown when .show class is added */
    display: none;
}

/* Ensure dropdowns in top-bar are visible when shown */
.top-bar .dropdown {
    position: relative;
}

.top-bar .dropdown-menu.show,
.dropdown-menu.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure dropdown items are visible */
.top-bar .dropdown-item {
    display: block !important;
    padding: 0.5rem 1rem !important;
    background-color: #fff !important;
    color: #000 !important;
    border-bottom: 1px solid #ddd !important;
}

.top-bar .dropdown-item:hover {
    background-color: #f0f0f0 !important;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--neutral-800);
    transition: var(--transition);
}

.dropdown-item:hover, 
.dropdown-item:focus {
    background-color: var(--primary-very-light);
    color: var(--primary-dark);
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
    .col-md-8.text-end {
        text-align: center !important;
        margin-top: 0.5rem;
    }
    
    .dropdown.d-inline-block {
        display: inline-block;
        margin: 0 0.5rem;
    }
}

/* Split layout wrapper */
.split-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Background columns that are fluid */
.split-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
    border-bottom-right-radius: 3.5rem;
}

.split-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: white;
    z-index: -1;
}

/* Boxed content */
.split-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Navbar styling */
.navbar {
    display: none;
}

/* Logo and navigation styling */
.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
}

.footer .logo {
    height: 50px;
    width: auto;
}

.split-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.split-nav-links .nav-item {
    margin-left: 1.25rem;
}

.split-nav-links .nav-link {
    color: var(--primary-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    text-decoration: none;
}

.split-nav-links .nav-link:hover,
.split-nav-links .nav-link.active {
    color: var(--primary);
}

.split-nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.split-nav-links .nav-link:hover::after,
.split-nav-links .nav-link.active::after {
    width: 60%;
}

/* Mobile menu button */
.mobile-menu-toggle {
    display: none !important; /* Always hidden - using main navbar toggle instead */
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Media queries for responsive design */
@media (max-width: 991.98px) {
    /* Keep split layout but modify for mobile */
    .split-wrapper {
        display: block;
    }
    
    .split-wrapper::before {
        width: 100%; /* Full width background on mobile */
    }
    
    .split-wrapper::after {
        display: none; /* Remove right side background */
    }
    
    /* Mobile menu toggle is now hidden - using main navbar toggle */
    .mobile-menu-toggle {
        display: none !important;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .split-nav {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    
    .split-nav-links {
        display: none; /* Hide by default */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        padding: 1rem;
        z-index: 100;
        box-shadow: var(--shadow-md);
    }
    
    /* When menu is open */
    .split-nav-links.show {
        display: flex;
        flex-direction: column;
    }
    
    .split-nav-links .nav-item {
        margin: 0 0 0.75rem 0;
        width: 100%;
    }
    
    .split-nav-links .nav-link {
        color: white;
        display: block;
        padding: 0.5rem 0;
    }
    
    /* Make hero sections be in 2 rows */
    .hero-row {
        flex-direction: column;
    }
    
    .hero-text-col,
    .hero-image-col {
        width: 100%;
    }
    
    .hero-text {
        padding: 2rem 0 2rem 0;
    }
    
    .hero-image-container {
        margin-top: 1rem;
    }
}

/* Hero section */
.hero-row {
    display: flex;
    margin: 0 -15px;
}

.hero-text-col {
    width: 50%;
    padding: 0 15px;
}

.hero-image-col {
    width: 50%;
    padding: 0 15px;
}

.hero-text {
    padding: 4rem 2rem 4rem 0;
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* Hero image container */
.hero-image-container {
    padding: 2rem 0;
    height: 100%;
   
}

.hero-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Search box styling */
.search-box {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    max-width: 540px;
    transition: var(--transition);
}

.search-box:hover {
    transform: translateY(-2px);
}

.search-box .form-control {
    height: 60px;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border: none;
    padding-left: 1.5rem;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
}

.search-box .form-control:focus {
    background-color: white;
    box-shadow: var(--shadow-lg);
}

.search-box .btn-primary {
    height: 60px;
    background-color: #F4A261;
   
      color: #000;
    font-weight: 600;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 0 1.75rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.search-box .btn-primary:hover {
    background-color: #fae0c0;
    border-color: var(--secondary-dark);
    box-shadow: var(--shadow-lg);
}

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

.fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Media queries for responsive design */
@media (max-width: 991.98px) {
    /* Show original navbar on mobile */
    .navbar {
        display: block;
        background-color: var(--primary);
        padding: 1rem 0;
        box-shadow: var(--shadow-sm);
    }
    
    .navbar-dark .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.85);
        font-weight: 500;
        padding: 0.5rem 1.25rem;
        transition: var(--transition);
        position: relative;
    }
    
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: #ffffff;
    }
    
    .navbar-dark .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--secondary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .navbar-dark .navbar-nav .nav-link:hover::after,
    .navbar-dark .navbar-nav .nav-link.active::after {
        width: 60%;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    
    /* Mobile hero styling */
    .hero-section {
        background-color: var(--primary);
        padding: 3rem 0;
    }
    
    .hero-text {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-text p {
        font-size: 1.125rem;
    }
    
    .search-box .form-control,
    .search-box .btn-primary {
        height: 50px;
    }
    
    .hero-image-container {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-row {
        flex-direction: column;
    }
    
    .hero-text-col, 
    .hero-image-col {
        width: 100%;
    }
    
    .hero-text {
        padding: 3rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .split-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .split-nav-links {
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .split-nav-links .nav-item {
        margin-left: 0;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
    }
}

/* Footer styling */

.footer {
    background-color: var(--neutral-100);
    color: var(--neutral-600);
}

.footer p{
    font-size: .8rem;
}

.footer li{
    font-size: .9rem;
}

.footer h5 {
    color: var(--neutral-800);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: .95rem;
}

.footer a {
    color: var(--neutral-600);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--primary-very-light);
    color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

.footer .social-icons a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.footer .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.footer img{
    width: 15rem;
}

.copyright {
    background-color: var(--neutral-100);
    border-color: var(--neutral-200) !important;
}

.copyright a {
    color: var(--neutral-600);
    text-decoration: none;
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--primary);
}

/* Original Bootstrap navbar - kept for mobile fallback */
.navbar-brand .logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar-scrolled .navbar-brand .logo {
    height: 45px;
}

.navbar-scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}



/* services */
 .services-section {
   
    padding: 80px 0;
  }
  
  .services-section .subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  

  
  .services-section .description {
    color: var(--neutral-600);
    font-size: 16px;
    line-height: 1.7;
  }
  
  .services-section .feature-item .feature-icon {
    color: var(--secondary);
    font-size: 24px;
    margin-top: 2px;
  }
  
  .services-section .feature-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 5px;
  }
  
  .services-section .feature-item p {
    color: var(--neutral-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  .services-section .btn-primary {

    border: none;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
  }
  
  .services-section .btn-primary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }
  
  .services-slideshow {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .services-slideshow .carousel-item img {
    height: 450px;
    object-fit: cover;
  }
  
  .services-slideshow .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-sm);
    padding: 15px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    transform: none;
  }
  
  /* Mobile adjustments for carousel caption */
  @media (max-width: 767.98px) {
    .services-slideshow .carousel-caption {
      bottom: 10px;
      padding: 10px 15px;
      left: 10px;
      right: 10px;
    }
    
    .services-slideshow .carousel-caption h5 {
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }
    
    .services-slideshow .carousel-caption p {
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
    }
    
    .services-slideshow .carousel-caption .btn {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      min-height: 44px;
    }
  }
  
  .carousel-indicators [data-bs-target] {
    background-color: var(--secondary);
  }
  
  /* Ensures equal height of columns */
  @media (min-width: 992px) {
    .services-content, .services-slideshow {
      height: 100%;
    }
    
    .services-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  }
  
  /*end of intro services */
  
 /* btn*/

  /* browse by services */
   .services-browse-section {
    background-color: var(--neutral-100);
    padding: 80px 0;
  }
  
  .section-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 15px;
  }
  
  .section-description {
    color: var(--neutral-600);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
  }
  
  .service-card {
    background-color: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--neutral-200);
  }
  
  .service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
  }
  
  .service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    height: 300px;
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .service-card:hover .service-image img {
    transform: scale(1.05);
  }
  
  .service-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .service-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0;
  }
  
  .service-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-very-light);
    color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
  }
  
.service-link a, 
.service-link a:visited, 
.service-link a:hover, 
.service-link a:active {
    text-decoration: none !important;
}

  .service-link:hover {
    background-color: var(--primary);
    color: white;
  }
  
  .service-link i {
    font-size: 20px;
  }
  

  
  @media (max-width: 767px) {
    .section-title {
      font-size: 28px;
    }
    
    .service-image {
      height: 180px;
    }
  }
  /* end of browse by services */
  
  /* browse by industry */
   .industry-browse-section {
    background-color: var(--neutral-100);
    padding: 80px 0;
  }
  
  .section-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 15px;
  }
  
  .section-description {
    color: var(--neutral-600);
    font-size: 16px;
    max-width: 700px;
    margin-bottom: 1.5rem;
  }
  
  .industry-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .industry-card:hover {
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
  }
  
  .industry-card.active {
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
  }
  
  .industry-icon {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
  }
  
  /* Placeholder for SVG icons - remove this when adding your SVGs */

.industry-icons{
     width: 40px;
   
}
  
  .industry-info {
    flex: 1;
  }
  
  .industry-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0;
  }
  
  .industry-arrow {
    margin-left: 10px;
    color: var(--primary);
    transition: var(--transition);
  }
  
  .industry-card:hover .industry-arrow {
    transform: translateX(5px);
  }
  

  .btn-browse:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    color: white;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767px) {
    .industry-card {
      margin-bottom: 15px;
    }
    
  }
  
  /* When you add your SVGs, use these classes to style them appropriately */
  .industry-icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
  }
  
  /* For highlight/active cards */
  .industry-card.active .industry-arrow {
    background-color: var(--primary-dark);
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  /* end of browse by industry */
  
  
  /* browse by location */
  .location-browse-section {
    background-color: var(--neutral-100);
    padding: 60px 0;
  }
  
 
  .location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
  }
  
  .location-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
  }
  
  .location-btn:hover {
    background-color: var(--primary-very-light);
    border-color: var(--primary);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
  }
  
  .location-btn.active {
    background-color: var(--primary-very-light);
    border-color: var(--primary);
    color: var(--primary-dark);
  }

  /* Featured Providers Section (Homepage) */
  .featured-providers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
  }

  .featured-provider-card {
    border: none;
    border-radius: var(--radius-lg, 12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
  }

  .featured-provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }

  .featured-provider-card .provider-logo img {
    transition: transform 0.3s ease;
  }

  .featured-provider-card:hover .provider-logo img {
    transform: scale(1.1);
  }

  .featured-provider-card .provider-name {
    font-weight: 600;
    color: var(--neutral-900, #1a1a2e);
  }

  .featured-provider-card .provider-location,
  .featured-provider-card .provider-experience {
    font-size: 0.875rem;
  }

  .featured-provider-card .badge.bg-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #3d3d5c 100%) !important;
  }

  .featured-provider-card .badge.bg-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffca2c 100%) !important;
    color: #1a1a2e;
  }

  @media (max-width: 767px) {
    .featured-providers-section {
      padding: 50px 0;
    }

    .featured-provider-card .provider-logo img {
      width: 70px !important;
      height: 70px !important;
    }
  }
  /* End Featured Providers Section */

  /* Responsive adjustments */
  @media (max-width: 767px) {
    .section-title {
      font-size: 28px;
    }
    
    .location-container {
      justify-content: center;
    }
  }
  
  @media (max-width: 576px) {
    .location-btn {
      padding: 8px 16px;
      font-size: 14px;
      margin-bottom: 5px;
    }
  }
  
  /* end browse by location*/
  
  
  /* popular services */
   .popular-services-section {
    background-color: var(--neutral-100);
    padding: 80px 0;
  }
  
  .service-details {
    padding: 20px;
  }
  
  .service-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  .service-rating {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #FFB800;
    font-size: 14px;
  }
  
  .rating-count {
    color: var(--neutral-600);
    margin-left: 5px;
  }
  
  .service-description {
    color: var(--neutral-600);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .service-price {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .service-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .service-actions i {
    margin-right: 5px;
    font-size: 14px;
  }
  
  .service-more {
    display: block;
    text-align: right;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
  }
  
  .service-more i {
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 3px;
  }
  
  .service-more:hover {
    color: var(--primary-dark);
  }
  
  .service-more:hover i {
    transform: translateX(3px);
  }
  
  .btn-explore {
     background: #F4a261;
    color: #000;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    margin-top: 20px;
  }
  
  .btn-explore:hover {
    box-shadow: var(--primary);
    transform: translateY(-2px);
    color: white;
  }
  
  @media (max-width: 991px) {
    .service-card {
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 767px) {
 
    .service-actions {
      flex-direction: column;
    }
  }
  
 
   /* Search Header */
   .search-header {
    background: white;
    border-bottom: 1px solid var(--neutral-200);
    padding: 1.5rem 0;
}

.search-input {
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 156, 222, 0.25);
}

  /* Location Cards */
  .location-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.location-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* Service Provider Cards */
.provider-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Industry Cards */
.industry-card-hover {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef !important;
}

.industry-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Front Page Industry Cards */
.industry-browse-section {
    background-color: #f8f9fa;
}

.industry-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-decoration: none;
    color: inherit;
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.industry-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-info {
    flex-grow: 1;
}

.industry-info h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.industry-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009cde;
}

.provider-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.provider-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.rating-stars {
    color: #fbbf24;
}

.badge-custom {
    background: var(--primary-very-light);
    color: var(--primary);
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
}

/* Explore Services Page Specific Badge Styling */
.explore-services-page .badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 14px;
    cursor: help;
    transition: transform 0.2s ease;
    padding: 0;
    margin: 0 2px;
}

.explore-services-page .badge-icon:hover {
    transform: scale(1.1);
}

.explore-services-page .badge-icon i,
.explore-services-page .badge-icon span {
    font-size: 14px !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure badge colors are applied for explore services page */
.explore-services-page .badge-icon[style*="background-color"] {
    background-color: var(--badge-color) !important;
}

/* Override the general badge-icon background for explore services page */
.explore-services-page .badge-icon {
    background: var(--badge-color) !important;
    background-color: var(--badge-color) !important;
}

/* Filters */
.filter-sidebar {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.filter-group {
    border-bottom: 1px solid var(--neutral-200);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0 1.5rem;
    }
    
    .search-section {
        margin-top: -1rem;
        padding: 1.5rem;
    }
    
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }
}
  /*profile page */

  /* Main Profile Styles */
  .pro-profile-section {
    background-color: var(--neutral-100);
    padding: 40px 0;
  }
  
  /* Enhanced Breadcrumb Navigation */
.breadcrumb {
  background: transparent;
  padding: 0.75rem 0;
  margin-bottom: 0;
  font-size: 0.875rem;
  border-radius: 0;
}

.breadcrumb-item {
  color: var(--bs-secondary-color);
  font-weight: 500;
}

.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--bs-secondary-color);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--bs-secondary-color);
  font-weight: normal;
  padding: 0 0.5rem;
}

/* Breadcrumb container styling */
.bg-light {
  background-color: #f8f9fa !important;
  border-bottom: 1px solid #e9ecef;
}

/* Custom breadcrumb for specific pages */
.breadcrumb-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.breadcrumb-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-link:hover {
  color: var(--primary-dark);
}

.breadcrumb-path {
  color: var(--neutral-600);
  font-size: 14px;
}
  
  /* Profile Header 
  .profile-header {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
  }*/
  
  .profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
  }
  
  .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .profile-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 8px;
  }
  
  .profile-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .rating-text {
    font-weight: 600;
    color: var(--secondary-dark);
  }
  
  .rating-value {
    font-weight: 600;
    color: var(--neutral-800);
  }
  
  .rating-stars {
    color: #FFB800;
  }
  
  .review-count {
    color: var(--neutral-600);
    font-size: 14px;
  }
  
  
  .verified-badge {
       background-color: #28a745;
            color: white;
         
            padding: 0.25rem 0.5rem;
            border-radius: 12px;
  }
  
  .pro-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-very-light);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    gap: 5px;
  }
  
  .pro-badge i {
    color: var(--primary);
  }
  
  .profile-actions {
    display: flex;
    gap: 10px;
  }
  
  .btn-share {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .btn-share:hover {
    background-color: var(--primary);
    border-color: var(--primary);
  }
  
  /* Profile Navigation */
  .profile-nav {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }
  
  .nav-tabs {
    border-bottom: none;
  }
  
  .nav-tabs .nav-link {
    border: none;
    color: var(--neutral-600);
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 0;
    transition: var(--transition);
  }
  
  .nav-tabs .nav-link:hover {
    color: var(--primary);
    background-color: var(--primary-very-light);
  }
  
  .nav-tabs .nav-link.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    background-color: transparent;
  }
  
  /* Profile Content */
  .profile-section {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
  }
  

  
  .introduction-text {
    color: var(--neutral-800);
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .rate-info {
    color: var(--neutral-600);
    padding: 12px;
    background-color: var(--neutral-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .rate-info i {
    color: #FFB800;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .read-more {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    margin-left: 5px;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }
  
  /* Overview List */
  .overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .overview-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--neutral-800);
  }
  
  .pro-icon {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
  }
  
  /* Pro Badges */
  .pro-badges {
    display: flex;
    gap: 15px;
    margin-top: 15px;
  }
  
  .badge-year {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  
  .badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
  }
  
  /* Work Photos */
  .work-photo {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
  }
  
  .work-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Reviews */
  .review-card {
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  
  .reviewer-name {
    font-weight: 600;
    color: var(--neutral-800);
  }
  
  .review-date {
    font-size: 14px;
    color: var(--neutral-600);
  }
  
  .review-rating {
    color: #FFB800;
  }
  
  .review-content {
    color: var(--neutral-800);
    line-height: 1.5;
  }
  
  /* Sidebar */
  .profile-sidebar {
    position: sticky;
    top: 20px;
  }
  
  .sidebar-card {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-md);
  }
  
  .sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 20px;
  }
  
  /* Service Request Form */
  .service-request-form label {
    font-weight: 500;
    color: var(--neutral-800);
    margin-bottom: 6px;
  }
  
  .form-control, .form-select {
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-300);
    color: var(--neutral-800);
  }
  
  .form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(102, 136, 204, 0.25);
  }
  
  .input-group-text {
    background-color: var(--neutral-200);
    border: 1px solid var(--neutral-300);
    color: var(--neutral-600);
  }
  

  
  /* Online Status */
  .online-status {
    color: var(--neutral-800);
    font-size: 14px;
  }
  
  .online-indicator {
    color: var(--secondary);
    font-size: 10px;
  }
  
  /* FAQs Accordion */
  .accordion-button {
    font-weight: 500;
    color: var(--neutral-800);
    padding: 16px;
    background-color: white;
    box-shadow: none;
  }
  
  .accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: var(--primary-very-light);
    box-shadow: none;
  }
  
  .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-light);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .profile-sidebar {
      margin-top: 30px;
      position: static;
    }
  }
  
  @media (max-width: 767px) {
    .profile-image {
      width: 100px;
      height: 100px;
      margin: 0 auto 15px;
    }
    
    .profile-name {
      font-size: 24px;
      text-align: center;
    }
    
    .profile-rating, .pro-badge {
      justify-content: center;
    }
    
    .profile-actions {
      justify-content: center;
    }
    
    .nav-tabs .nav-link {
      padding: 10px 15px;
      font-size: 14px;
    }
  }
  /*end of profile page */
  
  /* icon */
 
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}




/* profile page */

/* Main Variables */


/* Profile Header */
.profile-header {
  background: #f6f6f6;
  color: var(--primary);
  padding: 40px 0;
  margin-bottom: 30px;
}

.profile-img-container {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 4px solid var(--primary);
/*  box-shadow: 0 5px 15px rgba(0,0,0,0.2);*/
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cards and Boxes */
.card {
  box-shadow: var(--box-shadow);
  border: none;
  margin-bottom: 20px;
  overflow: hidden;
}

.card-header {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 15px 20px;
}

.card-header-side {
    background: var(--grey-bg);
    color: black;
    font-weight: 600;
    padding: 15px 20px;
}

.card-body {
  padding: 20px;
}

/* Badges and Indicators */
.badge-verified {
  display: inline-flex;
  align-items: center;
  background-color: #e6f7f2;
  color: var(--secondary-color);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-left: 10px;
}

.badge-verified i {
  margin-right: 5px;
  font-size: 0.8rem;
}

.badge-industry {
  background-color: var(--accent);
  color: var(--text-dark);
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 5px;
}

/* Profile Badge Styling - Ensure consistent sizing */
.profile-badge {
  font-size: 0.9em !important;
  font-weight: 700 !important;
  padding: 0.2em 0.4em !important;
  border-radius: 0.375rem !important;
  display: inline-block !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;
 /* vertical-align: baseline !important; */
}

.profile-badge i,
.profile-badge span {
  font-size: 1.6em !important;
  vertical-align: middle !important;
}

.star-rating {
  color: var(--accent);
}

/* Services and Review Elements */
.service-badge {
  background-color: #e9ecef;
  color: var(--text-dark);
  border-radius: 20px;
  padding: 5px 15px;
  margin: 5px;
  display: inline-block;
  font-size: 0.85rem;
}

.review-card {
  transition: transform 0.3s ease;
  border: 1px solid #eaeaea;
}

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

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Photo Gallery */
.portfolio-img {
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.portfolio-img:hover {
  transform: scale(1.03);
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 15px;
}

.modal-image {
  max-height: 80vh;
  object-fit: contain;
}

/* Business Hours Table */
.hours-table {
  width: 100%;
}

.hours-table th, .hours-table td {
  padding: 8px;
  border-bottom: 1px solid #eee;
}

.hours-table th {
  width: 130px;
  font-weight: 500;
}

/* Social Media */
.social-icon {
  font-size: 1.5rem;
  margin: 0 10px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: var(--secondary);
}

/* Service Area Map */
.service-area-map {
  height: 300px;
  border-radius: 10px;
  width: 100%;
}

/* CTA Contact Bar */
.cta-contact {
  position: sticky;
  bottom: 20px;
  z-index: 100;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 15px;
}

/* Tab Navigation */
.nav-pills .nav-link {
  color: var(--text-dark);
  border-radius: 30px;
  margin: 0 5px;
  padding: 10px 20px;
  transition: var(--transition);
}

.nav-pills .nav-link.active {
  background-color: var(--primary);
  color: white;
}

.nav-pills .nav-link:hover:not(.active) {
  background-color: rgba(58, 90, 125, 0.1);
}

/* Testimonial Carousel */
.testimonial-item {
  padding: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .nav-pills .nav-link {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .profile-header {
    text-align: center;
    padding: 30px 0;
  }
  
  .profile-img-container {
    margin: 0 auto 20px;
  }
  
  .cta-contact {
    bottom: 0;
    border-radius: 10px 10px 0 0;
    max-width: 100%;
  }
  
  .nav-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 5px;
  }
  
  .image-gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 576px) {
  .profile-header h1 {
    font-size: 1.5rem;
  }
  
  .verified-badge {
    display: block;
    margin-left: 0;
    margin-top: 5px;
    
  }
  
  .card-header {
    padding: 10px 15px;
  }
  
  .review-card .d-flex {
    flex-direction: column;
  }
  
  .review-card .ms-auto {
    margin-left: 0 !important;
    margin-top: 10px;
    text-align: left !important;
  }
  
  .portfolio-item {
    margin-bottom: 15px;
  }
  
  .testimonial-item {
    padding: 15px 10px;
  }
  
  .cta-contact {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-contact div:last-child {
    margin-top: 10px;
  }
  
  .social-icon {
    font-size: 1.2rem;
    margin: 0 8px;
  }
  
  .card-body {
    padding: 15px;
  }
}

/* Print Styles */
@media print {
  .navbar, 
  .cta-contact, 
  .nav-pills, 
  form, 
  .btn {
    display: none !important;
  }
  
  .tab-pane {
    display: block !important;
    opacity: 1 !important;
  }
  
  .card {
    break-inside: avoid;
    page-break-inside: avoid;
    border: 1px solid #ddd;
    box-shadow: none;
  }
 /* 
  .profile-header {
    background: #f8f9fa !important;
    color: #333 !important;
    padding: 20px 0;
  }
  */

  .star-rating, 
  .badge-industry, 
  .verified-badge {
    border: 1px solid #ddd;
  }
}



  /* Additional CSS for Login Page Only */
        .login-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 20px 0;
            background: var(--gradient-primary);
        }

        .login-card {
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
           
            width: 100%;
        }

        .login-left {
            background: var(--gradient-primary);
            padding: 3rem;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            min-height: 100%;
        }

        .login-left h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .login-left p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .login-illustration {
            max-width: 300px;
            opacity: 0.8;
        }

        .login-right {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .login-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .login-header h3 {
            color: var(--neutral-800);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .login-header p {
            color: var(--neutral-600);
            margin-bottom: 0;
        }

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

        .form-floating .form-control {
            height: 58px;
            border: 2px solid var(--neutral-200);
            border-radius: var(--radius-md);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-floating .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(0, 156, 222, 0.25);
        }

        .form-floating label {
            color: var(--neutral-600);
            font-weight: 500;
        }

        .btn-login {
            background: var(--gradient-primary);
            border: none;
            color: white;
            font-weight: 600;
            padding: 15px;
            border-radius: var(--radius-md);
            font-size: 1.1rem;
            transition: var(--transition);
            width: 100%;
            margin-bottom: 1.5rem;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: white;
        }

        .btn-login:active {
            transform: translateY(0);
        }

        .divider {
            position: relative;
            text-align: center;
            margin: 2rem 0;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--neutral-200);
        }

        .divider span {
            background: white;
            padding: 0 1rem;
            color: var(--neutral-600);
            font-size: 0.9rem;
        }

        .btn-google {
            background: white;
            border: 2px solid var(--neutral-200);
            color: var(--neutral-800);
            font-weight: 500;
            padding: 12px;
            border-radius: var(--radius-md);
            width: 100%;
            transition: var(--transition);
            margin-bottom: 1rem;
        }

        .btn-google:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-1px);
        }

        .btn-google i {
            margin-right: 0.5rem;
        }

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

        .form-check-input {
            border: 2px solid var(--neutral-300);
        }

        .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .form-check-label {
            color: var(--neutral-600);
            font-size: 0.9rem;
        }

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

        .forgot-password:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .signup-link {
            text-align: center;
            margin-top: 2rem;
            color: var(--neutral-600);
        }

        .signup-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .signup-link a:hover {
            text-decoration: underline;
        }

        .back-home {
            position: absolute;
            top: 20px;
            left: 20px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .back-home:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Responsive Design */
        @media (max-width: 991.98px) {
            .login-left {
                display: none;
            }
            
            .login-right {
                padding: 2rem;
            }
        }

        @media (max-width: 767.98px) {
            .login-container {
                padding: 10px;
            }
            
            .login-right {
                padding: 1.5rem;
            }
            
            .login-left h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 575.98px) {
            .login-right {
                padding: 1rem;
            }
        }
        
/* Price */
.pricing-toggle .form-check-input {
    width: 3rem;
    height: 1.5rem;
    border-radius: 3rem;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-card.premium {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-600);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--neutral-600);
}

.plan-description {
    color: var(--neutral-600);
    font-weight: 500;
    margin-bottom: 2rem;
}

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

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--neutral-200);
    display: flex;
    align-items: flex-start;
}

.feature-list li:last-child {
    border-bottom: none;
}

.addon-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--neutral-200);
    transition: var(--transition);
}

.addon-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.addon-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-very-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: var(--primary);
}

.addon-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 1rem;
}

.addon-description {
    color: var(--neutral-600);
    margin-bottom: 1.5rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.addon-price .period {
    font-size: 1rem;
    color: var(--neutral-600);
    font-weight: 500;
}

.enterprise-card .enterprise-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
}

.price-display {
    padding: 1rem;
    background: var(--primary-very-light);
    border-radius: var(--radius-md);
    color: var(--primary);
}

@media (max-width: 991px) {
    .pricing-card.popular {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .plan-price .amount {
        font-size: 2.5rem;
    }
}

  /* Service Categories */
  .service-category-es {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.service-category-es:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    color: inherit;
    text-decoration: none;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-very-light);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

  /* Search Section */
  .search-section {
    background: white;
    margin-top: -2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.search-input {
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 156, 222, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
}

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

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

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

.star-rating i.fa-star {
  color: #FFD700 !important; /* Gold */
}
.star-rating i.fa-star.text-muted {
  color: #e0e0e0 !important; /* Light gray for empty stars */
}

/* BuddyPress Messages Page Custom Hides */
body.bp-user.messages .page-header {
  display: none !important;
}
body.bp-user.messages .section-title,
body.bp-user.messages .subtitle,
body.bp-user.messages .description,
body.bp-user.messages .row.text-center.mb-5 {
  display: none !important;
}
body.bp-user.messages #item-header,
body.bp-user.messages .users-header,
body.bp-user.messages #item-header-avatar,
body.bp-user.messages #item-header-content {
  display: none !important;
}
body.bp-user.messages #profile-personal-li {
  display: none !important;
}
body.bp-user.messages section.bg-light[aria-label="breadcrumb"],
body.bp-user.messages nav[aria-label="breadcrumb"],
body.bp-user.messages .breadcrumb {
    display: none !important;
}

/* Enhanced rating display for search results */
.rating-stars {
    color: #FFD700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.provider-card .rating-stars {
    font-size: 1rem;
    margin-right: 0.5rem;
}

.provider-card .text-muted {
    font-size: 0.8rem;
}

/* Rating display improvements */
.rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating-value {
    font-weight: 600;
    color: #333;
}

.review-count {
    color: #666;
    font-size: 0.8rem;
}

/* Star rating animation */
.rating-stars {
    transition: color 0.2s ease;
}

.provider-card:hover .rating-stars {
    color: #FFA500;
}

/* Services Page Styles */
.service-card-hover {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #e9ecef;
    cursor: pointer;
}

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

.provider-card {
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s ease-in-out;
}

.provider-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.provider-details a {
    text-decoration: none;
    color: inherit;
}

.provider-details a:hover {
    color: #009cde;
}

.service-icon {
    font-size: 3rem;
    color: #009cde;
    margin-bottom: 1rem;
}

.service-count {
    font-size: 0.9rem;
    color: #6c757d;
}

.service-count i {
    margin-right: 0.5rem;
}

/* Industry section headers */
.industry-header {
    color: #009cde;
    border-bottom: 2px solid #009cde;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

/* Provider contact info */
.provider-contact {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.provider-contact i {
    width: 16px;
    margin-right: 0.5rem;
    color: #009cde;
}

/* Back button styling */
.back-button {
    transition: all 0.2s ease-in-out;
}

.back-button:hover {
    transform: translateX(-3px);
}

/* Service description */
.service-description {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Provider Profile Header Alignment */
.provider-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.provider-name-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.provider-name {
    margin: 0;
    display: inline-block;
}

.provider-badges {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 12px;
    white-space: nowrap;
    margin-bottom: 1rem;
    gap: 4px;
}

.profile-badge .material-symbols-outlined,
.profile-badge .fas {
    font-size: 14px;
    margin: 0;
}

/* Ensure the floating message button doesn't interfere */
.c2p-floating-message-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    background: #007bff;
    color: #fff !important;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    font-size: 2rem;
    transition: background 0.2s;
    text-decoration: none;
}

.c2p-floating-message-btn:hover {
    background: #0056b3;
    color: #fff;
    text-decoration: none;
}

/* ===== EXPLORE SERVICES PAGE STYLES ===== */

/* Page header styling */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
    margin-bottom: 30px;
}

/* Search section styling */
.search-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 156, 222, 0.25);
}

/* Filter sidebar styling */
.filter-sidebar {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-group {
    margin-bottom: 25px;
}

/* Service category styling */
.service-category {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    color: inherit;
    text-decoration: none;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #6c757d;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

/* Location card styling */
.location-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #e9ecef;
    color: #333;
}

/* Provider card styling */
.provider-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.provider-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e9ecef;
}

/* Badge styling */
.badge-custom {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Enhanced star rating styles */
.rating-stars {
    color: #FFB800;
    font-size: 1.1em;
    letter-spacing: 1px;
}

.rating-stars .empty-star {
    color: #ddd;
}

/* Provider card hover effects */
.provider-card {
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Rating display improvements */
.rating-stars + .small {
    font-weight: 500;
}

/* Grid/List View Styles */
.list-view .col-lg-6 {
    width: 100%;
}

.list-view .provider-card {
    margin-bottom: 20px;
}

.list-view .provider-card .d-flex {
    flex-direction: row;
    align-items: flex-start;
}

.list-view .provider-card .provider-avatar {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    flex-shrink: 0;
}

.list-view .provider-card .flex-grow-1 {
    flex: 1;
}

/* View mode buttons */
.view-mode-buttons .btn {
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    position: relative;
}

.view-mode-buttons .btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.view-mode-buttons .btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 156, 222, 0.3);
    transform: translateY(-1px);
}

.view-mode-buttons .btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 1px;
}

/* Debug styles - make active button very obvious */
.view-mode-buttons .btn.active {
    background-color: #ff0000 !important;
    border-color: #ff0000 !important;
    color: white !important;
    font-weight: bold !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rating-stars {
        font-size: 1em;
    }
    
    .list-view .provider-card .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .list-view .provider-card .provider-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

