/* end of index.php page */

/* Hover Shadow */
.hover-shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .carousel-item {
    height: auto;
    min-height: 500px;
  }

  .carousel-caption {
    bottom: 20%;
  }
}

@media (max-width: 767.98px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption .lead {
    font-size: 1rem;
  }
}
/* testmonials end */

/* teams page styles */ /* Team Section Styles */
.team-member-card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-img-container {
  overflow: hidden;
  border-radius: 8px;
}

.team-img-container img {
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-img-container img {
  transform: scale(1.05);
}

.social-links {
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.3s ease;
}

.team-member-card:hover .social-links {
  opacity: 1;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.bg-primary {
  background-color: #0077b5;
} /* LinkedIn */
.bg-twitter {
  background-color: #1da1f2;
}
.bg-facebook {
  background-color: #3b5998;
}
.bg-google {
  background-color: #db4437;
}

.team-details h3 {
  font-weight: 600;
  color: #333;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.6;
}

.read-more-btn {
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: var(--bs-primary);
  color: white;
}

/* Value Cards */
.value-card {
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background-color: var(--bs-primary) !important;
  color: white !important;
  transform: rotate(5deg) scale(1.1);
}

/* Services Page Styling */
.services-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url("images/service-bg-pattern.png");
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}
.services-hero .container {
  position: relative;
  z-index: 1;
}

/* Navigation Sidebar */
.sticky-top {
  transition: all 0.3s ease;
}

.list-group {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.list-group-item {
  border: none;
  padding: 1rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.list-group-item:hover {
  background-color: rgba(13, 110, 253, 0.1);
  border-left-color: var(--bs-primary);
}

.list-group-item.active {
  background-color: var(--bs-primary);
  border-left-color: var(--bs-primary-dark);
}

/* Service Detail Cards */
.service-detail-card {
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--bs-primary);
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-card:hover::before {
  width: 8px;
  background-color: var(--bs-primary-dark);
}

.service-icon-lg {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-detail-card:hover .service-icon-lg {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--bs-primary) !important;
  color: white !important;
}

/* Benefit Cards */
.bg-light.rounded {
  transition: all 0.3s ease;
  border-left: 3px solid var(--bs-primary);
}

.bg-light.rounded:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .sticky-top {
    position: relative !important;
    top: auto !important;
  }

  .list-group {
    margin-bottom: 2rem;
  }
}
/* Animation Enhancements */
.animate__animated {
  animation-duration: 0.8s;
}

.service-detail-card {
  opacity: 1;
  animation-fill-mode: both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

/* Custom Button Styling */
.btn-primary {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn-primary:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Check List Items */
.list-unstyled li {
  position: relative;
  padding-left: 2rem;
}

.list-unstyled li i {
  position: absolute;
  left: 0;
  top: 0.3rem;
}

/* Section Headers */
.services-list h2 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.services-list h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--bs-primary);
  border-radius: 2px;
}

/* Custom Contact Box */
.bg-primary.rounded.shadow-sm {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-primary.rounded.shadow-sm:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* services page */

/* tax, audit and accounting */
/* General Styles */
:root {
  --success: #28a745;
  --success-light: #d4edda;
  --success-dark: #218838;
  --dark-green: #1e5631;
  --light-green: #f0fff4;
  --soft-green: #f8fff9;
}

/* Service Page Specific */
.service-hero {
  background-color: var(--light-green);
  background-image: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.05) 0%,
    rgba(240, 255, 244, 1) 100%
  );
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--success), var(--success-dark));
  margin: 1rem auto;
}

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-success-light {
  background-color: var(--success-light);
}

.process-step {
  display: flex;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.software-list {
  list-style: none;
  padding-left: 0;
}

.software-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

/* Animations */
.animate__animated {
  animation-duration: 0.8s;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .display-4 {
    font-size: 2.5rem;
  }

  .service-card,
  .feature-card {
    text-align: center;
  }

  .icon-box,
  .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .process-step {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
}
/* tax, audit and accounting */
