/* Handyman Services Color Scheme */
:root {
  --midnight-violet: #160f29;
  --stormy-teal: #246a73;
  --dark-cyan: #368f8b;
  --champagne-mist: #f3dfc1;
  --desert-sand: #ddbea8;
  --bs-primary: #246a73; /* Stormy Teal */
  --bs-secondary: #368f8b; /* Dark Cyan */
  --bs-dark: #160f29; /* Midnight Violet */
  --bs-light: #f3dfc1; /* Champagne Mist */
  --bs-success: #41b883; /* Fresh green */
  --bs-warning: #ddbea8; /* Desert Sand - replaces yellow */
  --bs-danger: #fc5757; /* Vibrant red */
  --bs-white: #ffffff;
  --bs-gray: #86878d;
  --bs-box-shadow: 0 10px 30px rgba(36, 106, 115, 0.15);
  --bs-gradient: linear-gradient(145deg, var(--bs-primary), var(--dark-cyan));
  /* 2025 Modern Design Variables */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-blur: 10px;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 30px 40px rgba(0, 0, 0, 0.2);
}

/* Fix for text-secondary class to use our new color scheme */
.text-secondary {
  color: var(--bs-white) !important;
}

/* Override Bootstrap default primary color */
.text-primary,
.btn-primary,
.border-primary,
.bg-primary {
  --bs-primary: #246a73 !important;
}

.text-primary {
  color: #246a73 !important;
}

.border-primary {
  border-color: #246a73 !important;
}

.btn-primary {
  background-color: #246a73 !important;
  border-color: #246a73 !important;
}

.btn-primary:hover {
  background-color: #1a4f57 !important;
  border-color: #1a4f57 !important;
}

body {
  font-family: "Nunito", sans-serif;
  background: linear-gradient(135deg, #fcfcfd 0%, #f5f5f7 100%);
  color: #4d4f55;
  scroll-behavior: smooth;
}

/*** 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;
  border-radius: 50%;
  box-shadow: var(--bs-box-shadow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(93, 105, 242, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(93, 105, 242, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(93, 105, 242, 0);
  }
}

.btn {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 50px;
  padding: 14px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  backdrop-filter: blur(4px);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn.btn-primary {
  background: var(--bs-gradient);
  border: 2px solid transparent;
  color: var(--bs-white);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(36, 106, 115, 0.25);
}

.btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(36, 106, 115, 0.35);
  color: var(--bs-white);
}

.btn.btn-dark {
  background: linear-gradient(135deg, var(--bs-dark) 0%, #2a2238 100%);
  border: 2px solid transparent;
  color: var(--bs-white);
  box-shadow: 0 10px 25px rgba(22, 15, 41, 0.25);
}

.btn.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(22, 15, 41, 0.35);
  color: var(--bs-white);
}

/*** 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 ***/
.container-fluid.bg-dark {
  background: var(--bs-dark) !important;
  box-shadow: var(--shadow-lg);
}

.navbar {
  padding: 1rem 0;
}

.navbar .navbar-nav {
  padding: 15px 0;
  gap: 5px;
}

.navbar .navbar-nav .nav-link {
  padding: 12px 18px;
  color: var(--bs-white);
  font-weight: 700;
  font-size: 16px;
  outline: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--bs-secondary);
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-secondary);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.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: 8px 15px;
  border: 2px solid var(--bs-primary) !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  box-shadow: 0 8px 20px rgba(36, 106, 115, 0.3);
}

/*** Navbar End ***/

/*** Carousel Start ***/
.carousel-item {
  position: relative;
  min-height: 350px;
  background: linear-gradient(135deg, rgba(36, 106, 115, 0.3), rgba(54, 143, 139, 0.2));
}

.carousel-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(22, 15, 41, 0.8), rgba(0, 0, 0, 0.6));
}

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

.carousel-caption h1 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
  animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-caption h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem !important;
  color: var(--bs-secondary);
  font-weight: 600;
  animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.carousel-caption .btn {
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 90px;
  height: 70px;
  position: absolute;
  top: 50%;
  background: var(--bs-gradient);
  border: none;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.8;
  box-shadow: var(--shadow-lg);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

#carouselId .carousel-indicators li {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--bs-primary);
  border-radius: 50%;
  margin: 0 12px 30px 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(5px);
}

#carouselId .carousel-indicators li.active {
  background: var(--bs-primary) !important;
  box-shadow: 0 8px 20px rgba(36, 106, 115, 0.4);
  transform: scale(1.2);
}

/* Enhanced responsive carousel styles */
@media (max-width: 768px) {
  .carousel-item {
    min-height: 280px;
  }
  
  .carousel-item img {
    height: 350px;
    object-fit: cover;
  }
  
  .carousel-caption {
    padding: 2rem;
    bottom: 0;
  }
  
  .carousel-caption h1 {
    font-size: 2.2rem;
  }
  
  .carousel-caption h4 {
    font-size: 1rem;
  }
  
  .carousel-control-prev, 
  .carousel-control-next {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    min-height: 220px;
  }
  
  .carousel-item img {
    height: 300px;
  }
  
  .carousel-caption {
    padding: 1.5rem;
  }
  
  .carousel-caption h1 {
    font-size: 1.8rem;
  }
  
  .carousel-caption h4 {
    font-size: 0.95rem;
  }
  
  .carousel-caption .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .carousel-control-prev, 
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

.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: 0;
  overflow: hidden;
  border-radius: 20px;
}

