body {
  background-color: var(--color-primary);
}

/* Hide main content initially */
#content {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

/* ---------------- NAV LOGO ---------------- */
.nav_logo {
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.common_border {
  border: 2px solid white !important;
  border-radius: 18px;
}

@media (max-width: 576px) {
  .nav_logo {
    width: 150px !important;
  }
}

/* ---------------- NAVBAR STYLING ---------------- */
.navbar-custom {
  background-color: #01222c;
  -webkit-box-shadow: 0 0 10px 10px rgba(255, 253, 253, 0.162);
  box-shadow: 0 0 10px 10px rgba(255, 253, 253, 0.162);
  padding: 4px 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  width: 100%;
}

/* ---------------- MENU ITEMS ---------------- */
.nav-link {
  color: var(--color-secondary);
  font-size: 18px;
  margin-right: 25px;
  position: relative;
  font-weight: 500;
}

/* Hover underline animation */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0%;
  height: 3px;
  background: var(--color-secondary);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--color-secondary) !important;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* ---------------- HAMBURGER ---------------- */
.menu-icon.fancy {
  position: relative;
  width: 35px;
  height: 25px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid transparent;
  border-radius: 10px;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}

.menu-icon.fancy span {
  position: absolute;
  width: 70%;
  height: 1px;
  background: white;
  border-radius: 5px;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}

.menu-icon.fancy span:nth-child(1) {
  top: 5px;
}
.menu-icon.fancy span:nth-child(2) {
  top: 11px;
}
.menu-icon.fancy span:nth-child(3) {
  top: 17px;
}

/* ACTIVE STATE */
.menu-icon.fancy.active {
  border-radius: 5px;
}

.menu-icon.fancy.active span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
  -ms-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}

.menu-icon.fancy.active span:nth-child(2) {
  opacity: 0;
}

.menu-icon.fancy.active span:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}

/* Disable scroll when mobile menu open */
body.no-scroll {
  overflow: hidden;
}

/* ---------------- CONTACT SECTION ---------------- */

.contact-box {
  max-width: 1100px;
}

