:root {
  --bg-color: #212121;
  --theme-color: #151515;
}

/* --------------- Menu --------------- */
.navbar {
  position: absolute;
  left: 0;
  top: 30px;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  z-index: 9999999;
}

.navbar.nav-scroll {
  padding: 0;
  position: fixed;
  top: -80px;
  padding: 15px 0;
  -webkit-transition: -webkit-transform .8s;
  transition: -webkit-transform .8s;
  -o-transition: transform .8s;
  transition: transform .8s;
  transition: transform .8s, -webkit-transform .8s;
  -webkit-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.navbar .logo {
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
}

.navbar .navbar-nav {
  padding: 2px 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  margin-left: 15px;
}

.navbar .navbar-nav .nav-link {
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
}

.navbar .navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}

.navbar .topnav .butn {
  padding: 7px 20px;
  background: #fff;
  color: #1d1d1d;
  margin-right: 15px;
}

/* --------------- Plan Price Model --------------- */
input[type="text"],
input[type="email"],
textarea {
  background-color: transparent;
   padding: 10px;
  margin-top:10px;
  border: 1px solid #c5c5c5; /* Add a thin border */
  border-radius: 5px; /* Rounded corners */
  color: #c5c5c5;/* Adjust text color for visibility */
  width: 100%; /* Optional: Make it take the full width */
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: transparent; /* Placeholder text color */
}


input:focus {
  background-color: #c5c5c5; /* Ensure background stays transparent */
  outline: none; /* Disable focus outline */
  border: none; /* Keep no border */
}

   /* Change modal background color */
 .modal-content {
   color: #c5c5c5;

   background: var(--bg-color);
   padding: 15px;
   border-radius: 20px;
   font-family: 'Roboto', sans-serif;
 }

.price-card-Btn{
  border-radius: 20px;
  background: rgb(218, 255, 86);
  padding: 10px;
  width: 100%;
}

.price-card-Btn:hover {
  background: black; /* Change background to black */
  color: white; /* Change text to white */
}

/* Hide the close icon in the modal header */
.modal-header .btn-close {
  display: none;
}

/* Hide the close button in the modal footer */
.modal-footer .btn-secondary {
  display: none;
}
#domain-preview {
 margin-left: 10px;
  color: rgb(218, 255, 86); /* Bootstrap primary color */
}
#subdomain{
  width: 280px;
}
#errorMessage{
  color: rgb(218, 255, 86)
}
/* --------------- header --------------- */
.header-sa {
  min-height: 100vh;
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden !important;
  z-index: 3;
}

.header-sa .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  background-image: url(../imgs/header/g-back.png);
  background-size: cover;
  z-index: -1;
}

.header-sa .background:before {
  content: '';
  position: absolute;
  top: 0;
  left: -20vw;
  width: 70vw;
  bottom: 0;
  background: #010105;
  pointer-events: none;
  border-radius: 50%;
  -webkit-filter: blur(200px);
  filter: blur(200px);
  opacity: .7;
}

.header-sa .background:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/header/Grid.png);
  background-size: contain;
  background-repeat: repeat;
  z-index: -1;
  pointer-events: none;
  opacity: .15;
}

.header-sa .caption h1 {
  font-size: 96px;
  line-height: 96px;
  letter-spacing: -4px;
  padding-top: 100px
}

.header-sa .caption .text {
  margin-top: 120px;
}

.header-sa .imgs {
  position: relative;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.header-sa .imgs .cube img {
  position: relative;
  width: 70%;
  right: -100px;
  bottom: -100px;
  animation: rotate 20s infinite linear;
}

.header-sa .imgs .circle {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
}

.header-sa .imgs .circle:after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  z-index: -1;
}

/* --------------- Services --------------- */
.services-sa .item {
  background: var(--bg-color);
  padding: 15px;
  border-radius: 20px;
}
.services-sa .item:hover {
  border: 1px solid rgb(218, 255, 86);; /* Subtle border */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);

  transform: translateY(-16px) scale(1.02);
  transition: all 0.5s ease;
}

