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

#spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.btn {
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--border-radius-xl);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  border: none;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transition: var(--transition-normal);
}

.btn:hover::before {
  width: 100%;
}

.btn.btn-primary {
  background: var(--bs-primary) !important;
  box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.3);
  transform: translateY(0);
}

.btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.4);
  background: #0056b3 !important;
}

.btn.btn-dark {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-dark:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-primary);
  color: var(--bs-dark) !important;
}

/*** Topbar Start ***/

.search-btn {
  position: relative;
  width: 100%;
  padding: 0 0 0 25px;
}

.search-btn .form-group {
  width: 100%;
}

.search-btn button {
  position: absolute;
  right: 25px;
}

@media (max-width: 992px) {
  .search-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
  }
  .search-btn {
    display: none;
  }
  .topbar-info {
    flex-direction: column;
  }
  .topbar-info a {
    padding: 0 0 10px 0;
  }
  .topbar-icon {
    padding: 0 0 10px 0;
  }
}

@media (max-width: 576px) {
  .topbar-top {
    display: none;
  }
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav {
  padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
  padding: 15px;
  color: var(--bs-white);
  font-weight: 500;
  font-size: 16px;
  outline: none;
  transition: 0.5s;
}

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

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

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

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

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

.navbar-toggler {
  background: var(--bs-secondary);
  color: var(--bs-light) !important;
  padding: 5px 12px;
  border: 2px solid var(--bs-primary) !important;
}

/*** Navbar End ***/

/*** Carousel Start ***/

.carousel-item {
  position: relative;
}

.carousel-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}

.carousel-caption {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 1;
}

.carousel-control-prev {
  width: 80px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--bs-primary);
  border-radius: 0 30px 30px 0;
  transition: 0.5s;
  opacity: 1;
}

.carousel-control-next {
  width: 80px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 0;
  background: var(--bs-primary);
  border-radius: 30px 0 0 30px;
  transition: 0.5s;
  opacity: 1;
}

#carouselId .carousel-indicators li,
#carouselId .carousel-indicators li {
  width: 24px;
  height: 24px;
  background: var(--bs-dark);
  border: 2px solid var(--bs-primary);
  border-radius: 24px;
  margin: 0 10px 30px 10px;
}

#carouselId .carousel-indicators li.active {
  background: var(--bs-primary) !important;
}

