/*** Logo Text ***/
.logo-text {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: var(--bs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(3, 206, 164, 0.3);
}

.logo-icon::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.logo-icon i {
  transform: translateY(-1px);
}

/* Mobile responsive logo */
@media (max-width: 576px) {
  .logo-text {
    font-size: 1.4rem;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/*** Custom Color Scheme for Handyman & Painter ***/
:root {
  --saffron: #eac435ff;
  --dusk-blue: #345995ff;
  --mint-leaf: #03cea4ff;
  --tomato: #fb4d3dff;
  --rosewood: #ca1551ff;
  --bs-primary: #03cea4ff; /* Mint-leaf for primary actions */
  --bs-secondary: #345995ff; /* Dusk-blue for secondary */
  --bs-success: #03cea4ff; /* Mint-leaf for success */
  --bs-info: #eac435ff; /* Saffron for info */
  --bs-warning: #fb4d3dff; /* Tomato for warning */
  --bs-danger: #ca1551ff; /* Rosewood for danger */
  --bs-light: #f7f7f7; /* Light background */
  --bs-dark: #345995ff; /* Dusk-blue for dark text */
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.text-primary {
  color: var(--bs-primary) !important;
}

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

.btn-primary:hover {
  background-color: #028574;
  border-color: #028574;
}

.btn-light:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

/*** Modern Design Elements ***/
/* Enhanced service items */
.service-item {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  border: none;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/*** Modern Service Cards ***/
.service-card-modern {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card-modern.featured {
  border: 2px solid #03cea4ff;
  position: relative;
}

.service-card-modern.featured:hover {
  box-shadow: 0 25px 60px rgba(3, 206, 164, 0.25);
}

.featured-label {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(3, 206, 164, 0.3);
}

.service-card-badge {
  display: none;
  position: absolute;
  top: -15px;
  left: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  z-index: 5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.badge-1 {
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
}

.badge-2 {
  background: linear-gradient(135deg, #345995ff 0%, #03cea4ff 100%);
}

.badge-3 {
  background: linear-gradient(135deg, #eac435ff 0%, #fb4d3dff 100%);
}

.badge-4 {
  background: linear-gradient(135deg, #fb4d3dff 0%, #ca1551ff 100%);
}

.badge-5 {
  background: linear-gradient(135deg, #ca1551ff 0%, #345995ff 100%);
}

.badge-6 {
  background: linear-gradient(135deg, #03cea4ff 0%, #345995ff 100%);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-modern:hover .service-img-wrapper img {
  transform: scale(1.1) rotate(2deg);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(3, 206, 164, 0.8) 0%, rgba(234, 196, 53, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.service-card-modern:hover .service-overlay {
  opacity: 1;
}

.service-overlay i {
  font-size: 3.5rem;
  color: white;
  animation: float 3s ease-in-out infinite;
}

.service-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: white;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #345995ff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-service {
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 5px 15px rgba(3, 206, 164, 0.3);
}

.btn-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(3, 206, 164, 0.4);
  color: white;
}

.btn-service i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.btn-service:hover i {
  transform: rotate(15deg) scale(1.1);
}

@media (max-width: 768px) {
  .service-card-modern {
    border-radius: 12px;
  }

  .service-img-wrapper {
    height: 200px;
  }

  .service-content {
    padding: 20px;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .featured-label {
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .service-card-badge {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    left: 15px;
    top: -10px;
  }
}

.service-item .service-img {
  position: relative;
  overflow: hidden;
}

.service-item .service-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover .service-img::before {
  opacity: 1;
}

.service-item .service-detail {
  padding: 25px;
  background: var(--bs-primary);
}

.service-item .btn {
  border-radius: 0 0 12px 12px;
  width: 100%;
  padding: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-item .btn:hover {
  background: var(--bs-secondary);
  color: white;
}

/* Card with subtle shadow */
.modern-card {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: none;
}

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

/* About Image Styling */
.about-image-container {
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--bs-primary);
  overflow: hidden;
}

.about-image-container img {
  object-fit: cover;
  height: 100%;
  min-height: 400px;
  transition: transform 0.5s ease;
}

.about-image-container:hover img {
  transform: scale(1.03);
}

/*** Process Card Styles ***/
.process-card {
  background: white;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
  transition: left 0.4s ease;
  z-index: 0;
  border-radius: 16px;
}

.process-card:hover::before,
.process-card.active::before {
  left: 0;
}

.process-card:hover,
.process-card.active {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 160, 176, 0.2);
  border-color: var(--bs-primary);
}

.process-card.active {
  transform: scale(1.05) translateY(-10px);
}

.process-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  opacity: 0.3;
}

.process-card:hover .process-number,
.process-card.active .process-number {
  -webkit-text-fill-color: white;
  opacity: 0.5;
}

.process-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
  position: relative;
  z-index: 1;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(3, 206, 164, 0.3);
  transition: all 0.3s ease;
}

.process-card:hover .process-icon,
.process-card.active .process-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 12px 30px rgba(3, 206, 164, 0.4);
}

.process-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bs-dark);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.process-card:hover h3,
.process-card.active h3 {
  color: white;
}

.process-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.process-card:hover p,
.process-card.active p {
  color: rgba(255, 255, 255, 0.95);
}

.process-divider {
  height: 3px;
  width: 50px;
  background: linear-gradient(90deg, #03cea4ff 0%, transparent 100%);
  margin: 20px auto 0;
  position: relative;
  z-index: 1;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.process-card:hover .process-divider,
.process-card.active .process-divider {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
}

/*** CTA Banner Process Section ***/
.cta-banner-process {
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
  border-radius: 16px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(3, 206, 164, 0.25);
}

.cta-banner-process::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta-banner-process::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.cta-banner-process .cta-content {
  position: relative;
  z-index: 1;
}

.cta-banner-process h2 {
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-banner-process p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/*** Service Area Card Styles ***/
.service-area-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}

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

.service-area-card.highlight {
  background: linear-gradient(135deg, #f9f9f9 0%, white 100%);
  border: 2px solid #03cea4ff;
  position: relative;
}

.service-area-card.highlight::before {
  display: none;
  content: "Premium Service";
  position: absolute;
  top: -12px;
  left: 20px;
  background: #03cea4ff;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.card-header-custom {
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
  color: white;
  padding: 25px;
  border-bottom: none;
}

.card-header-custom h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
}

.card-body-custom {
  padding: 30px;
}

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

.area-list li {
  padding: 10px 0;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-list li:hover {
  color: #03cea4ff;
  padding-left: 10px;
}

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

.area-list i {
  font-size: 0.8rem;
}

/*** Benefit Item Styles ***/
.benefit-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(3, 206, 164, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.benefit-item:hover {
  background: rgba(3, 206, 164, 0.1);
  border-left-color: #03cea4ff;
  transform: translateX(5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 8px 20px rgba(3, 206, 164, 0.3);
}

.benefit-item h5 {
  color: var(--bs-dark);
  font-weight: 700;
  font-size: 1rem;
}

/*** CTA Banner Service Area Section ***/
.cta-banner-service-area {
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(3, 206, 164, 0.25);
}

.cta-banner-service-area::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta-banner-service-area::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.cta-banner-service-area .cta-content {
  position: relative;
  z-index: 1;
}

.cta-banner-service-area h2 {
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-banner-service-area p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .process-card {
    padding: 25px 15px;
  }

  .process-number {
    font-size: 2.5rem;
  }

  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .cta-banner-process,
  .cta-banner-service-area {
    padding: 30px 20px;
  }

  .cta-banner-process h2,
  .cta-banner-service-area h2 {
    font-size: 1.5rem;
  }

  .service-area-card.highlight::before {
    left: 15px;
  }
}
/* Apply to service items */
.service-item {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Feature item enhancements */
.feature-item {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: none;
}

.feature-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Improved header styling */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

/* FAQ accordion styling */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 600;
  color: var(--bs-dark);
  background-color: var(--bs-light);
  border: none;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background-color: rgba(0, 160, 176, 0.05);
}

/* Call to action buttons */
.cta-btn {
  padding: 12px 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Water droplet animation effect for cleaning theme */
.droplet-bg {
  position: relative;
  overflow: hidden;
}

.droplet-bg:before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  background: radial-gradient(
    circle,
    rgba(107, 198, 229, 0.2) 0%,
    rgba(0, 160, 176, 0) 70%
  );
  animation: droplet 15s infinite linear;
}

@keyframes droplet {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Clean line dividers */
.clean-divider {
  height: 3px;
  width: 80px;
  background: var(--bs-primary);
  margin: 20px auto;
  position: relative;
}

.clean-divider:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bs-primary);
  top: -3.5px;
  left: -5px;
}

.clean-divider:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bs-primary);
  top: -3.5px;
  right: -5px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar-light .navbar-nav .nav-link::before {
  background: var(--bs-primary);
}

/*** Footer Enhancements ***/
.footer {
  background-color: var(--bs-dark);
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #2a3b4c, #1a2530);
}

.footer::before {
  display: none; /* Remove the overlay */
}

.footer-item {
  position: relative;
  z-index: 1;
}

.footer-item h4 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.footer-item h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--bs-primary);
}

.footer-item a {
  color: #ffffff;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-item a:hover {
  color: var(--bs-primary);
  transform: translateX(5px);
}

.footer-item p {
  line-height: 35px;
}

.footer-item .footer-btn a,
.footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer-item .footer-btn a:hover i {
  color: var(--bs-primary);
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  border: none;
}

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

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
}

/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
  color: var(--bs-primary);
}

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

.topbar .dropdown .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  padding-top: 11px;
  border: 0;
  transition: 0.5s;
  opacity: 1;
}

/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-white);
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
  color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

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

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark);
  }

  .navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-dark);
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: -1px;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::after,
  .navbar-light .navbar-nav .nav-link.active::after {
    width: 2px;
    height: 12px;
  }
}
/*** Navbar End ***/

/*** Enhanced Hero Section ***/
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: -1;
}

.hero-content {
  padding: 2rem;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-in-out;
  max-width: 900px;
  margin: 0 auto;
  backdrop-filter: blur(5px);
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  position: relative;
}

.badge-text {
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(3, 206, 164, 0.3);
  position: relative;
  animation: fadeInDown 1s ease forwards, pulse 2s infinite;
  display: inline-block;
  transform-origin: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(3, 206, 164, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(3, 206, 164, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(3, 206, 164, 0.3);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease forwards;
  text-transform: uppercase;
}

.hero-text {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.9);
  animation: fadeIn 1.5s ease forwards;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
}

.hero-section .btn {
  animation: fadeInUp 1.5s ease forwards;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.8rem 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-section .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  z-index: -1;
}

.hero-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-section .btn:hover::before {
  left: 100%;
}

.hero-section .btn-primary {
  background: linear-gradient(135deg, #03cea4ff 0%, #eac435ff 100%);
  border: none;
}

.hero-section .btn-light {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--bs-primary);
}

/* Water ripple effect */
.hero-section.droplet-bg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(0, 160, 176, 0.3) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: ripple 10s infinite linear;
  pointer-events: none;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
}

/* Floating animation for hero elements */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-section .clean-divider {
  animation: float 4s ease-in-out infinite;
}

.hero-section .btn-primary {
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.hero-section .btn-light {
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
}

/* Mobile responsive hero */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-section .btn {
    margin: 0.5rem 0;
  }
}

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

  .badge-text {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }

  .hero-content {
    padding: 1rem;
  }
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .bg-breadcrumb {
    padding: 140px 0 60px 0;
  }
}