.services-sa .item .cont {
  padding: 15px;
}

.services-sa .item .cont .icon {
  width: 52px;
  height: 52px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.services-sa .item .cont .icon img {
  width: 25px;
}

.services-sa .item .cont .icon.invert img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.services-sa .item .cont .text {
  margin-top: 100px;
  margin-bottom: 20px;
}

.services-sa .item .cont .text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
}

.marq-sa {
  overflow: hidden !important;
}

.marq-sa .item {
  padding: 0 80px !important;
  position: relative;
}

.marq-sa .item:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.marq-sa .item h2 {
  white-space: nowrap;
  font-size: 86px;
  line-height: 120px;
  letter-spacing: -4px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
  background: -webkit-linear-gradient(left, #fff, transparent);
  background: -o-linear-gradient(left, #fff, transparent);
  background: linear-gradient(to right, #fff, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* --------------- Works --------------- */
.work-card .card-item {
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  background: var(--bg-color);
}

.work-card .card-item .cont {
  height: 100%;
  padding: 40px 80px 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

}

.work-card .card-item .cont .tag {
  font-size: 12px;
  line-height: 1;
  padding: 7px 12px;
  margin-right: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}

.work-card .card-item .cont p {
  font-size: 14px;
  line-height: 20px;
}

.work-card .card-item .cont farb {
  font-size: 14px;
  /* Slightly larger font for better readability */
  line-height: 22px;
  /* Optimal line height for readability */
  color: #c5c5c5;
  /* Bright yellow-green color */
  padding: 10px;
  /* Ample padding for content */
  border-radius: 8px;
  /* Rounded corners */
  margin-bottom: 10px;
  /* Space between elements */
  transition: all 0.3s ease;
  /* Smooth transition for hover effects */
  font-family: 'Roboto', sans-serif;

  .work-card .card-item .cont .farb li {
    color: #daff56;
  }
}

.work-card .card-item .img {
  padding: 20px;
}

.work-card .card-item .img img {
  border-radius: 15px;
}

.clients-sa {
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--bg-color);
}

/* --------------- Clients --------------- */
.clients-sa .item {
  background-color: var(--bg-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
}

.clients-sa .item .img {
  width: 100px;
}
.right-wrong-icon{
  width:20px !important;
  height:20px !important;
}
.right-wrong-icon img{
   width:20px !important;
   height:20px !important;
 }
.clients-sa .item .cont .icon {
  width: 40px;
  margin: 0 auto 10px;
}

.clients-sa .item .cont span {
  font-size: 14px;
  line-height: 20px;
}

/* --------------- Testimonials --------------- */
.testimonials-sa {
  position: relative;
  overflow: hidden;
}

.testimonials-sa:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/testim/mesh-gradient.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: .5;
  z-index: 2;
}

.testimonials-sa .gl-rate {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  padding: 10px 20px;
}

.testimonials-sa .gl-rate .icon {
  width: 35px;
}

.testimonials-sa .gl-rate .cont {
  padding-left: 30px;
}

.testimonials-sa .gl-rate .cont h6 {
  line-height: 1;
  font-weight: 600;
  font-size: 18px;
}

.testimonials-sa .gl-rate .cont .stars {
  font-size: 13px;
  color: #EF2B10;
  margin-left: 10px;
}

.testimonials-sa .gl-rate .cont p {
  font-size: 12px;
  opacity: .7;
  margin-top: 2px;
}

.testimonials-sa .swiper-slide {
  height: auto;
}

.testimonials-sa .item {
  background: var(--bg-color);
  padding: 40px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.testimonials-sa .item .rate h5 {
  font-size: 16px;
}

.testimonials-sa .item .rate .stars {
  font-size: 13px;
  color: #EF2B10;
  margin-left: 10px;
}

.testimonials-sa .item .info .img-author {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-sa .item .info .info-text {
  padding-left: 15px;
}

.testimonials-sa .item .info .info-text p {
  font-size: 14px;
  opacity: .7;
}

@media (max-width: 768px) { /* Adjust the max-width as needed for your design */
  .testimonials-sa {
      display: none;
  }
}

/* --------------- Awards --------------- */
.awards-sa .item-title {
  padding: 0 15px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.awards-sa .item-title>div {
  padding: 0;
}

.awards-sa .item-title h6 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .7;
}

.awards-sa .item-line {
  padding: 25px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  z-index: 3;
}

.awards-sa .item-line>div {
  padding: 0;
}

.awards-sa .item-line>div:last-of-type {
  text-align: right;
}

.awards-sa .item-line:hover:after {
  height: 100%;
}

.awards-sa .item-line:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.05);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  z-index: -1;
}

.awards-sa .item-line .honors h6 {
  font-size: 14px;
}

.awards-sa .item-line .project-date span {
  font-size: 14px;
  opacity: .7;
}

/* --------------- Blogs --------------- */
.blog-sa .item .img {
  height: 470px;
  border-radius: 15px;
}

.blog-sa .item .cont .info a {
  font-size: 14px;
}

.blog-sa .item .cont .info .date {
  opacity: .5;
  margin-left: 5px;
}

/* --------------- Contact --------------- */
.contact-sa .box {
  padding: 120px 60px;
  background-image: url(../imgs/gr-back.png);
  background-size: cover;
  background-position: center center;
  border-radius: 30px;
  overflow: hidden;
}

.contact-sa .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.contact-sa .contact-form label {
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-sa .contact-form label .star {
  color: red;
  padding-left: 5px;
}

.contact-sa .contact-form input,
.contact-sa .contact-form textarea {
  color: #fff;
  background: transparent;
  width: 100%;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.contact-sa .contact-form button {
  background: transparent;
  color: #fff;
}

/* --------------- footer --------------- */
.footer-sa {
  background: var(--bg-color);
}

.footer-sa .logo {
  width: 160px;
}

.footer-sa .contact-info .item {
  margin-bottom: 50px;
}

.footer-sa .contact-info .item span {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-sa .contact-info .social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 14px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.footer-sa .contact-info .social-icon a:hover {
  border-color: #fff;
}

.footer-sa .sub-footer .copy p {
  font-size: 14px;
}

.footer-sa .sub-footer .copy p a {
  color: #fff;
}

.footer-sa .sub-footer .links {
  width: 100%;
}

.footer-sa .sub-footer .links a {
  font-size: 14px;
}

.footer-sa .sub-footer .links .active {
  color: #fff;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
  background-color: var(--theme-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -3px;
}

h2 {
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -3px;
}

h3 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -2px;
}

h4 {
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -2px;
}

h5 {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px;
}

h6 {
  font-size: 24px;
  line-height: 32px;
}

.sub-color {
  color: #808080;
}

.rgb-color {
  color: rgb(218, 255, 86);
}

.clipped-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 72px;
  /* Adjust based on line-height and font-size */
}

.rgb-head {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -1px;
  color: #aaaaaa;
}

.sub-head {
  font-size: 24px;
  font-weight: 800;
  padding-bottom: 2rem;
  line-height: 28px;
}

p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.sec-head .sub-head {
  position: relative;
  padding-left: 25px;
}

.sec-head .sub-head:after {
  content: '';
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}

.loader-wrap svg {
  fill: #1d1d1d;
}

.butn.butn-bord {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.butn.butn-bord:hover {
  background: #fff;
  color: #212121;
}

.icon.invert img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.butn .icon {
  width: 18px;
}

.butn:hover .icon.invert img {
  -webkit-filter: invert(0);
  filter: invert(0);
}

/* ====================== [ Start Responsive ] ====================== */
@media screen and (max-width: 992px) {
  .sec-head .sub-head {
    margin-bottom: 30px !important;
  }

  .header-sa {
    padding: 180px 0 320px;
    min-height: auto;
    position: relative;
  }

  .header-sa .caption {
    position: relative;
    z-index: 4;
  }

  .header-sa .caption .text {
    margin-top: 40px;
    width: 80%;
  }

  .header-sa .imgs {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
  }

  .header-sa .imgs .circle {
    width: 250px;
    top: 60%;
  }

  .marq-sa .item h2 {
    font-size: 70px;
    line-height: 1.4;
    -webkit-text-fill-color: #fff;
    background: transparent;
  }
}

@media screen and (max-width: 768px) {
  .header-sa .caption h1 {
    font-size: 50px;
    line-height: 1.4;
  }

  .header-sa .imgs {
    width: 60%;
    -webkit-transform: translateY(70%);
    -ms-transform: translateY(70%);
    transform: translateY(70%);
  }

  .header-sa .imgs .cube img {
    right: -30px;
  }

  .header-sa .imgs .circle {
    width: 200px;
  }

  .contact-sa .box {
    padding: 120px 40px;
  }
}

.typing-effect {
  border-right: 3px solid rgb(255, 255, 255);
  /* Cursor style */
  font-family: monospace;
  /* Monospace font type for even spacing */
}

/* Blinking cursor effect */
@keyframes blink-caret {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: rgb(228, 228, 228)
  }
}

.typing-effect {
  animation: blink-caret .75s step-end infinite;
}

.plan-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cont {
  padding: 20px;
  flex: 1;
}

/* Plan Features List */
.plan-features {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #aaaaaa;
}

.plan-features li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.plan-features li strong {
  color: #bbbbbb;
}

/* Nested List */
.nested-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  color: #cecece;
  font-size: 0.9rem;
}

.nested-list li {
  margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .plan-features {
    font-size: 0.9rem;
  }
}

.img-stack {
  position: relative;
  width: 100%;
  /* Adjust based on your layout needs */
  height: auto;
}

.img-stack img {
  position: absolute;
  width: 100%;
  /* This ensures images cover the div */
  height: auto;
  top: 0;
  left: 0;
  transition: transform 0.3s ease-in-out;
}

.img-stack .img-back {
  z-index: 1;
  /* Lower z-index so it's behind */
  transform: translate(0%, 15%);
  /* Adjust the overlap */
  border-radius: 15px;
  /* Optional: adds rounded corners */
}

.img-stack .img-front {
  z-index: 2;
  /* Higher z-index to be on top */
  border: 3px solid #FFF;
  width: 90%;
  transform: translate(15%, 30%);
  /* Adjust the overlap */
  box-shadow: -24px 1px 28px rgba(0, 0, 0, 0.3);
  /* Optional: adds shadow for depth */
  border-radius: 15px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #4CAF50;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1rem;
  position: relative;
}

.discount-label {
  background-color: #575e3f;
  border-color: #daff56;
  color: #daff56;
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
  border-radius: 1rem;
  margin-right: 1rem;
  position: relative;
  top: -5px;
}

.discount-label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px; /* Adjust the position to point at the button */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px; /* Creates a triangle */
  border-color: transparent transparent transparent #daff56; /* Match background color of the label */
}

.btn-group {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 1.5rem;
  overflow: hidden;
}

.toggle-btn {
  flex: 1;
  padding: 0.6rem 1.2rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}

.toggle-btn.active {
  background-color: #daff56;
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.toggle-btn:not(.active) {
  color: #daff56;
}

.toggle-btn:hover {
  background-color: #eff2e5;
  color: #191f03;
}

.discount-label.active {
  background-color: #575e3f; /* Highlight color */
  color: #daff56;
}

/* Define the blinking animation */
@keyframes blink {
  0%, 100% {
      background-color: transparent;
      color: #daff56;
  }
  50% {
      background-color: transparent;
      color: #000000;
  }
}

/* Blinking effect class */
.blinking {
  animation: blink 1.5s infinite;
}
