/* Modern Color Scheme Variables */
:root {
  --bs-primary: #5d69f2; /* Modern indigo blue */
  --bs-secondary: #ff7d63; /* Coral accent */
  --bs-dark: #292b33; /* Deep charcoal */
  --bs-light: #f1f3f9; /* Soft light gray */
  --bs-success: #41b883; /* Fresh green */
  --bs-warning: #ffd166; /* Soft yellow */
  --bs-danger: #fc5757; /* Vibrant red */
  --bs-white: #ffffff;
  --bs-gray: #86878d;
  --bs-box-shadow: 0 10px 30px rgba(93, 105, 242, 0.15);
  --bs-gradient: linear-gradient(145deg, var(--bs-primary), #7581ff);
}

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

body {
  font-family: "Nunito", sans-serif;
  background-color: #fcfcfd;
  color: #4d4f55;
}

/*** 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: 600;
  transition: all 0.4s ease;
  border-radius: 30px;
  padding: 12px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  background: var(--bs-secondary);
  transition: all 0.5s ease;
  transform: translateX(-120%) translateY(-25%) rotate(45deg);
  z-index: -1;
}

.btn:hover::after {
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

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

.btn.btn-primary:hover {
  box-shadow: 0 8px 15px rgba(93, 105, 242, 0.3);
  color: var(--bs-white) !important;
}

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

.btn.btn-dark:hover {
  color: var(--bs-white) !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: 700;
  font-size: 16px;
  outline: none;
  transition: 0.5s;
  position: relative;
}

.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--bs-secondary);
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  transition: width 0.3s;
}

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

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

.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;
  min-height: 300px;
}

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

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

.carousel-caption h1 {
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.carousel-caption h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem !important;
}

.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 {
    min-height: 250px;
  }
  
  .carousel-item img {
    height: 400px;
  }
  
  .carousel-caption {
    padding: 1rem;
    bottom: 0;
  }
  
  .carousel-caption h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem !important;
  }
  
  .carousel-control-prev, 
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    min-height: 200px;
  }
  
  .carousel-item img {
    height: 400px;
  }
  
  .carousel-caption {
    padding: 0.5rem;
  }
  
  .carousel-caption h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem !important;
  }
  
  .carousel-caption .btn {
    margin-top: 0.5rem;
  }
  
  .carousel-control-prev, 
  .carousel-control-next {
    width: 30px;
    height: 30px;
  }
}

.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-item {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--bs-primary);
}

.services-inner-icon {
  width: 90px;
  height: 90px;
  background: var(--bs-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(93, 105, 242, 0.2);
  transition: all 0.3s ease;
}

.services-item:hover .services-inner-icon {
  transform: rotateY(360deg);
}

.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-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(145deg, #292b33, #373a47);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6rem;
}

.footer-item,
.footer-item a {
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
}

.footer a.btn-link {
  position: relative;
  display: block;
  padding: 5px 0 5px 25px !important;
  transition: all 0.3s ease;
}

.footer a.btn-link:before {
  content: "\f105"; /* FontAwesome arrow icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer a.btn-link:hover {
  padding-left: 30px !important;
}

.footer a.btn-link:hover:before {
  left: 5px;
}

.copyright {
  background-color: rgba(0, 0, 0, 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 */
.logo-text {
  color: var(--bs-white);
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  background: var(--bs-gradient);
  box-shadow: 0 4px 15px rgba(93, 105, 242, 0.2);
  text-transform: uppercase;
  font-size: 2rem;
}

.logo-text:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(93, 105, 242, 0.3);
}

/* 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-secondary);
  margin-bottom: 15px;
  background: rgba(255, 125, 99, 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 {
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#contact .contact-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bs-gradient);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

#contact .contact-box:hover:before {
  opacity: 1;
}

#contact .contact-box:hover i,
#contact .contact-box:hover h4,
#contact .contact-box:hover p,
#contact .contact-box:hover a {
  color: var(--bs-white) !important;
}

#contact .contact-box i {
  transition: all 0.3s ease;
}

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