/** @format */
/** @format */
* {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

.bg-dark {
  background-color: #000 !important;
}

html {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
  -moz-scroll-behavior: smooth;
}
html body {
  font-family: "Open Sans", sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
html body a {
  color: black;
  text-decoration: none;
}
html body ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
html body #top {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  position: fixed;
  top: -60px;
  right: 25px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: #025add;
  opacity: 0.7;
  z-index: 9999;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
html body #top .top {
  font-size: 20px;
  color: white;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
html body #top:hover .top {
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
}

::-webkit-scrollbar {
  width: 0;
}

canvas {
  display: block;
  aspect-ratio: auto 1314/957;
}

#particles-js {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.header {
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding-bottom: 50px;
}
.header .title {
  color: #025add;
  font-size: 34px;
}
.header .para {
  color: #b8651d;
}

.popup-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  cursor: zoom-out;
}

.popUp {
  position: fixed;
  padding: 40px;
  width: 850px;
  z-index: 2001;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .popUp {
    width: 370px;
  }
}
.popUp img {
  max-width: 100%;
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -ms-transition: 0.25s;
  -o-transition: 0.25s;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  cursor: grab;
}
.popUp img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/** @format */
.landing .letters .btn-custom {
  --button-bg: none;
  font-size: 14px;
  margin-right: 20px;
  margin-top: 20px;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 36px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
  background: var(--button-bg);
  color: var(--button-fg, inherit);
}
@media (prefers-reduced-motion: no-preference) {
  .landing .letters .btn-custom {
    --_percentage: calc(100% / var(--ripples, 1));
    --ripple-speed: 2s;
    background: linear-gradient(var(--button-bg), var(--button-bg)) padding-box, repeating-conic-gradient(from var(--gradient-angle), transparent, var(--button-bg) calc(var(--_percentage) * 0.5), transparent var(--_percentage)) border-box;
    /*animation: var(--ripple-speed) ripple linear infinite;*/
  }
  .landing .letters .btn-custom::before {
    content: "";
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    width: 150%;
    aspect-ratio: 1;
    background: linear-gradient(transparent, hsla(0, 0%, 100%, 0.1), transparent);
    /*animation: calc(var(--ripple-speed) * 3 / var(--ripples)) shimmer linear infinite;
    pointer-events: none;*/
  }
  @keyframes ripple {
    to {
      --gradient-angle: 360deg;
    }
  }
  @keyframes shimmer {
    to {
      rotate: 360deg;
    }
  }
}

@media (prefers-reduced-motion: no-preference) {
  @property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
}
@keyframes up-and-down {
  0%, 100% {
    top: 0;
  }
  50% {
    top: -40px;
  }
}
* {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

header {
  color: white !important;
  height: 88px;
  padding-top: 5px;
}
@media (max-width: 767px) {
  header {
    padding: 20px 0;
  }
}
header nav .navbar-brand img {
  width: 180px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  margin-right: 50px;
}
@media (max-width: 991px) {
  header nav .navbar-brand img {
    margin-right: 420px;
  }
}
@media (max-width: 767px) {
  header nav .navbar-brand img {
    margin-right: 250px;
  }
}
@media (max-width: 528px) {
  .navbar-brand {
    width: 66% !important;
  }
  header nav .navbar-brand img {
    margin-right: 150px;
    width: 360px !important;
  }
}
@media (max-width: 414px) {
  header nav .navbar-brand img {
    margin-right: 50px;
  }
}
header nav .navbar-brand img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
header nav .navbar-toggler {
  margin: 0 -26px 0 50px !important;
}
header nav .navbar-toggler .fa-sliders {
  color: white !important;
}
@media (max-width: 991px) {
  header nav .navbar-collapse {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    position: absolute; /* Ensure this is set */
    top: 100%; /* Position the collapsed menu below the navbar */
    left: 0;
    width: 100%;
  }
}
header nav .navbar-collapse ul li {
  margin: 0 6px;
}
header nav .navbar-collapse ul li a {
  font-weight: 800 !important;
  color: white;
}
@media (max-width: 991px) {
  header nav .navbar-collapse ul li a {
    color: black !important;
  }
}
header nav .navbar-collapse ul li a.active, header nav .navbar-collapse ul li a:hover, header nav .navbar-collapse ul li a:focus {
  color: #025add !important;
}
header nav .navbar-collapse ul li.dropdown ul li a {
  color: rgba(128, 128, 128, 0.829) !important;
  font-weight: normal !important;
  padding: 8px 18px;
  font-size: 14px !important;
}
header nav .navbar-collapse ul li.dropdown ul li a:hover {
  color: #0c6de0 !important;
  background-color: transparent;
}
header nav .get-quotes {
  margin: 0 16px 0 30px !important;
  height: 45px;
  padding: 0 18px;
}
header nav .get-quotes a {
  color: white;
  font-weight: 600 !important;
  font-size: 14px !important;
}
@media (max-width: 992px) {
  header nav .get-quotes {
    margin-left: 0px !important;
  }
}
@media (max-width: 767px) {
  header nav .get-quotes {
    width: 90%;
    margin-bottom: 10px !important;
  }
}
header nav [id=darkmode-button] {
  background-color: #e4e3e3;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-left: 30px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  header nav [id=darkmode-button] {
    width: 90%;
    border-radius: 50px !important;
    -webkit-border-radius: 50px !important;
    -moz-border-radius: 50px !important;
    -ms-border-radius: 50px !important;
    -o-border-radius: 50px !important;
    margin-left: 0px;
  }
}
header nav [id=darkmode-button]:hover svg {
  color: #025add !important;
}
header nav [id=darkmode-button]:hover svg.fa-sun {
  color: #ffc107 !important;
}
header nav [id=darkmode-button] svg {
  color: black !important;
}
header nav [id=darkmode-button]:hover {
  background-color: #d5d5d5 !important;
}



