.arrow-icon {
  font-size: 22px;
  cursor: pointer;
}
.recentcomments a {
	display: inline !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Wrapper */
.floating-wrapper {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

/* Call button */
.float-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #ff7a00;
  color: #fff;
  border-radius: 50%;
  margin-bottom: 12px;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.float-call:hover {
  background: #9e9e9e;   /* ash / grey */
  color: #fff;
}

/* Social container */
.float-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Social icons */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Brand colors */
.facebook { background: #1877f2; }
.twitter { background: #1da1f2; }
.instagram { background: #e4405f; }
.whatsapp { background: #25d366; }
.youtube { background: #ff0000; }

/* Hover effect */
.social-icon:hover,
.float-call:hover {
  transform: scale(1.1);
  transition: 0.2s ease;
}

body {
            font-family: Arial;
            background: #f5f5f5;
        }

        .container {
            width: 90%;
            margin: auto;
        }

        .project-one__single {
            position: relative;
            overflow: hidden;
        }

        .project-one__img img {
            width: 100%;
            display: block;
        }

        /* Overlay */
        .project-one__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: 0.3s;
}

        .project-one__single:hover .project-one__content {
            opacity: 1;
        }


.project-one__icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

        .project-one__icon-box span {
            font-size: 25px;
            color: #fff;
            background: #E1306C;
            padding: 12px;
            border-radius: 50%;
        }

        /* Swiper arrows */
        .swiper-button-next,
        .swiper-button-prev {
            color: #fff;
            background: #E1306C;
            width: 45px;
            height: 45px;
            border-radius: 50%;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 18px;
            font-weight: bold;
        }

        .swiper {
            padding: 40px 0;
        }
        .project-one {
    background: #ffffff;   /* white background */
    padding: 20px 0;
}

.project-one .container {
    width: 90%;
    margin: auto;
}

.project-one h2 {
    position: relative;
    display: inline-block;
}

.project-one h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #E1306C;
    display: block;
    margin: 10px auto 0;
}

/* Optional: cleaner spacing for slider */
.project-slider {
    padding-bottom: 40px;
}

.project-one__single {
    position: relative;
    overflow: hidden;
    border: 3px solid #ffffff;   /* white border */
    border-radius: 12px;         /* smooth corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* optional nice depth */
}
.main-slider-two__btn-box {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}