ul {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}

section {
  padding: 60px 0;
}

img {
  width: 100%;
}



@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* ---------------------  Scroll Top ----------------- */

.scroll-top {
  background: #000;
  width: 50px;
  height: 50px;
  line-height: 48px;
  display: none;
  text-align: center;
  color: #fff;
  position: fixed;
  right: 30px;
  bottom: 80px;
  z-index: 999;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: all 0.2s;
  background: #000;
}

.scroll-top:hover {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #a4a2a1;
  outline: 0;
  box-shadow: unset !important;
}

/* --------------------------------------- Pre Loader ---------------------------------- */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  z-index: 999999;
  display: flex;
}

#preloader .preloader {
  width: 49px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/favicon/favicon-2.png);
}

#preloader .preloader span {
  position: absolute;
  display: inline-block;
  width: 250px;
  height: 250px;
  top: -104px;
  left: -100px;
  border-radius: 50%;
  background-color: #69c1f1;
  -webkit-animation: preloader1 1.3s linear infinite;
  animation: preloader1 1.3s linear infinite;
}

#preloader .preloader span:last-child {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes preloader1 {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes preloader1 {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: unset;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown1;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown1;
}

@keyframes fadeInDown1 {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

* {
  box-sizing: border-box;
}

.style-3 {
  color: #000;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 20px;
  position: relative;
  padding: 10px 50px 10px 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); /*change scale(3) to scale(1)*/
  .bg {
    background: #000;
    width: 30px;
    height: 2px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    &:before,
    &:after {
      content: "";
      height: 2px;
      width: 10px;
      background: #000;
      position: absolute;
      right: -2px;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }
    &:before {
      bottom: 3px;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    &:after {
      top: 3px;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
  }
  &:hover {
    padding-right: 20px;
    color: #fff;
    .bg {
      height: 100%;
      width: 100%;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
      &:before,
      &:after {
        right: 0;
      }
      &:before {
        bottom: 6px;
      }
      &:after {
        top: 6px;
      }
    }
  }
}

/* ///////////// white */

.style-3-white {
  color: #fff;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 20px;
  position: relative;
  padding: 10px 50px 10px 20px;
  transition: all 0.3s;
  transform: scale(1);
}

/* line */
.style-3-white .bg {
  background: #fff;
  width: 30px;
  height: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  z-index: -1;
  transition: all 0.3s;
}

/* arrow lines */
.style-3-white .bg::before,
.style-3-white .bg::after {
  content: "";
  height: 2px;
  width: 10px;
  background: #fff;
  position: absolute;
  right: -2px;
  transition: all 0.3s;
}

.style-3-white .bg::before {
  bottom: 3px;
  transform: rotate(45deg);
}

.style-3-white .bg::after {
  top: 3px;
  transform: rotate(-45deg);
}

/* hover */
.style-3-white:hover {
  padding-right: 20px;
  color: #000;
}

.style-3-white:hover .bg {
  height: 100%;
  width: 100%;
  transform: translate(0, -50%);
  background: #fff;
}

.style-3-white:hover .bg::before,
.style-3-white:hover .bg::after {
  right: 0;
}

.style-3-white:hover .bg::before {
  bottom: 6px;
}

.style-3-white:hover .bg::after {
  top: 6px;
}

.top-header {
  background: #000;
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid #222;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  padding-right: 80px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* pause on hover */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* smooth loop */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.main-header {
  padding: 25px 0;
  background: #000;
  border-bottom: 1px solid #222;
}

/* wrapper */
.logo-wrapper {
  position: relative;
  width: 230px; /* fixed width (important) */
  height: 60px;
  overflow: hidden;
}

.main-logo {
  position: absolute;
  left: 49%;
  transform: translateX(-50%);
  top: 59px;
}

.main-header.sticky .main-logo {
  top: 20px;
}

/* images */
.logo-img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

/* default hidden state (comes from bottom) */
.logo-img {
  transform: translateY(100%);
  opacity: 0;
}

/* active visible */
.logo-img.active {
  transform: translateY(0);
  opacity: 1;
}

.main-header .row {
  align-items: center;
}

.nav-text ul li {
  text-transform: uppercase;
}

.nav-text ul li {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1.5px;
}

.nav-text ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
}

.nav-text ul li a {
  color: #ffff;
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition:
    color 0.3s ease,
    font-weight 0.3s ease;
}

.nav-text ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-text ul li a:hover {
  color: #fff;
}

.nav-text ul li a:hover::after {
  width: 100%;
}

.home-slide h1 {
  font-size: 65px;
  width: 70%;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.home-slide p {
  color: #fff;
  font-size: 22px;
  width: 80%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

section.home {
  background: #000;
  padding: 152px 0;
  min-height: 80vh;
}

.home-slide {
  text-align: center;
}

.hero-text {
  text-align: center;
  color: #fff;
}

.hero-text h1 {
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 10px;
}

#typing-word {
  border-right: 2px solid #fff;
  padding-left: 5px;
}

.hero-text p {
  color: #aaa;
  font-size: 24px;
  width: 80%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.hm-abt {
  padding: 100px 0;
  background: #f5f5f5;
}

.hm-abt .content h5 {
  font-size: 19px;
  color: #000;
  margin-bottom: 5px;
}

.hm-abt .content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hm-abt .content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* button */
.abt-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #7bbf3f;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
}

.abt-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.abt-img img {
  width: 80%;
  border-radius: 20px;
}

/* features */
.features {
  margin-top: 60px;
  border-top: 1px solid #000;
  padding-top: 30px;
}

.feature-box {
  text-align: left;
}

.feature-box span {
  display: inline-block;
  background: #000;
  color: #fff;
  height: 60px;
  width: 60px;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-box h6 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

.feature-box h6 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

.content {
  margin-bottom: 140px;
}

.hm-services {
  background: #000;
  padding: 100px 0;
  color: #fff;
}

/* heading */
.mid-text {
  text-align: center;
  margin-bottom: 60px;
}

.mid-text h5 {
  color: #888;
  font-size: 19px;
  margin-bottom: 10px;
}

.mid-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

h2#white {
  color: #000;
}

.mid-text p {
  color: #aaa;
  max-width: 600px;
  margin: 15px auto 0;
}

/* cards row */
.services-row {
  margin-top: 40px;
}

/* card */
.service-card {
  background: #111;
  padding: 30px;
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
  height: 100%;
}

.service-card:hover::before {
  top: 0;
  left: 0;
}

/* hover lift */
.service-card:hover {
  transform: translateY(-10px);
  background: #1a1a1a;
}

/* icon */
.service-card .icon {
  width: 50px;
  height: 50px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: 0.3s;
}

.service-card .icon i {
  color: #fff;
  font-size: 18px;
}

/* icon hover */
.service-card:hover .icon {
  background: #fff;
}

.service-card:hover .icon i {
  color: #000;
}

/* text */
.service-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  color: #aaa;
  font-size: 14px;
}

.web-btn-white {
  text-align: center;
  padding-top: 40px;
}

section.mid-banner {
  position: relative;
  padding: 120px 0;
  background: url(../images/home/mid-banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

section.mid-banner:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.7;
}

.mid-banner-text h5 {
  color: #fff;
  position: relative;
  font-size: 47px;
  width: 60%;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

section.testimonial {
  padding: 80px 0;
}

.testimonial-head h5 {
  font-size: 19px;
  color: #000;
  margin-bottom: 10px;
}

.testimonial-head p {
  color: #666;
  line-height: 1.7;
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* cards */
.testimonial-card {
  min-width: calc(50% - 10px);
  background: #111;
  padding: 35px 30px;
  border-radius: 12px;
  color: #fff;
  height: 210px;
  width: 100%;
}

.testimonial-card p {
  color: #aaa;
  font-size: 14px;
}

.testimonial-card h6 {
  margin-top: 15px;
  font-weight: 600;
}

/* nav buttons */
.test-nav {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.test-nav button {
  width: 40px;
  height: 40px;
  border: none;
  background: #222;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.test-nav button:hover {
  background: #fff;
  color: #000;
}

/* responsive */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: calc(50% - 10px); /* tablet 2 */
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    min-width: 100%; /* mobile 1 */
  }
}

.stars {
  margin-bottom: 10px;
}

.blog-card {
    background: #111;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    padding: 30px;
    border-radius: 20px;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 180px;
}

.blog-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #aaa;
}

.read-more {
  display: flex;
  margin-top: 0;
  font-size: 17px;
  color: #fff;
  align-items: center;
  gap: 11px;
  padding-top: 30px;
  margin-top: auto; /* 🔥 THIS IS THE KEY */
  padding-top: 30px;
}

.read-more i.fa-arrow-right {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.blog-card:hover .read-more i.fa-arrow-right {
  transform: rotate(333deg); /* same as 333deg style */
}

section.connect {
  background: rgb(245, 245, 245);
  padding: 60px 0;
}

.connect-flex {
  display: flex;
  align-items: center;
}

.connect-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
}

.conct h5 {
  margin: 0;
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* -------- Footer--------- */

.footer {
  background: #000; /* deep blue like your reference */
  padding: 80px 0;
  color: #fff;
  border-bottom: 1px solid #222;
}

.footer-logo img {
  width: 330px;
  margin-bottom: 20px;
}

.footer-head {
  text-align: center;
  margin-bottom: 40px;
}

.footer-text {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 17px;
  width: 60%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #fff;
  color: #000;
}

.footer-links h5 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.footer-links ul {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  border-top: 1px solid #222;
  padding-top: 30px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.copyright {
  text-align: center;
}

.copyright p {
  color: #aaa;
  font-size: 14px;
  margin: 0;
  font-weight: bold;
}

section.bt-footer {
  background: #000;
  padding: 20px 0;
}

/* hide on desktop */
.mobile-header {
  display: none;
}

/* hide offcanvas by default (desktop) */
.offcanvas-menu,
.overlay,
.mobile-header {
  display: none;
}

@media (max-width: 768px) {
  .mobile-header {
    display: block;
  }

  .offcanvas-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: #111;
    padding: 80px 20px;
    transition: 0.4s;
    z-index: 1000;
  }

  .offcanvas-menu.active {
    left: 0;
  }

  .overlay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* --------------------------------------------------------- */
/* ===================== */
/* SECTION */
/* ===================== */
section.work {
  background: #000;
  padding: 100px 0;
  position: relative;
}

/* subtle gradient glow */
section.work::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 600px;
  height: 300px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
  filter: blur(100px);
  z-index: 0;
}

/* ===================== */
/* TABS */
/* ===================== */
.work-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 50px;
  padding: 8px;
  width: fit-content;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.work-tabs li {
  list-style: none;
  padding: 10px 22px;
  border-radius: 40px;
  color: #aaa;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

.work-tabs li.active {
  background: linear-gradient(135deg, #222, #111);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.work-tabs li:hover {
  color: #fff;
}

section.work {
  background: #000;
  padding: 100px 0;
}

/* ===================== */
/* TABS */
/* ===================== */
.work-tabs {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 50px;
  padding: 8px;
  width: fit-content;
  margin: 0 auto;
}

.nav-link:focus,
.nav-link:focus-visible {
  outline: none;
  box-shadow: none;
}

.work-tabs .nav-link {
  color: #aaa;
  border-radius: 30px;
  padding: 10px 20px;
  border: none;
  font-size: 17px;
}

.work-tabs .nav-link.active {
  background: linear-gradient(135deg, #1a1a1a, #111);
  color: #fff;
}

/* ===================== */
/* CARDS */
/* ===================== */
.work-info {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-info h5 {
  font-size: 17px;
  padding: 10px 0;
}

.work-info p {
  font-size: 14px;
  color: #aaa;
}

/* subtle premium feel */
.work-info:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.05);
}

.work-info img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* --------------------- Banner --------------------- */

section.banner-box {
  background: #000;
}

.banner-box-head {
  text-align: center;
}

.banner-box-head h2 {
  color: #fff;
  font-size: 60px;
}

.banner-box-head ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.banner-box-head ul li {
  color: #aaa;
  font-size: 17px;
  font-weight: 500;
  padding-top: 10px;
}

.banner-box-head ul li a {
  color: #fff;
}

/* --------------------- About Page --------------------- */
section.what-we-do {
  background: #000;
  padding: 120px 0;
}

section.about-grid {
  background: #f5f5f5;
  padding: 120px 0;
}

/* layout */
.about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  align-items: start;
}

/* LEFT MAIN */
.about-main h2 {
  color: #000;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-main p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* link */
.about-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

/* RIGHT GRID */
.about-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* cards */
.about-card {
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  transition: all 0.3s ease;
}

.about-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.ab-cd-image {
  margin-bottom: 10px;
}

.ab-cd-image img {
  width: 40px;
}

.about-card h5 {
  color: #000;
  font-size: 16px;
  margin-bottom: 8px;
}

.about-card p {
  color: #000;
  font-size: 13px;
  line-height: 1.6;
}

.about-main h6 {
  color: #777;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* LEFT */
.wwd-left h6 {
  color: #777;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.wwd-left h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 140px;
}

/* RIGHT */
.wwd-top-text {
  color: #aaa;
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* GRID */
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ITEM */
.wwd-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #aaa;
  border-radius: 10px;
  padding: 20px;
}

/* ICON */
.wwd-item .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #212529;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
}
/* TITLE */
.wwd-item h5 {
  color: #fff;
  font-size: 18px;
}

/* DESC */
.wwd-item p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

.wwd-left .web-btn-white {
  text-align: left;
}

/* --------------------- Services Page --------------------- */

section.services-v3 {
  background: #000;
  padding: 120px 0;
}

/* LEFT */
.services-left h6 {
  color: #777;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.services-left h2 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 20px;
}

.services-left p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #fff;
  color: #000;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.service-btn:hover {
  background: #ddd;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.service-box {
  background: linear-gradient(145deg, #0a0a0a, #111);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
  height: 280px;
  margin-bottom: 30px;
}

/* TITLE */
.service-box h5 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.service-box p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* LINK */
.service-box a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}

/* HOVER */
.service-box:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.05);
}

.service-box:hover .read-more i {
  transform: rotate(-45deg) translate(3px, -3px);
}

section.problem-solution {
  background: #fff;
  padding: 80px 0;
}

/* IMAGE */
.ps-image img {
  width: 100%;
  border-radius: 12px;
  filter: grayscale(100%);
  transition: 0.4s;
}

.ps-image img:hover {
  filter: grayscale(0%);
}

/* CONTENT */
.ps-content h6 {
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}

.ps-content h2 {
  color: #000;
  font-size: 34px;
  margin-bottom: 20px;
}

.ps-content p {
  color: #000;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* FEATURE ROW */
.ps-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* FEATURE TEXT */
.ps-feature h5 {
  color: #fff;
  margin-bottom: 5px;
}

.ps-feature p {
  color: #888;
  font-size: 13px;
}

.bdg-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}

/* MAIN WORDS */
.bdg-item {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s;
}

/* DOT */
.bdg-dot {
  font-size: 40px;
  color: #000;
}

/* GRADIENT TEXT EFFECT */
.bdg-item {
  background: linear-gradient(344deg, #fff, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HOVER EFFECT */
.bdg-item:hover {
  transform: translateY(-5px);
  letter-spacing: 2px;
}

/* --------------------- Faq --------------------- */

.faq-section {
  background: #fff;
  padding: 80px 0;
}

.faq-head h6 {
  color: #777;
  margin-bottom: 10px;
}

.faq-head h2 {
  color: #000;
  margin-bottom: 50px;
}

/* accordion */
.accordion-item {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.accordion-button {
  background: #fff;
  color: #000;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #000;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: #000;
  font-weight: 500;
}

.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-radius: 0;
  border: unset;
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
  border: unset;
}

.accordion-button::after {
  display: none; /* remove default arrow */
}

.accordion-body {
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  padding: 20px;
}

/* icon */
.faq-icon {
  width: 20px;
  margin-left: auto;
}

/* remove bootstrap focus */
.accordion-button:focus {
  box-shadow: none;
}

/* --------------------- Contact Us --------------------- */

.contact-left {
  padding: 20px 120px;
  text-align: center;
}

.contact-left h2 {
  color: #000;
  font-size: 32px;
  margin-bottom: 5px;
  line-height: 1.3;
}

.contact-left h2 span {
  color: #000;
  font-weight: bold;
}

.sub-text {
  color: #aaa;
  font-size: 18px;
  margin-bottom: 5px;
}

.desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.form-box {
  padding: 60px 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* row */
.form-row {
  display: flex;
  gap: 15px;
}

/* group */
.form-group {
  width: 100%;
  margin-bottom: 16px;
}

/* labels */
.form-group label {
  font-size: 15px;
  color: #000;
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
  padding-left: 5px;
}

/* inputs */
.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: 0.2s;
}

/* focus */
.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  border-color: #999;
}

/* textarea */
textarea {
  min-height: 110px;
  resize: none;
}

div#arrow {
  position: relative;
}

/* remove default arrow */
div#arrow select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px 40px 12px 14px; /* 👈 right padding for icon */
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  outline: none;
  font-size: 16px;
  font-weight: 500;
}

/* custom arrow */
div#arrow::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 25px;
  top: 52px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #555;
  pointer-events: none;
}