.contact-gradient {
  background: -o-linear-gradient(315deg, var(--color-primary), #fff);
  background: linear-gradient(135deg, var(--color-primary), #fff);
  position: relative;
}

.contact-input {
  background: transparent;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}

.contact-input::-webkit-input-placeholder {
  color: var(--color-secondary);
}

.contact-input::-moz-placeholder {
  color: var(--color-secondary);
}

.contact-input:-ms-input-placeholder {
  color: var(--color-secondary);
}

.contact-input::-ms-input-placeholder {
  color: var(--color-secondary);
}

.contact-input::placeholder {
  color: var(--color-secondary);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #111;
  border: 2px solid #444;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.social-icon i {
  font-size: 20px;
  color: #fff;
  z-index: 2;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* Fill Animation */
.social-icon::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: var(--icon-color, #0d6efd);
  top: 100%;
  left: -25%;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* Hover Effects */
.social-icon:hover::before {
  top: 0;
}

.social-icon:hover {
  -webkit-transform: translateY(-5px) scale(1.1);
  -ms-transform: translateY(-5px) scale(1.1);
  transform: translateY(-5px) scale(1.1);
  border-color: transparent;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-icon:hover i {
  color: #fff;
}

/* Custom brand colors */
.social-icon.facebook {
  --icon-color: #1877f2;
}

.social-icon.twitter {
  --icon-color: #1da1f2;
}

.social-icon.whatsapp {
  --icon-color: #25d366;
}

.social-icon.instagram {
  --icon-color: #e4405f;
}

.social-icon.youtube {
  --icon-color: #ff0000;
}

.form_button {
  background-color: white;
  padding: 8px 10px;
  border: 2px solid transparent;
  border-radius: 4px;
  outline: none;
}

/* ---------------- FOOTER ---------------- */
.footer_link {
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.footer_link:hover {
  color: var(--color-orange) !important;
}

/* ---------------- HERO SECTION ---------------- */
.hero-section {
  background-image: url("../images/hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Fullscreen Video */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Right image (Detective) */
.hero_right_img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 00px;
  height: 100%;
  min-height: 100px;
  z-index: 2;
  pointer-events: none;
}

.wrapper {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  position: relative;
  z-index: 10;
}
.bg_blue {
  background-color: #01222c !important;
}

.hero_para {
  line-height: 1.6;
  color: white;
  text-align: justify;
  margin: 0;
  font-size: 12.5px;
  padding-right: 16px;
}
.hero_hindi_para {
  font-size: 11.5px;
  line-height: 22px;
  letter-spacing: 0.3px;
}
.hero_img {
  float: right;
  max-width: 416px;
  width: 103%;
  max-height: 800px;
  border-bottom: 1px solid white;
  height: auto;
  object-fit: fill;
  position: relative;
  bottom: 0;
  margin-top: 100px;
  shape-outside: url("../images/hero-img.png");
  shape-margin: 10px;
}

/* Responsive hero heights */
@media (min-width: 576px) {
  .hero_img {
    max-height: 800px;
  }

  .hero-section {
    height: 60vh;
  }

  .hero_right_img {
    min-height: 400px;
  }
}

@media (min-width: 768px) {
  .hero-section {
    height: 80vh;
  }

  .hero_right_img {
    min-height: 500px;
  }
}

@media (min-width: 992px) {
  .hero-section {
    height: 100vh;
  }
}

@media (min-width: 1400px) {
  .hero_right_img {
    min-height: 700px;
    height: 100%;
  }
}

.infographic-step {
  background-color: var(--color-secondary);
  border-radius: 10px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.infographic-step:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 20px;
  color: #fff;
}

.step-1 {
  background-color: #ff7b00;
}

.step-2 {
  background-color: #ffd500;
  color: #000;
}

.step-3 {
  background-color: #00d4d4;
  color: #000;
}

.step-content h5 {
  margin-bottom: 5px;
  font-weight: bold;
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

.line-connector {
  width: 2px;
  background-color: #555;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 50px;
  z-index: -1;
}

@media (min-width: 576px) {
  .infographic-step {
    background-color: var(--color-secondary);
    border-radius: 10px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}

@media (min-width: 768px) {
  .d-step-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
  }

  .infographic-steps {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .line-connector {
    left: 25%;
    top: 0;
    width: 2px;
    height: 100%;
  }
}
/* services section */
/* Main Section */
.ultra-section {
  position: relative;
  background: #000000 !important;

  border-bottom: 1px solid #fff;
  overflow: hidden;
}

.ultra-section .top_line {
  position: absolute;
  height: 1px;
  background-color: white;
  width: 87%;
  right: 0;
}
.ultra-section .bottom_line {
  position: absolute;
  height: 1px;
  background-color: white;
  width: 87%;
  left: 0;
  bottom: 20px;
}

.populer_btn {
  position: absolute !important;
  background-color: white !important;
  padding: 4px 6px !important;
  border-radius: 20px !important;
  color: black !important;
  z-index: 99;
  font-size: 8px;
  right: 0;
  top: -10%;
}

@media (max-width: 576px) {
  .center_card {
    margin-left: -30px !important;
  }
}

/* Floating Particles */
/* .particle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #00eaff, transparent);
  border-radius: 50%;
  animation: floatParticle 6s infinite ease-in-out;
}
.particle-1 { top: -10px; left: 20%; animation-delay: 0s; }
.particle-2 { bottom: -10px; left: 60%; animation-delay: 1s; }
.particle-3 { top: 40%; right: -10px; animation-delay: 2s; } */

/* @keyframes floatParticle {
  0% { transform: translateY(0px); opacity: 0.3; }
  50% { transform: translateY(40px); opacity: 1; }
  100% { transform: translateY(0px); opacity: 0.3; }
} */

@media (max-width: 576px) {
  .ultra-card:nth-child(1),
  .ultra-card:nth-child(3) {
    margin-left: -60px;
  }
  .ultra-logo-frame {
    padding: 0px;
    margin-bottom: -22px;
    border-radius: 18px;
    border: none;
    /* background: rgba(255,255,255,0.05); */
    /* backdrop-filter: blur(8px); */
    /* box-shadow: 0 0 25px rgba(0,255,255,0.15); */
    position: relative;
    scale: 1.3;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .ultra-card h4 {
    color: #fff;
    font-size: 14px;
  }
}
.ultra-logo {
  max-width: 80%;
}

/* ULTRA CARDS */
.ultra-card {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid white;
  padding: 18px 28px;
  border-radius: 16px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.35s ease;
  -o-transition: 0.35s ease;
  transition: 0.35s ease;
}

@media (max-width: 576px) {
  .ultra-card {
    position: relative;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid white;
    padding: 18px 10px;
    max-width: 170px;
    right: -30px;
    border-radius: 16px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: 0.35s ease;
    -o-transition: 0.35s ease;
    transition: 0.35s ease;
  }
}

.ultra-card h4 {
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin: 0;
}

/* our client css  */
.stats-section {
  background: #000;
}

.stats-box {
  background: #111;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #333;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}

.stats-box p {
  color: #ccc;
  margin-top: 10px;
  font-size: 16px;
}
.stats-box h3 {
  color: #fff;
  font-size: 36px;
}

.stats-box:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  border-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* terms section css */
.terms-section {
  background: #000;
}

.terms-wrapper {
  max-width: 900px;
  margin: auto;
}

.term-item {
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.term-header {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  text-align: left;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.term-header:hover {
  background: rgba(255, 255, 255, 0.08);
}

.arrow {
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.term-item.active .arrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.term-body {
  max-height: 0;
  overflow: hidden;
  color: #ccc;
  padding: 0 20px;
  line-height: 1.6;
  -webkit-transition: max-height 0.5s ease, padding 0.4s ease;
  -o-transition: max-height 0.5s ease, padding 0.4s ease;
  transition: max-height 0.5s ease, padding 0.4s ease;
}

.term-item.active .term-body {
  max-height: 400px;
  padding: 15px 20px;
}

/* Fade animation */
.term-item {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-animation: fadeUp 0.8s ease forwards;
  animation: fadeUp 0.8s ease forwards;
}

@-webkit-keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* popup css */
/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
  -webkit-animation: fadeIn 0.4s ease;
  animation: fadeIn 0.4s ease;
}

/* Popup Box */
.popup-box {
  background: #fff;
  padding: 30px;
  width: 350px;
  border-radius: 12px;
  position: relative;
  -webkit-animation: scalePop 0.4s ease;
  animation: scalePop 0.4s ease;
}

/* Close Button */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.close-popup:hover {
  color: red;
}

.popup_btn:hover {
  background-color: #000;
  color: white;
}
.popup_btn {
  background-color: white;
  border-radius: 4px;
  padding: 4px 4px;
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* Animations */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes scalePop {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scalePop {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/* gallery section css */
/* Section Background */
.unique-gallery {
  background: #000;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Floating Gradient Shapes */
.unique-gallery::before,
.unique-gallery::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: -o-linear-gradient(45deg, #ff00c8, #00eaff);
  background: linear-gradient(45deg, #ff00c8, #00eaff);
  -webkit-filter: blur(120px);
  filter: blur(120px);
  -webkit-animation: floatShape 8s infinite alternate ease-in-out;
  animation: floatShape 8s infinite alternate ease-in-out;
  opacity: 0.4;
}

.unique-gallery::before {
  top: -50px;
  left: -50px;
}

.unique-gallery::after {
  bottom: -50px;
  right: -50px;
}

@-webkit-keyframes floatShape {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }
}

@keyframes floatShape {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }
}

/* Split Layout */
.split-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Text Section */
.gallery-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
  min-width: 250px;
}

.gallery-text .gallery-title {
  font-size: 42px;
  margin-bottom: 20px;
}

.gallery-text .gallery-description {
  font-size: 18px;
  line-height: 1.6;
}

/* Slider Section */
.gallery-slider {
  -webkit-box-flex: 2;
  -ms-flex: 2 1 500px;
  flex: 2 1 500px;
  min-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Slide Item */
.gallery-slider .gallery-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 10px;
}

.gallery-slider {
  margin: 0 -10px;
}

/* Images */
.gallery-item img {
  width: 100%;
  display: block;
  -webkit-transition: 0.6s ease;
  -o-transition: 0.6s ease;
  transition: 0.6s ease;
}

.gallery-item:hover img {
  -webkit-transform: scale(1.12) rotate(2deg);
  -ms-transform: scale(1.12) rotate(2deg);
  transform: scale(1.12) rotate(2deg);
  -webkit-filter: brightness(1.15);
  filter: brightness(1.15);
}

/* onclick */
.border-trace,
.shine,
.cyber-line {
  pointer-events: none;
}

.ultra-card {
  cursor: pointer;
}

/* preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
}

/* Logo animation */
.loader-logo {
  width: 160px;
  -webkit-animation: slideToCenter 3s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
  animation: slideToCenter 3s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
}

/* Keyframes */
@-webkit-keyframes slideToCenter {
  0% {
    -webkit-transform: translateX(-120%);
    transform: translateX(-120%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideToCenter {
  0% {
    -webkit-transform: translateX(-120%);
    transform: translateX(-120%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* achivments section */
.achievement-card {
  background: #111;
  border: 1px solid #222;
  padding: 25px;
  border-radius: 14px;
  color: #fff;
  transition: all 0.3s ease;
}

.achievement-card h5 {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.achievement-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.15);
  border-color: #fff;
}

/* pricing section css */
.pricing-card {
  background: #111;
  border: 1px solid #222;
  padding: 30px;
  border-radius: 18px;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card a {
  background-color: white !important;
  color: black;
  font-weight: 500;
  border: none !important;
}

.pricing-card h4 {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 32px;
  margin: 15px 0;
  font-weight: 700;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card ul li {
  padding: 6px 0;
  font-size: 15px;
  color: #ccc;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* Popular badge */
.badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #fff;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.about-badge-popular {
  position: absolute;
  top: -27px;
  right: -12px;
  background: #01222c;
  color: #ffffff;
  padding: 0px 1px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 600;
  border: 1px solid #ffffff;
}

.form_bg {
  padding: 40px; 
  border-radius: 20px;
  background: -o-linear-gradient(315deg, var(--color-primary), #fff);
  background: linear-gradient(135deg, var(--color-primary), #fff);
}

@keyframes borderMove {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.small_services a {
  color: #ffffff !important;
  border: 1px solid transparent;
  background-color: #01222c !important;
  font-size: 12px;
  text-decoration: none;
  padding: 5px 0px;
  position: relative;
  display: inline-block;
  border-radius: 9px;
  z-index: 1;
  font-family: sans-serif;

  /* premium feel */
  transition: all 0.35s ease;
  animation: zoomPulse 2.6s ease-in-out infinite;
}

/* RAINBOW MOVING BORDER */
.small_services a::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    90deg,
    #ffffff,
    #ffffff
  );
  background-size: 300% 300%;
  animation: rainbowMove 6s linear infinite;
  z-index: -1;
  border-radius: 9px;
}

/* INNER BACKGROUND (keeps size SAME) */
.small_services a::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #01222c;
  border-radius: 5px;
  z-index: -1;
}

/* HOVER EFFECT */
.small_services a:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #01222c, #024d61) !important;
  box-shadow:
    0 10px 30px rgba(0, 255, 255, 0.35),
    0 0 18px rgba(255, 0, 255, 0.25);
}

/* make inner layer transparent on hover */
.small_services a:hover::after {
  background: transparent;
}

/* ZOOM IN–OUT */
@keyframes zoomPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

/* RAINBOW BORDER ANIMATION */
@keyframes rainbowMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}



.small_services{
  top: 54%;
  right: 17%;
  width: 90px;
  gap: 35px;
  transform: translateY(-50%);
}
@media (max-width: 576px) {
  .form_bg { 
    padding: 20px;
    border-radius: 20px;
    background: -o-linear-gradient(315deg, var(--color-primary), #fff);
    background: linear-gradient(135deg, var(--color-primary), #fff);
  }
}

.fw-bold {
  font-size: 20px;
}

