@media (max-width: 768px) {
  .carousel-item {
    width: 100%;
    height: 400px;
  }

  .carousel-item img {
    height: 400px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
  margin-bottom: 6rem;
}

/*** Carousel End ***/

/*** About Start ***/

.about-img {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 30px 30px 30px 30px;
  overflow: hidden;
}

.about-img::before {
  content: "";
  width: 100%;
  height: 40%;
  background: var(--bs-dark);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.about-img::after {
  content: "";
  width: 100%;
  height: 60%;
  background: var(--bs-primary);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.rotate-left {
  width: 150px;
  height: 100px;
  position: absolute;
  top: 28%;
  left: -10%;
  rotate: 25deg;
  z-index: 2;
}

.rotate-right {
  width: 150px;
  height: 100px;
  position: absolute;
  top: 28%;
  right: -10%;
  rotate: -25deg;
  z-index: 2;
}

.about-img img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
}

.experiences {
  width: 160px;
  height: 200px;
  position: absolute;
  top: -0;
  right: 0;
  padding: 35px 35px;
  text-align: center;
  border-radius: 10px;
  z-index: 3;
  animation: mymove 5s infinite;
  animation-timing-function: ease-in-out;
}

@keyframes mymove {
  from {
    top: -202px;
  }
  to {
    top: 102%;
  }
}

/*** About End ***/

/*** Services Start ***/
.services-inner-icon {
  width: 130px;
  height: 130px;
  background: var(--bs-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  position: relative;
}

.services-inner-icon::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 62px;
  top: 50%;
  left: 50%;
  transition: 0.5s;
}

.services-item:hover .services-inner-icon::after {
  width: 100%;
  height: 100%;
  margin-top: -50%;
  margin-left: -50%;
  background: var(--bs-primary);
  color: var(--bs-dark);
}

.services-item i {
  text-align: center;
  transition: 0.5s;
}

.services-item:hover i {
  color: var(--bs-dark) !important;
  z-index: 1;
  rotate: 360deg;
}

.services-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*** Services Start ***/

/*** Project Start ***/
.project-item {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 30px 30px 30px 30px;
  overflow: hidden;
}

.project-item::before {
  content: "";
  width: 100%;
  height: 40%;
  background: var(--bs-dark);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.project-item::after {
  content: "";
  width: 100%;
  height: 60%;
  background: var(--bs-primary);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.project-left {
  width: 180px;
  height: 70px;
  position: absolute;
  top: 22%;
  left: -18%;
  rotate: 30deg;
  z-index: 2;
}

.project-right {
  width: 180px;
  height: 70px;
  position: absolute;
  top: 22%;
  right: -18%;
  rotate: -30deg;
  z-index: 2;
}

.project-item img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-item a {
  position: absolute;
  padding: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(-360deg);
  border-radius: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  opacity: 0;
}

.project-item:hover a {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  background: var(--bs-primary);
  color: var(--bs-dark) !important;
  opacity: 1;
}

/*** prohect Start ***/

/*** Blog Start ***/

.blog-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.blog-carousel .owl-nav .owl-prev {
  position: absolute;
  width: 80px;
  height: 50px;
  background: var(--bs-primary);
  top: -51px;
  left: 0;
  border: 0;
  border-radius: 10px 30px 30px 10px;
}

.blog-carousel .owl-nav .owl-prev {
  box-shadow: inset 0 0 0 0 var(--bs-dark);
  transition: 0.5s;
}

.blog-carousel .owl-nav .owl-prev:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-dark);
  color: var(--bs-primary) !important;
}

.blog-carousel .owl-prev,
.blog-carousel .owl-next {
  color: var(--bs-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-carousel .owl-nav .owl-next {
  position: absolute;
  width: 80px;
  height: 50px;
  background: var(--bs-primary);
  top: -51px;
  right: 0;
  border-radius: 30px 10px 10px 30px;
}

.blog-carousel .owl-nav .owl-next {
  box-shadow: inset 0 0 0 0 #000000;
  transition: 0.5s;
}

.blog-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 200px 0 0 0 #000000;
  color: var(--bs-primary) !important;
}

/*** Blog End ***/

/*** Pricing Start ***/
.pricing-item {
  transition: 0.5s;
}

.pricing-item:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  margin: -20px 0 20px 0;
}

.pricing-label {
  border-bottom: 20px solid var(--bs-light);
  border-radius: 0 0 300px 300px;
  transition: 0.5s;
}

.pricing-item:hover .pricing-label {
  border-color: rgba(0, 0, 0, 0.5);
}

.pricing-item:hover .pricing-label.pricing-featured {
  border-color: rgba(255, 255, 255, 0.5);
}

/*** Pricing End ***/

/*** Call To Action start ***/

.call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

/*** Call To Action End ***/

/*** Team Start ***/
.team-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.team-item .team-icon {
  position: absolute;
  top: 15px;
  right: -80px;
  rotate: -30deg;
  transition: 0.5s;
  visibility: hidden;
}

.team-item:hover .team-icon {
  visibility: visible;
  margin-right: 95px;
  rotate: 0deg;
}

.team-item .team-icon .btn {
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
}

.team-item .team-content {
  box-shadow: inset 0 0 0 0 var(--bs-dark);
  transition: 1s;
}

.team-item:hover .team-content {
  box-shadow: inset 550px 0 0 0 var(--bs-dark);
  color: var(--bs-primary) !important;
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bs-light);
  z-index: 1;
}

.testimonial-content::before {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50px;
  bottom: -15px;
  rotate: 45deg;
  z-index: -5;
  background: var(--bs-light);
}

.testimonial-carousel {
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60px;
  height: 40px;
  background: var(--bs-primary);
  color: var(--bs-dark);
  font-size: 22px;
  top: 14%;
  left: 0px;
  border-radius: 30px 0 0 30px;
  box-shadow: inset 0 0 0 0 var(--bs-dark);
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-dark);
  color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-nav .owl-next {
  left: auto;
  right: 0px;
  border-radius: 0 30px 30px 0;
}

.testimonial-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-dark);
  color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-secondary);
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--bs-primary);
}

/*** testimonial End ***/

/*** Contact Start ***/
.contact-link a i,
.contact-link a h5,
.contact-link a.h5 {
  transition: 0.5s;
}

.contact-link a i:hover,
.contact-link a h5:hover,
.contact-link a.h5:hover {
  color: var(--bs-primary) !important;
}

/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url(../img/1742221184211.jpg) center center no-repeat;
  background-size: cover;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/pattern-dot.png);
  opacity: 0.05;
  z-index: 0;
}

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

.footer h4 {
  color: white;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--bs-primary);
  border-radius: 5px;
}

