@import url("https://fonts.googleapis.com/css2?family=Khula:wght@300;400;600;700;800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --text-font: "Raleway", sans-serif;
  --num-font: "khula";
  --dark-back: #1c1c1c;
  --light-back: whitesmoke;
  --ele-blue: #00bfff;
  --ele-vio: #8a2be2;
  --ele-pink: #ff1493;
  --thgradient: linear-gradient(
    180deg,
    rgba(0, 191, 255, 0.84) 0%,
    rgba(138, 43, 226, 1) 35%,
    rgba(255, 20, 147, 1) 100%
  );
  --twgradient: linear-gradient(
    140deg,
    rgba(0, 163, 217, 0.84) 0%,
    rgb(113, 0, 219) 80%
  );
  --glsmrph-bg: rgba(30, 30, 30, 0.4);
  --glsmrph-filter: blur(15px) saturate(150%);
  --glsmrph-browser: blur(15px) saturate(150%);
  --glsmrph-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

html,
body {
  font-family: var(--text-font);
  background-color: var(--dark-back);
}

.text-white {
  color: whitesmoke;
  border-radius: 0.5rem;
}

.text-blue {
  color: var(--ele-blue);
}

.text-pink {
  color: var(--ele-pink);
}

.numbers {
  font-family: var(--num-font);
}

.links {
  text-decoration: none;
  color: var(--dark-back);
  font-size: 0.8rem;
  padding: 0.8rem 1rem;
  background-color: var(--ele-blue);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.links:hover {
  color: whitesmoke;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px 3px rgba(138, 43, 226, 0.7),
      1px 1px 20px 4px rgba(0, 191, 255, 0.1),
      -1px -1px 20px 4px rgba(255, 20, 147, 0.1);
  }
  100% {
    box-shadow: 0 0 20px 8px rgba(138, 43, 226, 0.9),
      1px 1px 30px 8px rgba(0, 191, 255, 0.3),
      -1px -1px 30px 8px rgba(255, 20, 147, 0.3);
  }
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  font-size: 14px;
  margin-bottom: 15px;
}
.breadcrumbs a {
  text-decoration: none;
  color: var(--ele-pink);
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs span {
  color: var(--ele-blue);
}

/* Nav */
.desk-nav {
  position: relative;
  background-color: var(--dark-back);
  z-index: 200;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(0);
}

/* Sticky অবস্থায় fixed হয়ে যায় */
.desk-nav.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Scroll > 100px হলে slide-in animation হবে */
.desk-nav.slide-in {
  animation: slideDown 0.3s ease forwards;
}

/* Keyframe for slide-down effect */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.hambergerIcon {
  height: 3px;
  width: 35px;
  position: relative;
  border-radius: 50px;
  background-color: var(--ele-blue);
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: 200;
  transition: all ease 0.5s;
}

.hambergerIcon::before,
.hambergerIcon::after {
  content: "";
  position: absolute;
  height: inherit;
  border-radius: inherit;
  background-color: var(--ele-pink);
  margin: auto;
  width: 50%;
  transition: all ease 0.5s;
}

.hambergerIcon::before {
  top: -12px;
  left: 0;
  transform-origin: left;
}

.hambergerIcon::after {
  bottom: -12px;
  right: 0;
  transform-origin: right;
}

.hambergerIcon.openmenu {
  transform: translate(-50%, -50%) rotate(135deg);
}

.hambergerIcon.openmenu::before {
  top: 0;
  transform: translateX(100%) rotate(-90deg);
  border-radius: 0px 10px 10px 0px;
}

.hambergerIcon.openmenu::after {
  bottom: 0;
  transform: translateX(-100%) rotate(-90deg);
  border-radius: 10px 0 0 10px;
}

.menu-slider {
  position: fixed;
  height: 70%;
  width: 90%;
  top: 98px;
  right: 0;
  transform: translateX(110%);
  z-index: 1000;
  transition: transform 0.5s ease;
  background: rgba(30, 30, 30, 0.4);
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.menu-slider.menuactive {
  transform: translateX(0%);
}

.nav-links li a {
  position: relative;
  color: whitesmoke;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s;
}

.nav-links li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--twgradient);
  transition: all 0.5s;
}

.nav-links li a:hover::before {
  width: 100%;
}

.nav-links li a.active::before {
  width: 100%;
}

/* Hero */

.hero-animation {
  position: absolute;
  height: 80vh;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
}

.hero-animation .animation {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

.hero-element {
  position: relative;
  height: 80vh;
  width: 100%;
  background: #1c1c1c8e;
  color: whitesmoke;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 0 1.5rem;
  z-index: 150;
}

.hero-element .headings h1 {
  font-weight: 700;
  font-size: 3.5rem;
}

.hero-element .para {
  font-size: 1rem;
  max-width: 40%;
}

/* .hero-element has removed from every button class underthis line */

.buttons a {
  position: relative;
  text-decoration: none;
  margin-right: 1rem;
  padding: 1rem 2rem;
  background: var(--twgradient);
  color: whitesmoke;
  font-weight: 700;
  border-radius: 10px;
}

.buttons a:nth-child(1)::after {
  content: "\f061";
  position: relative;
  left: 0.5%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.3s;
}

.buttons a:nth-child(2)::after {
  content: "\f2a0";
  position: relative;
  left: 0.5%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.3s;
}

.buttons a:nth-child(1):hover::after {
  left: 1%;
}

.buttons a:nth-child(2):hover::after {
  left: 1%;
}

@media screen and (min-width: 0px) and (max-width: 540px) {
  .hero-element {
    height: 70vh;
  }

  .hero-animation {
    height: 70vh;
    justify-content: center;
  }

  .hero-element .headings h1 {
    font-weight: 700;
    font-size: 1.8rem;
  }
  .para {
    font-size: 0.8rem;
    max-width: 80% !important;
  }

  .buttons a {
    margin-right: 0.5rem;
    padding: 0.8rem 1.2rem;
    font-weight: 500;
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 541px) and (max-width: 915px) {
  .hero-element {
    height: 70vh;
  }

  .hero-animation {
    height: 70vh;
    justify-content: center;
  }

  .hero-element .headings h1 {
    font-weight: 700;
    font-size: 3rem;
  }

  .para {
    font-size: 1.5rem;
    max-width: 70% !important;
  }

  .buttons a {
    margin-right: 1rem;
    padding: 1rem 2rem;
    font-weight: 800;
  }
}

/* About */

.about-body {
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: whitesmoke;
}

.about-body p:nth-child(1) {
  width: fit-content;
  padding: 1rem 2rem;
  color: whitesmoke;
  background: var(--twgradient);
  border-radius: 0.5rem;
}

.hero-about,
.hero-blog {
  height: 40vh;
}

.hero-about .col-12:nth-child(1) {
  z-index: 100;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 90;
}

.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.cta hr {
  color: whitesmoke;
  height: 5rem;
  width: 2px;
  background-color: whitesmoke;
}

.talk-to-us a {
  text-decoration: none;
  color: whitesmoke;
  background-color: var(--ele-blue);
  padding: 0.5rem 2rem;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.talk-to-us a:hover {
  background-color: transparent;
  border: 2px solid var(--ele-blue);
}

.Write-to-us a {
  text-decoration: none;
  color: whitesmoke;
  background-color: transparent;
  padding: 0.5rem 2rem;
  border: 2px solid var(--ele-blue);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.Write-to-us a:hover {
  background-color: var(--ele-blue);
}

.team-members-card {
  background: #35373d;
  box-shadow: var(--glsmrph-shadow);
  backdrop-filter: blur(15px) saturate(150%);
  padding: 1rem;
  border-radius: 1rem;
}

.team-members-card .profile-pic {
  height: 6rem;
  width: 6rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.team-members-card .profile-pic img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.team-members-card-body p {
  color: #bebebe;
}

@media (max-width: 992px) {
  .cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .cta hr {
    transform: rotate(90deg);
  }
}

/* Service */

.service-container {
  background-color: #35373d;
}

.service-container .row:nth-child(1) .col-4 h1 {
  color: var(--ele-blue);
}

.service-container .row:nth-child(1) .col-4 p {
  color: whitesmoke;
}

.service-container a {
  text-decoration: none;
  color: inherit;
}

.service-cards {
  position: relative;
  overflow: hidden;
  height: 13rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: var(--glsmrph-bg);
  box-shadow: var(--glsmrph-shadow);
  backdrop-filter: blur(15px) saturate(150%);
  transform: translateY(0);
  cursor: pointer;
  border: 1px solid rgb(67, 67, 67);
  transition: all 0.3s;
}

.service-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(0, 163, 217, 0.45) 0%,
    rgba(113, 0, 219, 0.55) 80%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.service-cards:hover::before {
  opacity: 1;
}

.service-cards:hover {
  transform: translateY(-10px);
}

.service-cards > * {
  position: relative;
  z-index: 1;
}

.service-cards .icon {
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  background-color: whitesmoke;
  margin-bottom: 1rem;
}

.service-cards .icon i {
  font-size: 1.5rem;
  font-weight: 900;
  transition: transform 0.4s ease, color 0.4s ease;
}

.service-cards:hover .icon i {
  transform: scale(1.15);
  background: var(--twgradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.service-cards h6 {
  font-size: 1.2rem;
  font-weight: 700;
  color: whitesmoke;
}

.service-cards p {
  font-weight: 500;
  font-size: 0.8rem;
  margin: 0;
  color: whitesmoke;
}

.service-extended-cards {
  position: relative;
  overflow: hidden;
  height: 13rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: var(--glsmrph-bg);
  box-shadow: var(--glsmrph-shadow);
  backdrop-filter: blur(15px) saturate(150%);
  cursor: pointer;
  border: 1px solid rgb(67, 67, 67);
}

.service-extended-cards-content {
  position: relative;
  z-index: 1;
}

.service-extended-cards-content ul {
  list-style-type: square;
  font-size: 0.9rem;
}

.service-extended-cards-content ul li::marker {
  font-size: 1.1rem;
}

.service-extended-cards::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2%;
  top: 0;
  left: 0;
  background: linear-gradient(
    140deg,
    rgba(0, 163, 217, 0.45) 0%,
    rgba(113, 0, 219, 0.55) 80%
  );
  z-index: 0;
  transition: all 0.3s;
}

.service-extended-cards:hover::before {
  width: 100%;
}

/* Technologies */
.tech-carousel-container {
  margin-top: 3rem;
  width: 100%;
  display: inline-flex;
  flex-wrap: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    black 128px,
    black calc(100% - 128px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    black 128px,
    black calc(100% - 128px),
    transparent 100%
  );
}

.tech-carousel-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: infinite-scroll 10s linear infinite;
}

.tech-carousel-logos li {
  margin-left: 2rem;
  margin-right: 2rem;
  flex-shrink: 0;
}

.tech-carousel-logos li img {
  max-width: 5rem;
  max-height: 5rem;
}

.tech-carousel-logos li img[alt="logo"] {
  filter: invert(1) grayscale(50%) brightness(100%);
}

@keyframes infinite-scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (min-width: 0px) and (max-width: 540px) {
  .tech-carousel-logos li img {
    max-width: 3rem;
    max-height: 3rem;
  }
}

@media screen and (min-width: 950px) and (max-width: 1100px) {
  .service-cards {
    height: 14rem;
  }
}

/* Process */
.process-section {
  background-color: #35373d;
}

.process-flow-container {
  gap: 5rem;
  padding-bottom: 20px;
}

.process-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 5px;
}

.process-step {
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
  position: relative;
  z-index: 10;
}

.step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #6c757d;
  background-color: #e9ecef;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-number.active {
  color: #fff;
  background: var(--twgradient);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.4);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .process-flow-container {
    gap: 1rem;
  }
}

/* Domain Details */

.custom-icon-grid {
  color: #f5f5f5;
}

.custom-icon-grid .col-6,
.custom-icon-grid .col-md-4,
.custom-icon-grid .col-lg-2 {
  padding: 0;
}

.icon-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1rem;
  height: 100%;
  min-height: 150px;
  border-right: 1px solid rgba(245, 245, 245, 0.1);
  border-bottom: 1px solid rgba(245, 245, 245, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.icon-card:hover {
  background-color: #35373d;
}

.icon-card i {
  opacity: 0;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
  animation: fadeIcons 5s ease-out infinite forwards;
}

@keyframes fadeIcons {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.icon-card p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .custom-icon-grid .col-lg-2:nth-child(6n) .icon-card,
  .custom-icon-grid .col-lg-2:nth-child(12n) .icon-card {
    border-right: none;
  }
  .custom-icon-grid .col-lg-2:nth-child(n + 7) .icon-card {
    border-bottom: none;
  }
}

/* Review */

.review-container .cust-profile {
  max-width: 8rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.review-container .cust-profile img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.testimonial-card {
  margin-bottom: 30px;
}
.speech-bubble {
  background-color: whitesmoke;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid whitesmoke;
}
.profile-info {
  max-width: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  left: 12%;
}
.profile-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #e9ecef;
}
.profile-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0;
}
.profile-title {
  font-size: 0.9rem;
  color: #6c757d;
}

.review-swiper-pagination {
  width: fit-content !important;
}

.review-swiper-pagination .swiper-pagination-bullet {
  background-color: whitesmoke;
  height: 3px;
  width: 2rem;
  border-radius: 3px;
}

.review-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--ele-pink);
}

.review-swiper-button-next,
.review-swiper-button-prev {
  background-color: var(--basecolor);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 3px solid var(--ele-pink);
}

.review-swiper-button-next:after,
.review-swiper-button-prev:after {
  font-size: 16px;
  color: var(--ele-blue);
}

@media (max-width: 991px) {
  .review-container-header .col-12:nth-child(1) .cust-profile {
    max-width: 5rem;
  }
  .review-container-header .col-12:nth-child(1) h2 {
    font-size: 1.2rem;
  }
  .review-container-header .col-12:nth-child(2) {
    margin-top: 2rem;
    justify-content: start !important;
  }
  .review-container-header .col-12:nth-child(2) h1 {
    font-size: 1.2rem;
  }
  .review-container-header .col-12:nth-child(2) p {
    font-size: 0.8rem;
  }
}

/* Blog */

.blog-container h6 {
  width: fit-content;
  padding: 1rem 3rem;
  background: var(--twgradient);
  border-radius: 0.5rem;
}

.blog-container,
.blog-swiper {
  position: relative !important;
  width: 100%;
}

.blog-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.blog-swiper-button-next,
.blog-swiper-button-prev {
  background-color: var(--basecolor);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 3px solid var(--ele-pink);
}

.blog-swiper-button-next:after,
.blog-swiper-button-prev:after {
  font-size: 16px;
  color: var(--ele-blue);
}

.blog-card {
  height: 30rem;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background-color: whitesmoke;
}

.blog-card .img-container {
  position: relative;
  height: 15rem;
}

.blog-card .img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog-card .tag-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #fff;
  color: #000;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

.blog-card-body {
  background-color: whitesmoke;
}

.blog-card-body h5 {
  font-weight: 700;
  line-height: 1.4;
  color: #212529;
  margin-bottom: 10px;
}

.blog-card-text {
  color: var(--dark-back);
}

.blog-card-footer {
  background-color: whitesmoke;
  border-top: none;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #6c757d;
}

.blog-card-footer a {
  text-decoration: none;
  color: var(--ele-pink);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.blog-card-footer a:hover {
  color: var(--ele-blue);
  font-size: 0.9rem;
}

.blog-swiper-pagination {
  top: 1rem;
  width: fit-content !important;
}

.blog-swiper-pagination .swiper-pagination-bullet {
  background-color: whitesmoke;
  height: 3px;
  width: 2rem;
  border-radius: 3px;
}

.blog-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--ele-pink);
}