.landing {
  background: #000;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
  max-height: 100vh;
  color: white;
}
.landing .overlay.bg-dark {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 999;
  margin-top: 0;
  background-color: #000;
}
.landing .letters {
  position: absolute;
  top: 53%;
  left: 50%;
  padding: 40px 35px;
  z-index: 1002;
  max-width: 1100px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  margin-left: 10px;
}
@media (max-width: 992px) {
  .landing .letters {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    text-align: center;
  }
}
.landing .letters h2 {
  font-weight: 650;
  margin-bottom: 22px;
  font-size: 41px !important;
}
@media (max-width: 767px) {
  .landing {
    background-size: 720px;
    background-position: 10% 0%;
  }
  .landing .letters h2 {
    font-size: 30px !important;
  }
}
.landing .letters h2 span {
  color: #025add;
}
.landing .letters p {
  font-size: 16px;
  margin-bottom: 8px;
  padding-right: 30px;
}
.landing .letters .social a {
  margin-right: 25px;
}
.landing .letters .social a svg {
  font-size: 14px;
  color: #025add;
}
@media (max-width: 767px) {
  .landing .letters .social a svg {
    color: white;
    font-size: 16px;
  }
}
.landing .letters .buttons button {
  padding: 15px 25px !important;
}
@media (max-width: 992px) {
  .landing .letters .buttons {
    margin: left;
  }
}

.services {
  padding: 100px 0 0 0 !important;
}
.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 10px 30px;
  padding: 0 50px 0 40px;
}
.services .container div {
  text-align: center;
  padding: 20px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  box-shadow: 0 1px 20px rgba(82, 90, 101, 0.1);
  margin-bottom: 15px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  position: relative;
  z-index: 1004;
}
.services .container div::before, .services .container div::after {
  content: "";
  position: absolute;
  width: 1px;
  background-color: #025add;
  transition: 1s;
  height: 0;
}
.services .container div::before {
  left: 0;
  bottom: 5px;
}
.services .container div::after {
  top: 5px;
  right: 0;
}
.services .container div:hover {
  opacity: 1;
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
}
.services .container div:hover::before, .services .container div:hover::after {
  height: calc(100% - 10px);
}
.services .container div img {
  width: 80px;
}
.services .container div h4 {
  color: #025add;
  margin: 29px 0 20px;
  font-size: 26px;
  cursor: pointer;
}
.services .container div p {
  color: #3a3a3a;
}

