/* 
font-family: "Poppins", sans-serif;
*/

body {
  font-family: "Poppins", sans-serif;
  background: #020719;
  color: #eef2ff;
}

p {
  color: #c7d4ff;
}

.ml-auto {
  margin-left: auto;
}

.bg-animation {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  animation: float 12s infinite ease-in-out;
}

.circle.one {
  width: 500px;
  height: 500px;
  background: #123dff;
  top: -150px;
  left: -100px;
}

.circle.two {
  width: 450px;
  height: 450px;
  background: #3d7dff;
  bottom: -150px;
  right: -100px;
  animation-delay: 3s;
}

.circle.three {
  width: 350px;
  height: 350px;
  background: #001d8f;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 5s;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* padding: 20px 8%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-menu {
  background: linear-gradient(135deg, #0b2cff, #3b82ff);
}

.dropdown-item {
  color: #fff;
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link.active {
  font-size: 20px;
  color: #ffffff;
}

.navbar-light .navbar-nav .nav-link {
  font-size: 20px;
  color: #ffffff;
}

.navbar-light .nav-item {
  padding-right: 30px;
}
.navbar-light .nav-item:last-child{
  padding-right: 0px;
}

.navbar-brand img {
  box-shadow: 0 0 20px rgba(53, 96, 255, 0.7);
  border-radius: 50%;
  padding: 1px;
  background: #fff;
}

.navbar-brand {
  gap: 14px;
  display: flex;
  align-items: center;
}

.navbar-brand h2 {
  color: #fff;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #3b82ff;
}

/* Show dropdown on hover */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* =========================
   HERO SECTION
========================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 8% 80px;
  gap: 60px;
}

/* LEFT */

.hero-left {
  flex: 1;
  animation: fadeUp 1.2s ease;
}

.hero-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
  color: #9ab5ff;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
}

.hero-left h1 {
  font-size: 78px;
  line-height: 1.05;
  margin-bottom: 30px;
  font-weight: 800;
}