.about-img::before {
  content: "";
  width: 0;
  height: 0;
  background: transparent;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 20px 20px 0 0;
  display: none;
}

.about-img::after {
  content: "";
  width: 0;
  height: 0;
  background: transparent;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 0 0 20px 20px;
  display: none;
}

.about-img img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-item {
  animation: fadeInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced About Section Icons */
.about-item .p-4.rounded-circle {
  width: 120px;
  height: 120px;
  background: var(--bs-gradient) !important;
  box-shadow: 0 15px 40px rgba(36, 106, 115, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}

.about-item .p-4.rounded-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  pointer-events: none;
}

.about-item .p-4.rounded-circle:hover {
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 20px 50px rgba(36, 106, 115, 0.4);
}

.about-item .p-4.rounded-circle i {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.about-item .p-4.rounded-circle:hover i {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/*** About End ***/

/*** Services Start ***/
.services-item {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-md);
  height: 100%;
  border: 1px solid rgba(36, 106, 115, 0.1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
}

.services-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bs-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.services-item:hover::before {
  transform: scaleX(1);
}

.services-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--bs-primary);
}

.services-inner-icon {
  width: 100px;
  height: 100px;
  background: var(--bs-gradient);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(36, 106, 115, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.services-inner-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  pointer-events: none;
}

.services-item:hover .services-inner-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(36, 106, 115, 0.4);
}

.services-item i {
  color: var(--bs-white);
}

.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-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(36, 106, 115, 0.15);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bs-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.contact-box:hover::before {
  transform: scaleX(1);
}

.contact-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.contact-box i {
  font-size: 2.5rem;
  color: var(--bs-primary);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 1rem;
}

.contact-box:hover i {
  transform: scale(1.15) rotate(5deg);
  color: var(--bs-secondary);
}

.contact-box h4 {
  color: var(--bs-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: 1.3rem;
}

.contact-link a i,
.contact-link a h5,
.contact-link a.h5 {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: linear-gradient(135deg, #160f29 0%, #1f1631 50%, #246a73 100%);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(36, 106, 115, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-item,
.footer-item a {
  color: rgba(255, 255, 255, 0.85);
  text-transform: capitalize;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

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

.footer a.btn-link {
  position: relative;
  display: block;
  padding: 8px 0 8px 28px !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 600;
}

.footer a.btn-link:before {
  content: "→";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer a.btn-link:hover {
  padding-left: 35px !important;
  color: var(--bs-secondary) !important;
}

.footer a.btn-link:hover:before {
  transform: translateY(-50%) translateX(5px);
}

.copyright {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*** 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 ***/

/* Logo Styles - 2025 Modern Trendy Design */
.logo-text {
  color: var(--bs-white);
  font-weight: 900;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0.35rem 1rem;
  border-radius: 12px;
  background: var(--bs-gradient);
  box-shadow: 0 15px 35px rgba(36, 106, 115, 0.3);
  text-transform: uppercase;
  font-size: 2.2rem;
  letter-spacing: -2px;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-text::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
}

.logo-text:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(36, 106, 115, 0.4);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .carousel-caption h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .logo-text {
    font-size: 2rem;
  }

  .carousel-caption h1 {
    font-size: 2.5rem;
  }

  .display-5 {
    font-size: 2rem;
  }

  .services-item {
    padding: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.8rem;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.8rem;
  }

  .carousel-content {
    padding: 1rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .topbar-info {
    flex-direction: column;
    align-items: center;
  }

  .topbar-info a {
    margin-bottom: 0.5rem;
  }

  #contact .contact-box {
    margin-bottom: 1rem;
  }

  .about-img .experiences {
    padding: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 1.5rem;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .display-5 {
    font-size: 1.5rem;
  }

  .carousel-content {
    padding: 0.5rem;
  }

  .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .navbar-nav {
    background-color: var(--bs-dark);
    padding: 1rem;
    border-radius: 0 0 8px 8px;
  }

  .services-item {
    padding: 1rem !important;
  }

  .about-img .experiences {
    padding: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .about-img .experiences h1 {
    font-size: 2rem;
  }

  #service-areas .area-list {
    column-count: 2;
  }
}

@media (max-width: 400px) {
  .logo-text {
    font-size: 1.3rem;
  }

  .carousel-caption h1 {
    font-size: 1.2rem;
  }

  .display-5 {
    font-size: 1.3rem;
  }

  .carousel-content {
    padding: 0.25rem;
  }

  .btn {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  #service-areas .area-list {
    column-count: 1;
  }
}

/* Services Section Updates */
#detailed-services .service-box {
  border: none;
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  background: var(--bs-white);
}

#detailed-services .service-box:hover {
  background-color: var(--bs-light);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#detailed-services .service-icon {
  font-size: 3rem;
  color: var(--bs-primary);
  margin-bottom: 15px;
  background: rgba(36, 106, 115, 0.15);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

#service-areas .area-list {
  column-count: 3;
  column-gap: 30px;
}

#service-areas .area-list li {
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#service-areas .area-list li:hover {
  background-color: rgba(93, 105, 242, 0.1);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  #service-areas .area-list {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  #service-areas .area-list {
    column-count: 1;
  }
}

/* FAQ Section */
#faqs .accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#faqs .accordion-button {
  font-weight: 700;
  background-color: var(--bs-white);
  padding: 20px 25px;
}

#faqs .accordion-button:not(.collapsed) {
  color: var(--bs-white);
  background: var(--bs-gradient);
}

#faqs .accordion-body {
  padding: 25px;
  background-color: var(--bs-light);
}