.about-us {
  padding: 100px 0 0;
}
.about-us img {
  width: 60px;
  position: relative;
  z-index: 1004;
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -ms-transition: 0.25s;
  -o-transition: 0.25s;
}
.about-us img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.about-us .box {
  margin-bottom: 25px;
}
.about-us .text {
  width: 78%;
  display: inline-block;
}
.about-us .text p {
  color: #3a3a3a;
}
.about-us .left {
  text-align: right;
}
.about-us .left img {
  float: right;
  margin-left: 15px;
}
.about-us .center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us .center img {
  width: 300px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}
@media (min-width: 992px) {
  .about-us .center img {
    animation: up-and-down 2s linear infinite;
    -webkit-animation: up-and-down 2s linear infinite;
  }
}
.about-us .right img {
  float: left;
  margin-right: 15px;
}

.about-us img {
  width: 60px;
  transition: 0.25s;
}
.about-us img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.about-us .box {
  margin-bottom: 25px;
}
.about-us .text {
  width: 78%;
  display: inline-block;
}
.about-us .text p {
  color: #3a3a3a;
}
.about-us .left {
  text-align: right;
}
.about-us .left img {
  float: right;
  margin-left: 15px;
}
.about-us .center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us .center img {
  width: 300px;
}
.about-us .right img {
  float: left;
  margin-right: 15px;
}

.protofolio {
  padding: 100px 0 0;
}
.protofolio .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.protofolio .buttons button {
  margin: 10px;
  font-size: 18px;
  padding: 8px 20px;
}
@media (max-width: 767px) {
  .protofolio .buttons button {
    margin: 5px;
    font-size: 14px;
    padding: 5px 9px;
  }
}
.protofolio .photos {
  margin-top: 30px;
}
.protofolio .photos .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 30px;
  padding: 30px;
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -ms-transition: 0.25s;
  -o-transition: 0.25s;
}
.protofolio .photos .container div {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}
.protofolio .photos .container div img {
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  cursor: zoom-in;
}
.protofolio .photos .container div img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.pricing {
  padding: 100px 0 40px;
}
.pricing .container {
  padding: 0 40px;
}
.pricing .row .card {
  box-shadow: 0 1px 20px rgba(82, 90, 101, 0.1);
  border: none;
  padding: 60px 20px 40px 20px;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  margin-bottom: 20px;
}
.pricing .row .card:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.pricing .row .card:hover li .fa-circle-check {
  color: #025add;
}
.pricing .row .card:hover li .fa-circle-xmark {
  color: red;
}
.pricing .row .card h2 {
  font-size: 30px;
  padding: 0px 10px 20px;
}
.pricing .row .card h4 {
  font-size: 50px;
}
.pricing .row .card .option ul li {
  padding: 8px 5px;
  font-weight: 300;
}
.pricing .row .card .option ul li svg {
  font-weight: 100;
}
.pricing .row .card button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 25px;
  margin: 8px auto;
}

.testimonials {
  padding: 90px 0;
}
.testimonials .container .swiper {
  position: relative;
  width: 100%;
  height: 100%;
}
.testimonials .container .swiper .swiper-slide .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 0px;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px rgba(82, 90, 101, 0.1);
  width: 345.333px;
  margin-bottom: 30px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.testimonials .container .swiper .swiper-slide .testimonial-item:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  box-shadow: 0 1px 30px rgba(82, 90, 101, 0.1);
  -webkit-box-shadow: 0 1px 30px rgba(82, 90, 101, 0.1);
  -moz-box-shadow: 0 1px 30px rgba(82, 90, 101, 0.1);
  -ms-box-shadow: 0 1px 30px rgba(82, 90, 101, 0.1);
  -o-box-shadow: 0 1px 30px rgba(82, 90, 101, 0.1);
}
.testimonials .container .swiper .swiper-slide .testimonial-item .info-box {
  min-width: 276px;
}
.testimonials .container .swiper .swiper-slide .testimonial-item .info-box .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}
.testimonials .container .swiper .swiper-slide .testimonial-item .info-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #025add;
}
.testimonials .container .swiper .swiper-slide .testimonial-item .info-box h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .container .swiper .swiper-slide .testimonial-item .info-box .stars {
  margin: 7px 0;
  font-size: 15px;
}
.testimonials .container .swiper .swiper-slide .testimonial-item .info-box .stars .filled {
  color: #ffc107;
}
.testimonials .container .swiper .swiper-slide .testimonial-item p {
  font-size: 17px;
  font-style: italic;
  margin: 15px auto 15px auto;
  color: #3a3a3a;
}
.testimonials .container .swiper .swiper-slide .testimonial-item p svg {
  color: #025add;
}
.testimonials .container .swiper .swiper-slide .testimonial-item p svg::before {
  content: "\f6b0";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1.6;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
}
.testimonials .container .swiper .swiper-slide .testimonial-item p svg.fa-quote-left {
  margin-right: 5px;
  font-size: 20px;
}
.testimonials .container .swiper .swiper-slide .testimonial-item p svg.fa-quote-right {
  margin-left: 5px;
  font-size: 20px;
}