.footer-item a {
  transition: var(--transition-normal);
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-item a i {
  margin-right: 10px;
  transition: var(--transition-normal);
}

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

/*** Footer End ***/

/*** Copywright Start ***/

.copyright .copyright-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright .copyright-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*** Copywright End ***/

/* Process Cards Modern Styling */
.rounded.bg-light {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px !important;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #f5f5f5) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.rounded.bg-light:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
}

.btn-square.bg-primary {
  width: 120px !important;
  height: 120px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary) !important;
  border-radius: 50% !important;
  margin-bottom: 25px !important;
  position: relative;
  transition: var(--transition-slow);
  box-shadow: 0 10px 20px rgba(var(--bs-primary-rgb), 0.3);
}

.btn-square.bg-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0056b3;
  border-radius: 50%;
  transition: var(--transition-normal);
  opacity: 0;
  z-index: 1;
}

.rounded.bg-light:hover .btn-square.bg-primary {
  transform: translateY(-15px) rotate(8deg);
  box-shadow: 0 20px 30px rgba(var(--bs-primary-rgb), 0.5);
}

.rounded.bg-light:hover .btn-square.bg-primary::before {
  opacity: 1;
  transform: scale(1.15);
}

.rounded.bg-light:hover .btn-square.bg-primary i {
  transform: scale(1.2);
  color: #fff;
  animation: iconFloat 1.2s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) scale(1.2);
  }
  50% {
    transform: translateY(-8px) scale(1.3);
  }
}

/* Update process cards for better spacing */
.rounded.bg-light {
  padding: 1rem;
  margin-top: 1rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rounded.bg-light .p-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rounded.bg-light h4 {
  margin: 1rem 0;
  font-weight: 600;
  color: var(--bs-dark);
  transition: all 0.3s ease;
}

.rounded.bg-light:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
}

.rounded.bg-light:hover h4 {
  color: var(--bs-primary);
  transform: translateY(-2px);
}

.rounded.bg-light p {
  color: #666;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.rounded.bg-light:hover p {
  transform: translateY(-2px);
}

/* Add smooth animation to icons */
.fas {
  transition: all 0.4s ease;
}

.rounded.bg-light:hover .fas {
  color: var(--bs-primary);
}

/* Add depth to the cards */
.rounded.bg-light {
  position: relative;
}

.rounded.bg-light::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--bs-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rounded.bg-light:hover::after {
  transform: scaleX(1);
}

/* Modern Website Styling - 2024 */
:root {
  --primary-gradient: var(--bs-primary);
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
  --transition-fast: all 0.3s ease;
  --transition-normal: all 0.4s ease;
  --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
}

body {
  overflow-x: hidden;
  background-color: #fafafa;
}

/* Modern Button Styling */
.btn {
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--border-radius-xl);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  border: none;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transition: var(--transition-normal);
}

.btn:hover::before {
  width: 100%;
}

.btn.btn-primary {
  background: var(--bs-primary) !important;
  box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.3);
  transform: translateY(0);
}

.btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.4);
  background: #0056b3 !important;
}

/* Hero Section Updated Styling */
#home {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/hero-carpet-cleaning.jpg) center center no-repeat;
  background-size: cover;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/pattern-dot.png);
  opacity: 0.1;
  z-index: 0;
}

#home .container {
  position: relative;
  z-index: 1;
}

#home .row {
  min-height: 70vh;
  align-items: center;
}

#home h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#home h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--bs-primary);
  border-radius: 5px;
}

#home p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

#home .btn-outline-light {
  border-width: 2px;
  font-weight: 500;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 768px) {
  #home h1 {
    font-size: 2.5rem;
  }

  #home .row div[class*="col-"] {
    margin-top: 1.5rem;
  }
}

/* About Section Modern Styling */
#about {
  position: relative;
  overflow: hidden;
}

#about::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(var(--bs-primary-rgb), 0.05) 0%,
    rgba(var(--bs-primary-rgb), 0.03) 100%
  );
  z-index: -1;
}

#about::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(var(--bs-primary-rgb), 0.05) 0%,
    rgba(var(--bs-primary-rgb), 0.03) 100%
  );
  z-index: -1;
}

.about-img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}

.about-img:hover {
  transform: translateY(-10px);
}

/* Service Cards Modern Styling */
.services {
  position: relative;
  overflow: hidden;
}

.services-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.services-content {
  padding: 2rem !important;
}

.services-content-icon {
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.services-item:hover .services-content-icon {
  transform: scale(1.1);
}

.services-item h4 {
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.services-item h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--bs-primary);
  border-radius: 5px;
}