.hero-left h1 span {
  background: linear-gradient(to right, #6ea0ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  line-height: 2;
  margin-bottom: 40px;
  text-align: justify;
}

.hero-left p span {
  background: linear-gradient(to right, #6ea0ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 18px 38px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.4s;
}

.btn-primary {
  background: linear-gradient(135deg, #0b2cff, #3b82ff);
  color: #fff;
  box-shadow: 0 15px 40px rgba(0, 68, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-5px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* RIGHT SIDE */

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-box {
  position: relative;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 15s linear infinite;
  box-shadow:
    0 0 40px rgba(32, 74, 255, 0.45),
    inset 0 0 40px rgba(255, 255, 255, 0.06);
}

.logo-box::before {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px dashed rgba(84, 121, 255, 0.5);
}

.logo-box img {
  width: 78%;
  border-radius: 50%;
  animation: counterRotate 15s linear infinite;
  box-shadow: 0 0 50px rgba(53, 96, 255, 0.8);
}

/* ROTATION */

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

  to {
    transform: rotate(360deg);
  }
}

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

  to {
    transform: rotate(-360deg);
  }
}

.growbusiness {
  padding-bottom: 120px;
  padding-top: 120px;
}

.grow-container {
  padding: 100px 50px;
  text-align: center;
  border-radius: 30px;
  border: 1px dashed #565656;
  box-shadow: 0 0 20px rgba(53, 96, 255, 0.7);
}

.grow-container h2 {
  font-size: 55px;
  line-height: 1.05;
  margin-bottom: 30px;
  font-weight: 800;
  text-transform: capitalize;
}

.grow-container h3 {
  padding-bottom: 30px;
  background: linear-gradient(to right, #6ea0ff, #ffffff);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grow-container p {
  line-height: 2;
  text-align: justify;
}

.Satisfaction {
  padding-bottom: 120px;
  padding-top: 120px;
}

.Satisfaction h2 {
  text-align: center;
  font-size: 50px;
  line-height: 1.05;
  margin-bottom: 30px;
  font-weight: 600;
}

.Satisfaction h3 {
  background: linear-gradient(to right, #6ea0ff, #ffffff);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 36px;
}

.Satisfaction-heading {
  padding-bottom: 60px;
}

.Satisfaction-content p {
  line-height: 2;
  text-align: justify;
}

.Satisfaction-content-list ul {
  margin: 0px;
  padding: 0px;
}

.Satisfaction-content-list ul li {
  list-style-type: none;
  line-height: 1.4;
  text-align: justify;
  color: #c7d4ff;
}

/* =========================
   SERVICES
========================= */

.services {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 56px;
  margin-bottom: 18px;
}

.section-title p {
  color: #b8c8ff;
  max-width: 950px;
  margin: auto;
  line-height: 1.9;
}

/* GRID */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  position: relative;
  padding: 40px 35px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: 0.5s;
}

.card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(38, 87, 255, 0.25);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  filter: blur(40px);
}

.card:hover {
  transform: translateY(-10px);
  border-color: #4f7fff;
  box-shadow: 0 20px 50px rgba(0, 64, 255, 0.25);
}

.card-icon {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #192f8d, #4a7fff);
  padding: 10px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.card p {
  line-height: 1.9;
  color: #c7d4ff;
}

.servicescontent {
  padding-top: 90px;
}

.servicescontent p {
  line-height: 1.9;
}

.logo-box-small {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 15s linear infinite;
  box-shadow: 0 0 40px rgba(32, 74, 255, 0.45), inset 0 0 40px rgba(255, 255, 255, 0.06);
}

.logo-box-small img {
  width: 78%;
  border-radius: 50%;
  animation: counterRotate 15s linear infinite;
  box-shadow: 0 0 50px rgba(53, 96, 255, 0.8);
}

.logo-box-small::before {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px dashed rgba(84, 121, 255, 0.5);
}

.servicecontent-list ul {
  margin: 0px;
  padding: 0px;
}

.servicecontent-list ul li {
  list-style-type: none;
  line-height: 1.4;
  text-align: justify;
  color: #c7d4ff;
}

.start-project-btn {
  padding-top: 30px;
}














.ourclients {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ourclients h2 {
  font-size: 55px;
  line-height: 1.05;
  margin-bottom: 30px;
  font-weight: 800;
  text-transform: capitalize;
}

.clientslider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(300px * 12);
  animation: scroll 25s linear infinite;
}

.slide-track:hover {
  animation-play-state: paused;
}

.slide {
  width: 150px;
  height: 120px;
  margin: 0 15px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: 0.4s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.slide:hover img {
  transform: scale(1.08);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-300px * 6));
  }
}

/* Responsive */

@media(max-width:768px) {

  .slide {
    width: 150px;
    height: 120px;
  }

  .slide-track {
    width: calc(220px * 12);
  }

  @keyframes scroll {
    100% {
      transform: translateX(calc(-220px * 6));
    }
  }
}




/* =========================
   CTA
========================= */

.cta {
  padding: 120px 8%;
}

.cta-box {
  padding: 80px 50px;
  border-radius: 40px;
  background: linear-gradient(135deg, #0b2cff, #4f7fff);
  box-shadow: 0 30px 80px rgba(0, 68, 255, .35);
}

.cta-box h2 {
  font-size: 56px;
  margin-bottom: 25px;
}

.cta-box p {
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
}

.footerlinks {
  margin: 0px;
  padding: 0px;
}

.footerlinks li {
  list-style-type: none;
}

.footerlinks li a {
  color: #c7d4ff;
  text-decoration: none;
  font-size: 15px;
}

.footerlinks li a:hover {
  color: #111;
}

.ftrsocial {
  margin: 0px;
  padding: 0px;
  padding-top: 30px;
}

.ftrsocial li {
  list-style-type: none;
  display: inline-block;
  padding-right: 10px;
}

footer {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #c8d7ff;
  text-align: center;
}

footer p a {
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
}

.moblogo a{
	text-decoration:none;
	color: #fff;
}