.status {
  padding: 130px 0;
  background: url(../images/hero-bg.png) center left;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
  color: white;
}
.status::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.6;
}
.status .container .box {
  text-align: center;
  position: relative;
  z-index: 2;
}
.status .container .box img {
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -ms-transition: 0.25s;
  -o-transition: 0.25s;
  cursor: pointer;
}
.status .container .box img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.status .container .box span {
  display: block;
  font-size: 30px;
  margin: 6px 0;
}
.status .container .box h4 {
  color: #025add;
}
.status .container .box p {
  font-size: 15px;
}

.clients {
  padding: 100px 0;
}
.clients .clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.clients .clients-slider .swiper-wrapper {
  display: flex;
  transition: transform ease-in-out;
  -webkit-transition: transform ease-in-out;
  -moz-transition: transform ease-in-out;
  -ms-transition: transform ease-in-out;
  -o-transition: transform ease-in-out;
}
.clients .clients-slider .swiper-wrapper .swiper-slide {
  flex: 0 0 auto;
  width: 20%;
  margin-right: 15px;
}
.clients .clients-slider .swiper-wrapper .swiper-slide img.img-fluid {
  display: block;
  width: 90%;
  height: auto;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: filter 0.25s;
  -webkit-transition: filter 0.25s;
  -moz-transition: filter 0.25s;
  -ms-transition: filter 0.25s;
  -o-transition: filter 0.25s;
}
.clients .clients-slider .swiper-wrapper .swiper-slide:hover img.img-fluid {
  filter: none;
  -webkit-filter: none;
}

.team {
  padding: 100px 0;
  background-color: #f8f8f8;
}
.team .container .box {
  text-align: center;
  margin-bottom: 20px;
}
.team .container .box img {
  width: 90%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  cursor: pointer;
}
.team .container .box img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.team .container .box h5 {
  margin: 20px 0;
  color: #025add;
  font-weight: 500;
}
.team .container .box p {
  margin-top: -17px;
  font-size: 14px;
  font-style: italic;
  color: #3a3a3a;
}
.team .container .box .social a {
  margin: 0 4px;
  color: #025add;
  border-radius: 50%;
  border: 2px solid #c9c6c6;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding: 4px 6px;
  font-size: 14px;
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -ms-transition: 0.25s;
  -o-transition: 0.25s;
}
.team .container .box .social a:hover {
  border-color: #025add;
}

.faqs {
  padding: 100px 0;
}
.faqs .container {
  padding: 0 40px;
}
.faqs .container .accordion-item {
  overflow: hidden;
  margin-top: 20px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border: 1px solid rgba(221, 221, 221, 0.5764705882);
  background-color: #f8f8f8;
}
.faqs .container .accordion-item .accordion-header {
  border: none;
  padding: 6px 0;
}
.faqs .container .accordion-item .accordion-header button {
  background-color: #f8f8f8;
  color: #025add;
}
.faqs .container .accordion-item .accordion-header button::after {
  color: #025add !important;
}
.faqs .container .accordion-item .accordion-header button span svg {
  padding-right: 10px;
}
.faqs .container .accordion-item .accordion-body {
  border: none;
  padding: 40px;
  line-height: 1.8;
}
.faqs .accordion-button:focus,
.faqs .accordion-button:active {
  box-shadow: none;
  outline: none;
}