/* Add smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Contact section update */
#contact .contact-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(36, 106, 115, 0.15);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

#contact .contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bs-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  z-index: 2;
}

#contact .contact-box:hover::before {
  transform: scaleX(1);
}

#contact .contact-box:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: var(--shadow-xl);
  border-color: var(--bs-primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
}

#contact .contact-box i {
  font-size: 2.5rem;
  color: var(--bs-primary);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
  margin-bottom: 1.2rem;
}

#contact .contact-box:hover i {
  transform: scale(1.2) rotate(-10deg);
  color: var(--bs-secondary);
}

#contact .contact-box h4 {
  color: var(--bs-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

#contact .contact-box:hover h4 {
  color: var(--bs-primary);
}

#contact .contact-box p,
#contact .contact-box a {
  transition: all 0.3s ease;
  color: #4d4f55;
}

#contact .contact-box:hover p,
#contact .contact-box:hover a {
  color: var(--bs-primary);
}

/* Mobile Menu Improvements */
@media (max-width: 992px) {
  .navbar-collapse {
    background-color: var(--bs-dark);
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    margin-top: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  
  .navbar-toggler {
    padding: 0.5rem;
    border-radius: 8px;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(93, 105, 242, 0.25);
  }
}

/* Fix for the contact section on mobile */
@media (max-width: 768px) {
  #contact .row {
    gap: 1rem !important;
  }
  
  #contact .contact-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Fix for service areas list on mobile */
@media (max-width: 576px) {
  #service-areas .area-list {
    column-gap: 1rem;
  }
  
  #service-areas .area-list li {
    margin-bottom: 0.75rem;
    break-inside: avoid;
  }
}

/* Additional responsive fixes */
@media (max-width: 768px) {
  .services-item {
    height: 100%;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer .col-lg-3 {
    margin-bottom: 2rem;
  }
  
  .footer .btn-link {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .about-img {
    margin-bottom: 2rem;
  }
  
  .service-box {
    padding: 1.5rem;
  }
}

/* ========== 2025 Modern Design Enhancements ========== */

/* Global smooth transitions */
* {
  scroll-behavior: smooth;
}

/* Section titles styling */
h1, h2, h3, h4, h5, h6 {
  transition: all 0.3s ease;
}

.display-5 {
  font-weight: 900;
  letter-spacing: -1.5px;
  background: var(--bs-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

/* Accent borders on section headers */
.border-primary {
  border-color: var(--bs-primary) !important;
  transition: all 0.3s ease;
}

/* Back to top button modern styling */
.back-to-top {
  background: var(--bs-gradient);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float 3s ease-in-out infinite;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-xl);
  animation: none;
}

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

/* Service box styling */
.service-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(36, 106, 115, 0.15);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-box:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--bs-primary);
  transform: translateY(-5px);
}

.service-box h2 {
  color: var(--bs-dark);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

/* Service icon enhancement */
.service-icon {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--bs-primary) !important;
  font-size: 2rem;
}

.service-box:hover .service-icon {
  transform: scale(1.15);
  color: var(--bs-secondary) !important;
}

/* Accordion styling */
.accordion-button {
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  border-bottom: 2px solid rgba(36, 106, 115, 0.1);
  color: var(--bs-dark);
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
  color: var(--bs-white);
  box-shadow: 0 4px 15px rgba(36, 106, 115, 0.2);
}

.accordion-button:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(36, 106, 115, 0.25);
}

.accordion-body {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

/* Modern gradient text */
.gradient-text {
  background: var(--bs-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glassmorphism cards */
.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--bs-primary);
}

/* Smooth page transitions */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Enhanced link hover states */
a {
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

/* Form styling enhancements */
.form-control, .form-select {
  border-radius: 12px;
  border: 1px solid rgba(36, 106, 115, 0.2);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}

.form-control:focus, .form-select:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(36, 106, 115, 0.25);
  background: rgba(255, 255, 255, 1);
}

/* Badge styling */
.badge {
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.badge-primary {
  background: var(--bs-gradient);
  box-shadow: var(--shadow-sm);
}

.badge-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}