.services-item ul {
  text-align: left;
  margin: 0 auto;
  max-width: 80%;
}

/* Process Section Modern Styling */
.btn-square.bg-primary {
  width: 120px !important;
  height: 120px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary) !important;
  border-radius: 50% !important;
  margin-bottom: 25px !important;
  position: relative;
  transition: var(--transition-slow);
  box-shadow: 0 10px 20px rgba(var(--bs-primary-rgb), 0.3);
}

.btn-square.bg-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0056b3;
  border-radius: 50%;
  transition: var(--transition-normal);
  opacity: 0;
  z-index: 1;
}

.rounded.bg-light:hover .btn-square.bg-primary {
  transform: translateY(-15px) rotate(8deg);
  box-shadow: 0 20px 30px rgba(var(--bs-primary-rgb), 0.5);
}

.rounded.bg-light:hover .btn-square.bg-primary::before {
  opacity: 1;
  transform: scale(1.15);
}

.rounded.bg-light:hover .btn-square.bg-primary i {
  transform: scale(1.2);
  color: #fff;
  animation: iconFloat 1.2s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) scale(1.2);
  }
  50% {
    transform: translateY(-8px) scale(1.3);
  }
}

.rounded.bg-light {
  padding: 1.5rem;
  margin-top: 1rem;
  transition: var(--transition-slow);
  border-radius: var(--border-radius-lg) !important;
  box-shadow: var(--shadow-sm);
  border: none;
  background: white !important;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.rounded.bg-light::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: linear-gradient(
    135deg,
    rgba(var(--bs-primary-rgb), 0.03) 0%,
    rgba(var(--bs-primary-rgb), 0.01) 100%
  );
  transform: rotate(45deg);
  z-index: -1;
  transition: var(--transition-slow);
  opacity: 0;
}

.rounded.bg-light:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
}

.rounded.bg-light:hover::before {
  opacity: 1;
}

.rounded.bg-light .p-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem !important;
}

.rounded.bg-light h4 {
  margin: 1rem 0;
  font-weight: 600;
  color: var(--bs-dark);
  transition: var(--transition-normal);
  position: relative;
}

.rounded.bg-light:hover h4 {
  color: var(--bs-primary);
  transform: translateY(-3px);
}

.rounded.bg-light p {
  color: #666;
  line-height: 1.7;
  transition: var(--transition-normal);
}

.rounded.bg-light:hover p {
  transform: translateY(-3px);
}

.rounded.bg-light::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--bs-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rounded.bg-light:hover::after {
  transform: scaleX(1);
}

/* Project Section Modern Styling */
.project-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
}

.project-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.project-item a {
  padding: 20px;
  border-radius: var(--border-radius-lg);
  background: var(--primary-gradient);
  box-shadow: var(--shadow-md);
}

/* Testimonial Modern Styling */
.testimonial-content {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-content::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
  position: absolute;
  bottom: -15px;
  left: 50px;
}

.testimonial-content::after {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(var(--bs-primary-rgb), 0.1);
  line-height: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

/* FAQ Section Styling */
.accordion-item {
  border-radius: var(--border-radius-md) !important;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-button {
  background: white !important;
  padding: 1.25rem !important;
  font-weight: 500;
  color: var(--bs-dark) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-primary) !important;
  background: linear-gradient(
    135deg,
    rgba(var(--bs-primary-rgb), 0.05) 0%,
    rgba(var(--bs-primary-rgb), 0.01) 100%
  ) !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: rgba(var(--bs-primary-rgb), 0.1) !important;
}

.accordion-button::after {
  background-size: 1rem;
  transition: var(--transition-normal);
}

/* Contact Section Styling */
#contact {
  position: relative;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--bs-primary-rgb), 0.03) 0%,
    rgba(var(--bs-primary-rgb), 0.01) 100%
  );
  z-index: -1;
}

.contact-info {
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.contact-info i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--bs-primary);
  transition: var(--transition-normal);
}

.contact-info:hover i {
  transform: scale(1.2);
}

/* Footer Modern Styling */
.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url(../img/1742221184211.jpg) center center no-repeat;
  background-size: cover;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/pattern-dot.png);
  opacity: 0.05;
  z-index: 0;
}

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

.footer h4 {
  color: white;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--bs-primary);
  border-radius: 5px;
}

.footer-item a {
  transition: var(--transition-normal);
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-item a i {
  margin-right: 10px;
  transition: var(--transition-normal);
}

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