.discuss {
  padding: 150px 0;
  background: url(../images/hero-bg.png) center left;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
  color: white;
}
.discuss::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.6;
}
.discuss .container {
  text-align: center;
  position: relative;
  z-index: 2;
}
.discuss .container p {
  margin: 22px 0 27px;
  font-weight: 500;
}
.discuss .container button {
  margin: auto;
  padding: 12px 50px;
  font-weight: 600;
  letter-spacing: 1px;
}

.blogs {
  padding: 100px 0 0;
}
.blogs .container {
  padding: 0 40px;
}
.blogs .container .card {
  border: 1px solid #f3f3f3;
  margin-bottom: 20px;
  box-shadow: 0 1px 20px rgba(82, 90, 101, 0.1);
}
.blogs .container .card .box {
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.blogs .container .card .box img {
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  cursor: crosshair;
}
.blogs .container .card .box img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.blogs .container .card .card-body {
  padding: 20px 25px;
}
.blogs .container .card .card-body p {
  padding: 0;
  margin: 0;
  color: rgba(58, 58, 58, 0.6588235294);
}
.blogs .container .card .card-body .card-text {
  color: #025add;
  padding: 10px 0;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.2;
}
.blogs .container .card .card-body .card-text:hover {
  color: #3a3a3a;
}
.blogs .container .card .card-body p:last-of-type {
  font-size: 14px;
}

.contact-us {
  padding: 100px 0;
}
.contact-us .container {
  padding: 0 40px;
}
.contact-us form [class=input-group-text] {
  border: 1px solid #f2f2f2;
  background-color: #f2f2f2;
}
.contact-us form input,
.contact-us form textarea {
  width: 100%;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border: 1px solid #f2f2f2;
  background-color: #f2f2f2;
}
.contact-us form input {
  max-height: 55px;
}
.contact-us form textarea {
  resize: none;
}
.contact-us form button {
  padding: 10px 30px;
}

footer {
  padding: 50px 0;
  background: url(../images/hero-bg.png) center left;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
  color: white;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.8;
  z-index: 1;
}
footer .container {
  position: relative;
  z-index: 2;
}
footer .container .footer-logo img {
  width: 200px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  margin-bottom: 30px;
}
footer .container .footer-logo img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
footer .container .footer-text p {
  font-size: 14px;
  line-height: 2;
}
footer .container .footer-social-icon {
  margin-bottom: 50px;
}
footer .container .footer-social-icon span {
  color: #025add;
  font-size: 20px;
  display: block;
}
footer .container .footer-social-icon a {
  margin-right: 15px;
}
footer .container .footer-social-icon a svg {
  margin-top: 25px;
  color: white;
  font-size: 18px;
}
footer .container .footer-column {
  margin-bottom: 30px;
}
footer .container .footer-column h3 {
  font-size: 20px;
  color: #025add;
  margin-bottom: 20px;
}
footer .container .footer-column ul li {
  margin: 10px 0;
}
footer .container .footer-column ul li a {
  color: white;
  font-weight: normal !important;
  font-size: 14px;
}
footer .container .footer-column ul li a:hover {
  color: #025add;
}
footer .container .footer-widget h3 {
  font-size: 20px;
  color: #025add;
  margin-bottom: 20px;
}
footer .container .footer-widget .footer-text svg {
  font-size: 16px;
  margin-right: 4px;
}
footer .container .footer-widget form {
  position: relative;
}
footer .container .footer-widget form input {
  display: block;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding: 17px 30px;
  width: 100%;
  background-color: #ddd;
  outline: none;
  border: none;
}
footer .container .footer-widget form button {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  outline: none;
  border: none;
}
footer .container .footer-widget form button svg {
  font-size: 50px;
  color: #0088cc;
}
footer .container .copyright-text {
  font-size: 14px;
  margin-top: 30px;
}
footer .container .copyright-text span {
  color: #025add;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */



        .gadget-container {
            position: relative;
            width: 500px;
            height: 380px;
            margin-left: 40px;
        }

        /* Main Gadget Body */
        .gadget-body {
            position: relative;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 30px 30px 30px 30px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            overflow: hidden;
        }

        /* RGB Light Strip */
        .rgb-strip {
            position: absolute;
            top: 8px;
            left: 8px;
            right: 8px;
            bottom: 8px;
            border-radius: 24px;
            background: #9c9793;
            background-size: 400% 400%;
            animation: rgbGlow 12s ease infinite;
            z-index: 1;
            filter: blur(8px);
            opacity: 0.8;
        }

        /* Main Display */
        .display {
            position: absolute;
            top: 6px;
            left: 6px;
            right: 6px;
            bottom: 6px;
            background: rgba(0, 0, 0, 0.95);
            border-radius: 20px;
            z-index: 2;
            overflow: hidden;
            box-shadow: 
                inset 0 0 40px rgba(0, 0, 0, 0.8),
                0 0 30px rgba(0, 0, 0, 0.6);
        }

        /* Side Button */
        .side-button {
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            z-index: 3;
            box-shadow: 
                5px 0 15px rgba(0, 0, 0, 0.2),
                inset 2px 0 5px rgba(0, 0, 0, 0.1);
        }

        .side-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 4px;
            height: 20px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 2px;
        }

        /* Chat Container */
        .chat-container {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            border-radius: 20px !important;
            background: transparent;
        }
        .hud-grid {
          border-radius: 20px !important;
        }
        /* Chat Header */
        .chat-header {
            padding: 20px 20px 0px 20px;
            background: rgba(20, 20, 30, 0.7);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0px;
        }

        .ai-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .ai-avatar {
            width: 40px;
            height: 40px;
            background: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: avatarPulse 4s ease-in-out infinite;
        }

        .ai-avatar i {
            color: white;
            font-size: 18px;
        }

        .ai-text h3 {
            color: #00a8ff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .ai-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 12px;
        }

        .status-indicators {
            display: flex;
            gap: 8px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            animation: statusPulse 2s ease-in-out infinite;
        }

        .status-dot:nth-child(1) { background: #00a8ff; animation-delay: 0s; }
        .status-dot:nth-child(2) { background: #9c27b0; animation-delay: 0.4s; }
        .status-dot:nth-child(3) { background: #ff9800; animation-delay: 0.8s; }

        /* Chat Messages */
        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: transparent;
        }

        .message {
            margin-bottom: 16px;
            display: flex;
            animation: messageSlide 0.3s ease-out;
        }

        .message.received {
            justify-content: flex-start;
        }

        .message.sent {
            justify-content: flex-end;
        }

        .message-content {
            max-width: 80%;
            padding: 12px 16px;
            border-radius: 18px;
            backdrop-filter: blur(20px);
            position: relative;
        }

        .received .message-content {
            background: rgba(0, 168, 255, 0.15);
            border: 1px solid rgba(0, 168, 255, 0.3);
            color: #00a8ff;
        }

        .sent .message-content {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .message-content p {
            margin: 0;
            font-size: 14px;
            line-height: 1.4;
        }

        .message-time {
            font-size: 10px;
            opacity: 0.6;
            margin-top: 4px;
            text-align: right;
        }

        /* Chat Input */
        .chat-input {
            padding: 20px;
            background: rgba(20, 20, 30, 0.7);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
        }

        .input-group {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .message-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            padding: 12px 20px;
            color: white;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }

        .message-input:focus {
            border-color: #00a8ff;
            box-shadow: 0 0 15px rgba(0, 168, 255, 0.3);
        }

        .message-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .send-button {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #00a8ff, #9c27b0);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .send-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(0, 168, 255, 0.5);
        }

        .send-button i {
            font-size: 16px;
        }

        /* HUD Elements */
        .hud-grid {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 168, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 168, 255, 0.05) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
            z-index: 1;
        }

        .hud-scanline {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00a8ff, transparent);
            animation: scanline 3s linear infinite;
            z-index: 2;
            pointer-events: none;
        }

        /* Animations */
        @keyframes rgbGlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes avatarPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 168, 255, 0.5); }
            50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 168, 255, 0.8); }
        }

        @keyframes statusPulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        @keyframes scanline {
            0% { top: 0; }
            100% { top: 100%; }
        }

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

        /* Scrollbar Styling */
        .chat-messages::-webkit-scrollbar {
            width: 4px;
        }

        .chat-messages::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
        }

        .chat-messages::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #00a8ff, #9c27b0);
            border-radius: 2px;
        }

        /* Responsive Design */
        @media (max-width: 460px) {
            .gadget-container {
                width: auto;
                height: 300px;
                margin-left: 0px !important;
                margin-top: 0%;
            }
        }