@media (max-width: 992px) {
  .blog-container h6 {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
  }
  .blog-container .row .col-12 h1 {
    font-size: 1.3rem;
  }
}

.blog-search {
  position: absolute;
  height: 100%;
  width: 3rem;
  top: 0;
  right: 12px;
  border-radius: 0 12px 12px 0;
  border-color: whitesmoke;
  background-color: var(--ele-blue);
  color: whitesmoke;
}

/* Portfolio */

.portfolio-search {
  position: absolute;
  height: 100%;
  width: 3rem;
  top: 0;
  right: 12px;
  border-radius: 0 12px 12px 0;
  border-color: whitesmoke;
  background-color: var(--ele-blue);
  color: whitesmoke;
}

.project-card {
  height: 25rem;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--glsmrph-bg);
  box-shadow: var(--glsmrph-shadow);
  backdrop-filter: blur(15px) saturate(150%);
  transform: translateY(0);
  cursor: pointer;
  border: 1px solid rgb(67, 67, 67);
  transition: all 0.3s;
}

.card-img-top {
  height: 10rem !important;
  width: 100%;
  object-fit: cover;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(0, 163, 217, 0.45) 0%,
    rgba(113, 0, 219, 0.55) 80%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card > * {
  position: relative;
  z-index: 1;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: whitesmoke;
}

.project-description {
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0;
  color: whitesmoke;
}

.project-type {
  margin-top: 1rem;
  padding: 0.2rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: whitesmoke;
  width: fit-content;
  border-radius: 0.5rem;
  background-color: var(--ele-pink);
}

.project-card-btn {
  width: 100%;
  font-weight: 500;
  font-size: 0.9rem;
  color: whitesmoke;
  border: 1px solid rgb(67, 67, 67);
}

.project-card-btn:hover {
  color: whitesmoke;
  border: 1px solid whitesmoke;
}

/* Custom Form Styling */

.custom-input,
.custom-textarea {
  border-radius: 12px;
  padding: 12px 15px;
  background-color: transparent;
  border-color: whitesmoke;
  box-shadow: none;
  color: var(--ele-blue);
}

.custom-input:focus,
.custom-textarea:focus {
  color: var(--ele-blue);
  background-color: transparent;
  border-color: var(--ele-blue);
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.project-type-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.budget-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .budget-group {
    margin-top: 0;
    justify-content: flex-end;
  }
}

.custom-radio-label {
  border-radius: 50px !important;
  padding: 8px 18px;
  font-size: 0.9rem;
  color: var(--ele-blue);
  border-color: whitesmoke;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}

.btn-check:checked + .custom-radio-label {
  color: whitesmoke;
  background: var(--twgradient);
  border-color: var(--dark-back);
  box-shadow: none;
}

.custom-radio-label:hover {
  background: var(--twgradient);
  color: whitesmoke;
  border-color: whitesmoke;
}

.custom-btn-dark {
  color: whitesmoke;
  border-radius: 10px;
  padding: 10px 40px;
  font-weight: bold;
  background-color: transparent;
  border-color: var(--ele-blue);
  transition: all 0.3s;
}

.custom-btn-dark:hover {
  background-color: var(--ele-blue);
  border-color: var(--ele-blue);
}

.custom-btn-outline-dark {
  border-radius: 10px;
  padding: 10px 40px;
  font-weight: bold;
  color: var(--ele-blue);
  border-color: var(--ele-blue);
}

.custom-btn-outline-dark:hover {
  border-color: var(--ele-blue);
  color: whitesmoke;
}

.contact-info p {
  font-size: 1.1rem;
}

.form-check-input {
  background-color: transparent;
  border: 2px solid var(--ele-blue);
}
.form-check-input:checked {
  background: var(--ele-pink);
  border-color: var(--ele-pink);
}

/* Footer */
footer {
  background: var(--twgradient);
}

footer h4 {
  font-weight: 600;
  color: whitesmoke;
  margin-bottom: 1rem;
}

.social {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-icon {
  position: relative;
  text-decoration: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(247, 247, 247);
  border-radius: 50%;
  color: var(--dark-back);
  box-shadow: 0px 0px 20px #00000051, inset 0px 0px 0px #ffffff7a;
  overflow: hidden;
}

.social-icon i {
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-icon:hover i {
  scale: 1.1;
  color: white;
}
.social-icon::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: 90%;
  left: -110%;
  transform: rotate(45deg);
  background: var(--twgradient);
  background: var(--ele-pink);
}
.social-icon:hover::before {
  animation: socialhandel-animation 0.5s 1 forwards;
}
@keyframes socialhandel-animation {
  0% {
    top: 90%;
    left: -110%;
  }
  50% {
    top: -30%;
    left: 15%;
  }
  100% {
    top: -10%;
    left: -10%;
  }
}

.footer-list,
.footerlist-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-list li {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
}

.footer-list li a,
.footerlist-contact li a {
  position: relative;
  text-decoration: none;
  color: whitesmoke;
  padding: 0.5rem 0;
  transition: all 0.3s;
}

.footer-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  border-radius: 2px;
  background-color: var(--ele-vio);
  transition: all 0.3s;
}

.footer-list li a:hover::after {
  width: 100%;
}

.footer-list li a:hover,
.footerlist-contact li a:hover {
  color: var(--ele-pink);
}

footer .row:last-child {
  font-weight: 500;
  color: whitesmoke;
}