button.submit-btn {
  background: #000;
  color: #fff;
  height: 50px;
  width: 160px;
  border-radius: 5px;
}

.submit-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
}

.submit-info p {
    color: #000;
    font-weight: 500;
    font-size: 17px;
}

.submit-info{
   display:none;
}

.submit-info p {
    color: #000;
    font-weight: 500;
    font-size: 17px;
}

.submit-text {
  display: none;
  font-size: 13px;
  color: #aaa;
  margin-top: 8px;
}

.contact-premium {
  background: #f5f5f5;
  padding: 80px 0;
}

/* heading */
.contact-head h2 {
  color: #000;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: bold;
}

.contact-head p {
  color: #666;
  font-size: 16px;
  margin-bottom: 60px;
}

/* grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* card */
.contact-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  height: 190px;
  width: 100%;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  justify-content: center;
}

/* icon */
.contact-card .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #111;
  transition: 0.3s;
}

.contact-card .icon i {
  color: #fff;
  font-size: 18px;
}

/* text */
.contact-card .text h6 {
  color: #888;
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-card .text p {
  color: #111;
  font-size: 15px;
  margin: 0;
  line-height: 1.4;
}

/* hover */
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.contact-card:hover .icon {
  background: #000;
}

a.contact-card .text {
  text-align: center;
}

.select-down {
  position: relative;
}

.select-down select {
  width: 100%;
  padding-right: 40px; /* 👈 space for icon */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Font Awesome arrow */
.select-down::after {
  content: "\f107"; /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  position: absolute;
  right: 25px;
  top: 70%;
  transform: translateY(-50%);

  pointer-events: none;
  color: #aaa;
  font-size: 14px;
}

.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  margin-right: 6px;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* --------------------- Service detail --------------------- */

.services-detail-head {
  text-align: center;
}

.services-detail-head h5 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 10px;
}

.services-detail-head p {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: #aaa;
  width: 90%;
}

.service-sidebar {
  background: #0d0d0d;
  border-radius: 12px;
  height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  position: sticky;
  top: 100px;
}

.service-sidebar h4 {
  color: #fff;
  margin-bottom: 15px;
}

.service-sidebar ul {
  list-style: none;
  padding: 0;
}

.service-sidebar li {
  position: relative;
  padding: 10px 0 10px 25px; /* 👈 left space for icon */
  border-bottom: 1px solid #222;
  color: #aaa;
  cursor: pointer;
  transition: 0.3s;
}

/* links */
.service-sidebar li a {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* ACTIVE TEXT */
.service-sidebar li.active {
  color: #fff;
}

/* LEFT ICON (Font Awesome f101) */
.service-sidebar li.active::before {
  content: "\f101"; /* 👈 your icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  color: #fff;
  font-size: 14px;
}

/* hover effect (optional but 🔥) */
.service-sidebar li:hover {
  color: #fff;
}

.row.service-row {
  padding-top: 60px;
}

section.services {
  background: #f5f5f5;
}

.row.service-row .about-main {
  margin-bottom: 50px;
}

/* --------------Blog detail--------------------- */
section.blog-details {
  background: #f5f5f5;
}

.bl-bx {
  margin-bottom: 30px;
}
.bl-image {
  margin-bottom: 30px;
}

.bl-bx-main h2 {
  font-size: 20px;
  font-weight: 500;
}

.bl-bx-main {
  margin-bottom: 20px;
}

.bl-image img {
  width: 80%;
}

.blog-detail-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border-radius: 30px;
    gap: 70px;
}

.bl-bx-main p {
    margin-bottom: 10px;
}

.bl-bx-main {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