@media (max-width: 991px) {
  .bg-breadcrumb {
    padding: 60px 0 60px 0;
  }
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Service Start ***/
.service .service-item {
  background: var(--bs-light);
  border-radius: 10px;
  transition: 0.5s;
}

.service .service-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.service .service-item .service-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
}

.service .service-item .service-img img {
  transition: 0.5s;
}

.service .service-item:hover .service-img img {
  transform: scale(1.2);
}
/*** Service End ***/

/*** Features Start ***/
.feature .feature-item {
  text-align: center;
  border-radius: 10px;
  background: var(--bs-light);
  border: 1px solid transparent;
  transition: 0.5s;
}

.feature .feature-item:hover {
  border: 1px solid var(--bs-primary);
}

.feature .feature-item .feature-icon {
  background: var(--bs-white);
  border-radius: 10px;
  display: inline-block;
}
/*** Features End ***/

/*** Offer Start ***/
.offer-section .nav a.accordion-link {
  width: 100%;
  border-radius: 10px;
  display: flex;
  background: var(--bs-white);
  transition: 0.5s;
}

.offer-section .nav a.accordion-link.active {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.offer-section .nav a.accordion-link h5 {
  transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h5 {
  color: var(--bs-white);
}
/*** Offer End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  background: var(--bs-white);
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

.blog .blog-item a {
  transition: 0.5s;
}

.blog .blog-item:hover a:hover {
  color: var(--bs-primary);
}

.blog .blog-item .blog-img {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 208, 132, 0.1);
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
  opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
  color: var(--bs-white);
  background: var(--bs-primary);
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
  color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
  margin-top: 58px;
}

.blog .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  left: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 6px 35px;
  border-radius: 30px;
  transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
  background: var(--bs-dark);
  color: var(--bs-primary);
}

.blog .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 6px 35px;
  border-radius: 30px;
  transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
  background: var(--bs-dark);
  color: var(--bs-primary);
}
/*** Blog End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
  color: var(--bs-secondary);
}

.faq-section
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button.collapsed {
  color: var(--bs-dark);
}
/*** FAQs End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  padding: 0 25px 25px 25px;
  border-radius: 10px;
  transition: 0.5s;
}

.team .team-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: var(--bs-light);
  border-radius: 10px;
  transition: 0.5s;
  z-index: -1;
}

.team .team-item:hover::before {
  height: 0;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  transition: 0.5s;
  z-index: -1;
}

.team .team-item:hover::after {
  height: 100%;
  background: var(--bs-primary);
}

.team .team-item .team-img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  position: relative;
  margin-top: 50%;
  transform: translateY(-50%);
  margin-bottom: -50%;
  display: flex;
  justify-content: center;
  border: 4px solid var(--bs-primary);
  border-style: dotted;
  padding: 4px;
  background: var(--bs-white);
  transition: 0.5s;
}

.team .team-item:hover .team-img {
  border: 4px solid var(--bs-white);
  border-style: dotted;
  background: 0;
}

.team .team-item .team-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transition: 0.5s;
}

.team .team-item .team-title {
  padding: 25px 0 25px 0;
  text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
  transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
  color: var(--bs-white);
}

.team .team-item .team-icon {
  display: flex;
  justify-content: center;
}

.team .team-item .team-icon a {
  transition: 0.5s;
}

.team .team-item:hover .team-icon a {
  color: var(--bs-dark);
  background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
  color: var(--bs-primary);
  background: var(--bs-dark);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-item {
  position: relative;
  margin-bottom: 30px;
  padding: 0 25px 25px 25px;
}

.testimonial .testimonial-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 50px);
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-light);
  z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
  display: flex;
  justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 5px solid var(--bs-light);
  border-style: double;
  background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-text {
  padding: 25px 0;
  text-align: center;
}

.testimonial .testimonial-item .testimonial-title {
  display: flex;
  justify-content: space-between;
}

.testimonial .testimonial-item .testimonial-quote-left {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 20px;
  left: 25px;
  border-radius: 60px;
  color: var(--bs-primary);
  background: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-item .testimonial-quote-right {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -30px;
  right: 25px;
  margin-top: -5px;
  border-radius: 60px;
  color: var(--bs-primary);
  background: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-stage-outer {
  margin-top: 58px;
  margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  left: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin: 20px 10px 0 10px;
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--bs-secondary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
  background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
  transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-secondary);
}

.footer .footer-item {
  display: flex;
  flex-direction: column;
}

.footer .footer-item a {
  line-height: 35px;
  color: #ffffff;
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
  color: #ffffff;
}

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

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  background: var(--bs-dark);
}
/*** copyright end ***/

.about-image-container {
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--bs-primary);
}

.about-image-container img {
  object-fit: cover;
  height: 100%;
  min-height: 400px;
  transition: transform 0.5s ease;
}

.about-image-container:hover img {
  transform: scale(1.03);
}
