@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Bungee&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Geologica:wght@100..900&family=Space+Grotesk:wght@300..700&display=swap");

:root {
  --primary-blue: #0066ff;
  --dark-blue: #003d99;
  --light-blue: #3385ff;
  --accent-blue: #00ccff;
  --cyber-blue: #00ffff;
  --dark-bg: #0a0f1c;
  --darker-bg: #050810;
  --card-bg: rgba(16, 30, 60, 0.8);
  --text-light: #e8f4fd;
  --text-muted: #a8c5e8;
  --gradient-1: linear-gradient(135deg, #0066ff, #00ccff);
  --gradient-2: linear-gradient(45deg, #003d99, #0066ff);
  --gradient-3: linear-gradient(180deg, #0a0f1c, #050810);
  --iconBacgoundColor: linear-gradient(
    135deg,
    #9fc4ff 0%,
    #00e1ff 50%,
    #0040ff 100%
  );
  --sectionMainHeadingColor: linear-gradient(
    135deg,
    #003c9e 0%,
    #245aa5 20%,
    #345789 100%
  );
  --btnPrimaryColor: linear-gradient(135deg, #667eea90 0%, #764ba28b 100%);
  --navbarBtnColor: linear-gradient(
    to right,
    #0575e6 0%,
    #215ce3 51%,
    #0575e6 100%
  );
  --glow: 0 0 20px rgba(0, 102, 255, 0.3);
  --glow-strong: 0 0 30px rgba(0, 204, 255, 0.5);

  --font-primary: "Poppins", "Inter", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif; */
  font-family: "Space Grotesk", sans-serif;

  /* background: #0a0a0a; */
  /* min-height: 100vh; */
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-secondary);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

/* navbar */

/* Header Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #001a37;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.navOption {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  z-index: 1001;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.logo-text {
  color: #fff;
}
.logotextai {
  color: rgb(255, 94, 0);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  margin: 0 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-link i {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.dropdown-item:hover::before {
  left: 100%;
}

.dropdown-item:hover {
  color: #fff;
  background: rgba(102, 126, 234, 0.2);
  transform: translateX(8px);
}

/* CTA Button */
.navbarbutton {
  background: var(--navbarBtnColor);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.navbarbutton::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.navbarbutton:hover::before {
  left: 100%;
}

.navbarbutton:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 24px;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--iconBacgoundColor);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(15, 15, 35, 0.98);
  backdrop-filter: blur(20px);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-menu {
  list-style: none;
  padding: 40px 20px;
  margin: 0;
}

.mobile-nav-item {
  margin: 0 0 8px 0;
}

.mobile-nav-link {
  display: block;
  padding: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  /* background: rgba(255, 255, 255, 0.05); */
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #fff;
  background: rgba(102, 126, 234, 0.2);
  transform: translateX(10px);
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-item.active .mobile-dropdown {
  max-height: 500px;
}

.mobile-dropdown-item {
  display: block;
  padding: 5px 30px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
  color: #fff;
  border-left-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.mobile-cta {
  margin: 30px 20px;
}

/* Demo content */
.demo-content {
  padding: 120px 20px 60px;
  text-align: center;
  color: white;
}

.demo-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.demo-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    background: rgb(15, 15, 35);
  }
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .navbarbutton {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-content {
    height: 70px;
  }

  .mobile-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .demo-title {
    font-size: 2rem;
  }

  .demo-content {
    padding: 100px 20px 40px;
  }
}

/* hero banner  */

.bannerSection {
  background: linear-gradient(135deg, #0a101e 0%, #090c73 50%, #1b3d4e 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 115px 0;
  background: linear-gradient(
      135deg,
      #0a101ef3 0%,
      #090d73f3 50%,
      #ab5930ed 100%
    ),
    url(./hero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* AI-themed background elements */
.bannerSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 119, 198, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(120, 219, 226, 0.2) 0%,
      transparent 50%
    );
  z-index: 1;
}

.bannerSection::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.03) 2px,
    rgba(255, 255, 255, 0.03) 4px
  );
  z-index: 2;
}

.hero-content {
  color: white;
  z-index: 3;
  position: relative;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #a8b2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content h4 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 90%;
}

.trustSection {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  margin: 10px;
  margin-bottom: 2.5rem;
}

.trustSection img:first-child {
  width: 180px;
  height: auto;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

.trust-text img {
  width: 100px;
  height: auto;
}

.btnSection {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-image: linear-gradient(
    to right,
    #0575e6 0%,
    #063fc4 51%,
    #0575e6 100%
  );
}
.btn-primary {
  margin: 10px;
  padding: 12px 30px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
}

.btn-primary:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

/* .btn-primary {
  background: var(--btnPrimaryColor);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: white;
} */

.btn-secondary {
  margin: 10px;
  padding: 12px 30px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  background: transparent;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: white;
}

.hero-image {
  position: relative;
  z-index: 3;
}

/* Swiper Styles */
.hero-swiper {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.hero-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 22px;
}

.hero-swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border-radius: 22px;
}

/* Custom Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  margin-top: -25px !important;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white !important;
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
  font-weight: bold;
}

/* Custom Swiper Pagination */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  transform: scale(1.2);
}

.swiper-pagination {
  bottom: 20px !important;
}

/* Floating elements for AI theme */
.floating-element {
  position: absolute;
  z-index: 2;
  opacity: 0.6;
}

.floating-element-1 {
  top: 10%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
  bottom: 20%;
  left: 5%;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 8s ease-in-out infinite reverse;
}

.floating-element-3 {
  top: 60%;
  right: 20%;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  border-radius: 20px;
  animation: float 7s ease-in-out infinite;
  transform: rotate(45deg);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 0rem;
  }

  .bannerSection {
    padding: 60px 0;
    min-height: auto;
    margin-top: 3rem;
  }

  .hero-content h1 {
    margin-bottom: 1rem;

    font-size: 2rem;
    margin-top: 2rem;
  }

  .hero-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .trustSection {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .trustSection img:first-child {
    width: 100px;
  }

  .btnSection {
    gap: 0.05rem;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .btnSection a {
    width: 100%;
  }

  .floating-element {
    display: none;
  }

  .hero-swiper {
    height: 300px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px !important;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h4 {
    font-size: 1rem;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, #00d4ff);
  margin: 0 auto 10px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
/* footprint  */

.custom-shape-divider-bottom-1758106986 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1758106986 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 66px;
}

.custom-shape-divider-bottom-1758106986 .shape-fill {
  fill: #ffffff;
}

.footprint-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #000000 0%, #0c0034 100%);
  overflow: hidden;
}

.footprint-world-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/World\ Map.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  background-attachment: fixed;
}

.footprint-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footprint-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.footprint-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footprint-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  margin-top: 30px;
  letter-spacing: -0.5px;
}

.footprint-experience-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.footprint-experience-highlight {
  font-size: 24px;
  font-weight: 600;
  color: #006aff;
}

.footprint-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 2rem 0 4rem 0;
}

.footprint-metric-card {
  backdrop-filter: blur(2px);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footprint-metric-card:hover::before {
  transform: translateX(0);
}

.footprint-metric-number {
  font-size: 4rem;
  font-weight: 900;
  color: #bed5ff;
  margin-bottom: 12px;
  line-height: 1;
}

.footprint-metric-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .footprint-section {
    padding: 60px 0;
  }

  .main-title {
    font-size: 36px;
  }

  .footprint-metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }

  .footprint-metric-card {
    padding: 30px 20px;
  }

  .footprint-metric-number {
    font-size: 30px;
  }
  .footprint-metric-label {
    font-size: 12px;
  }

  .footprint-container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .footprint-metrics-grid {
    margin: 10px auto 0;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .footprint-main-title {
    font-size: 28px;
  }

  .footprint-experience-text {
    font-size: 16px;
  }

  .footprint-experience-highlight {
    font-size: 20px;
  }
}

.sectionHeadingBox {
  margin: 0 auto;
  margin-bottom: 10px;
}

.text-center {
  text-align: center;
}

.sectionSubtitleText {
  color: #8b5cf6;
}

.pb-20 {
  padding-bottom: 20px;
}

.sectionHeadingBox p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  font-weight: 400;
  font-style: italic;
}

.sectionHeadingBox p .sectionSubtitleText {
  font-weight: 700;
  font-size: 22px;
  color: #8b5cf6;
}

.experienceSection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.experienceBox {
  position: relative;
}

.card {
  /* background: #ffffff; */
  border: 2px solid transparent;
  border-radius: 14px;

  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06); */
  transition: all 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgb(139 92 246 / 0%) 52%,
    rgb(59 130 246 / 35%) 164%
  );
  opacity: 1;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #8b5cf6;
  box-shadow: 0 20px 25px -5px rgba(139, 92, 246, 0.1),
    0 10px 10px -5px rgba(139, 92, 246, 0.04);
}

.card:hover::before {
  opacity: 1;
}

/* Decorative Elements */
.square-pattern {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: none;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1),
    rgba(59, 130, 246, 0.1)
  );
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.square-pattern::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(139, 92, 246, 0.4);
  border-radius: 4px;
  display: none;
}

.square-pattern::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 8px;
  height: 8px;
  background: rgba(59, 130, 246, 0.6);
  border-radius: 2px;
  display: none;
}

.decorative-accent {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
  border-radius: 2px;
}

.decorative-accent::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -2px;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
}

.expMetric {
  text-align: center;
  z-index: 2;
  position: relative;
}

.expDataText {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 15px;
  background: var(--iconBacgoundColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.07em;
  line-height: 1;
}

.expMetric p {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* AI Tech Icons for each card */
/* .experienceBox:nth-child(1)::after {
        content: "🌍";
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 20px;
        opacity: 0.7;
      }

      .experienceBox:nth-child(2)::after {
        content: "🏢";
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 20px;
        opacity: 0.7;
      }

      .experienceBox:nth-child(3)::after {
        content: "🏭";
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 20px;
        opacity: 0.7;
      }

      .experienceBox:nth-child(4)::after {
        content: "👨‍💻";
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 20px;
        opacity: 0.7;
      }

      .experienceBox:nth-child(5)::after {
        content: "👥";
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 20px;
        opacity: 0.7;
      } */

/* AI Neural Network Decoration */
.ai-decoration {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  opacity: 0.05;
}

.ai-decoration::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 2px solid #8b5cf6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ai-decoration::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border: 1px solid #3b82f6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .experienceSection {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .card {
    padding: 40px 25px;
  }

  .expDataText {
    font-size: 2rem;
    margin: 0;
  }
  .expMetric p {
    font-size: 10px;
    margin-top: 6px;
  }
}

@media (max-width: 480px) {
  .footprintSection {
    padding: 60px 0;
  }

  .card {
    padding: 30px 20px;
    height: 100px;
  }

  .expDataText {
    font-size: 1.7rem;
  }
}

/* services  */

.service-card-explore-section {
  max-width: 1400px;
  margin: 0 auto;
}

.service-card-section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 50px;
  letter-spacing: -1px;
}

.service-card-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
  max-width: 1400px;
  margin: auto;
  margin-bottom: 2rem;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.047);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-tag {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2c5aa0;
  margin-bottom: 20px;
  line-height: 1.3;
  flex-grow: 1;
}

.service-card-read-more {
  display: inline-flex;
  align-items: center;
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  margin-top: auto;
}

.service-card-read-more:hover {
  color: #2c5aa0;
}

.service-card-read-more::after {
  content: "→";
  margin-left: 8px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.service-card-read-more:hover::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .service-card-section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .service-card-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-content {
    padding: 20px;
  }
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(67, 67, 67, 0.729);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
  margin-top: 40px;
  letter-spacing: -0.5px;
}

.section-para-text {
  font-size: 18px;
  color: rgba(34, 34, 34, 0.9);
  font-weight: 400;
}

/* whychooseuse */

.custom-shape-divider-bottom-1758115183 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1758115183 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 148px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1758115183 .shape-fill {
  fill: #e9e9e9;
}

.why-choose-us-container {
  max-width: 1640px;
  margin: 0 auto;
  background: linear-gradient(rgb(0, 10, 52), rgba(6, 0, 55, 0.759)),
    url(../images/4k_bg_hero.gif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-bottom: 14rem;
  position: relative;
}
.corner {
  background: url(../images/edge_bottom-customer-stories.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 155px;
  pointer-events: none;
  top: 40px;
  width: 100%;
  z-index: 2;
}

.why-choose-us-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
  margin-top: 30px;
}
.why-para-text {
  color: rgb(213, 213, 213);
}

.why-choose-us-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.why-choose-us-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0 10px;
  padding-top: 30px;
  padding-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 3rem;
  min-width: 350px;
  font-family: "Space Grotesk", sans-serif;
}
.why-choose-us-card:hover {
  background: linear-gradient(to right, rgb(255, 166, 0), rgb(231, 96, 0));
  color: white;
}

.why-choose-us-icon {
  width: 50px;
  height: 50px;
  background: rgb(233, 233, 233);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  position: absolute;
  top: -25px;
}
.why-choose-us-icon i {
  font-size: 1.4rem;
  opacity: 0.8;
  font-weight: 600;
  color: #ff7700;
}

/* .why-choose-us-icon::before {
        content: "";
        position: absolute;
        width: 40px;
        height: 40px;
        background: #ff6b35;
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
      } */

.why-choose-us-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1200px) {
  .why-choose-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .why-choose-us-title {
    font-size: 2.8rem;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .why-choose-us-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-us-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .why-choose-us-card {
    padding: 30px 20px;
  }

  .why-choose-us-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .why-choose-us-icon::before {
    width: 30px;
    height: 30px;
  }

  .why-choose-us-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .why-choose-us-title {
    font-size: 1.8rem;
  }
}

/* AI Tools Section */

.aiToolName {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.embed-responsive-item {
  border-radius: 15px;
}

.ai-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(0, 102, 255, 0.3);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ai-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 204, 255, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.ai-card:hover::before {
  left: 100%;
}

.ai-card:hover {
  transform: translateY(-10px);
}

.strengthSection {
  padding: 100px 0;
  background: var(--darker-bg);
}

.strengthList {
  list-style: none;
  padding: 0;
}

.strengthList li {
  padding: 12px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 30px;
  transition: all 0.3s ease;
}

.strengthList li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-size: 1.2rem;
}

.strengthList li:hover {
  color: var(--accent-blue);
  transform: translateX(10px);
}

/* partner section  */

.custom-shape-divider-top-1758107932 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1758107932 svg {
  position: relative;
  display: block;
  width: calc(190% + 1.3px);
  height: 49px;
  transform: rotateY(180deg);
}

.custom-shape-divider-top-1758107932 .shape-fill {
  fill: #ffffff;
}

.partnersSection {
  padding: 5rem 0;
  background: linear-gradient(rgb(231, 241, 255), white);
  backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
}

.partnersSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(99, 102, 241, 0.5) 20%,
    rgba(139, 92, 246, 0.5) 50%,
    rgba(236, 72, 153, 0.5) 80%,
    transparent 100%
  );
}

.sectionHeadingBox {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4rem;
}

.sectionSubtitleText {
  background: linear-gradient(90deg, #c64500, #ff9327);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  position: relative;
}

.sectionSubtitleText::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff9900, #ff661a);
  border-radius: 2px;
}

.mainHeading {
  font-size: 36px;
  font-weight: 800;
  color: #002b5c;
  line-height: 1.1;

  margin-top: 2rem;
}

.scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.scroll-content {
  display: flex;
  will-change: transform;
}

.item {
  flex: 0 0 auto;
  min-width: 250px;
  height: 100px;
  margin-right: 10px;
  background-color: white;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.item img {
  height: 100px;
}

/* Testimonials */

.tesimonialBox {
  /* background: var(--card-bg); */
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 102, 255, 0.3);
  backdrop-filter: blur(15px);
  text-align: center;
}

.tesimonialBox img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--accent-blue);
  margin-bottom: 20px;
}

/* .testimonialSection  */

.pazy-testi {
  background-image: linear-gradient(
    to bottom,
    #e9e9e9,
    #e7e7ed,
    #e3e4f1,
    #dfe3f5,
    #d9e1f9,
    #d2e5fb,
    #cce9fc,
    #c8ecfa,
    #d1f2f2,
    #e2f6ed,
    #f3f9ee,
    #fffdf6
  );
  background: linear-gradient(
      to bottom,
      #e9e9e9,
      #e7e7ed,
      #e3e4f1,
      #dfe3f5,
      #d9e1f9a2,
      #d2e5fbb3,
      #cce9fca5,
      #c8ecfa,
      #d1f2f2,
      #e2f6ed,
      #f3f9ee,
      #fffdf6
    ),
    url(./images/WaveLine.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.testimonialSection {
  padding: 5rem 0;
  /* background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.95) 50%,
    rgba(241, 245, 249, 0.9) 100%
  ); */
  /* border-radius: 2rem; */

  position: relative;
  overflow: hidden;
}

.swiper {
  width: 100%;
  padding-bottom: 22px;
}

.swiper-slide {
  width: 350px;
  height: auto;
}

.testimonialBox {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.testimonialBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonialBox:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(99, 102, 241, 0.2);
}

.testimonialBox:hover::before {
  transform: scaleX(1);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  /* border-radius: 50%; */
  margin: 0 auto 1rem auto;
  /* background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 1.5rem;
  font-weight: 600;
  /* box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3); */
}

.testiContent p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  flex: 1;
}

.testiContent p::before {
  content: '"';
  font-size: 4rem;
  color: rgba(99, 102, 241, 0.2);
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.testiContent h4 {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.company-info {
  color: #6366f1;
  font-size: 0.95rem;
  font-weight: 500;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: rgba(99, 102, 241, 0.3);
  opacity: 1;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #6366f1;
  transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: #6366f1 !important;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .testimonialSection {
    padding: 3rem 0;
  }

  .testimonialBox {
    padding: 2rem;
  }

  .container-fluid {
    padding: 0 1rem;
  }
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  animation: floattesti 6s ease-in-out infinite;
}

.circle-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 40px;
  height: 40px;
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes floattesti {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* contact section  */

.contactSection {
  position: relative;
  width: 100%;
  background: linear-gradient(to right, rgba(198, 66, 0, 0.95), #001c9bed),
    url(./images/pattern.svg);
  padding: 0 0 0 2rem;
  /* background: var(--dark-bg); */
  /* padding: 2rem; */
}
.contact-btn {
  border: 2px solid white;
  color: white;
  border-radius: 12px;
  padding: 10px 30px;
  text-decoration: none;
}
.contact-btn:hover {
  color: white;
  text-decoration: none;
  background-color: #ff4800;
}

.contactBox {
  width: 100%;
  border-radius: 20px;
  /* padding: 50px 40px 40px 40px; */
  position: relative;
  margin-top: 30px;
  color: white;
  /* margin: 3rem auto; */
}

.contactBox p {
  font-size: 0.95rem;
  color: #bcbcbc;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 400;
}
.question-data {
  display: flex;
  align-content: center;
  justify-content: space-between;
  overflow-x: hidden;
  max-width: 1500px;
  margin: auto;
}

.question-data img {
  height: 350px;
}

.question-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.question-text h3 {
  font-size: 3rem;
}
.question-text p {
  font-size: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .contactBox {
    padding: 20px 10px;
    border-radius: 16px;
    margin: 1rem 0 0 0;
    margin-top: 30px;
  }

  .question-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
    top: -22px;
  }

  .question-text h3 {
    font-size: 2rem;
  }
  .contactSection {
    padding: 0;
  }

  .mainHeading {
    font-size: 1.5rem;
  }

  .contactBox p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contactBox {
    border-radius: 14px;
  }

  .question-data {
    overflow-x: visible;
  }
  .question-data img {
    display: none;
  }

  .question-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: -20px;
  }

  .contactBox p {
    font-size: 0.85rem;
    margin-bottom: 28px;
  }
  .item {
    min-width: 90px;
    height: 50px;
  }

  .item img {
    height: 40px;
  }
}

/* footer  */

.ai-footer {
  position: relative;
  /* background: linear-gradient(
    135deg,
    #22357824 0%,
    #08001214 50%,
    #08247512 100%
  ); */
  padding: 60px 0 20px;
  overflow: hidden;
  background-size: 6px 6px;
  opacity: 1;
  background: linear-gradient(rgba(3, 11, 58, 0.538), rgba(0, 0, 0, 0.676)),
    url(./images/footer-img-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Animated Background */
.ai-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
}

.neural-network {
  position: absolute;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00d4ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00d4ff;
  animation: pulse 2s ease-in-out infinite;
}

.connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  animation: flow 3s linear infinite;
  transform-origin: left center;
}

.moving-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.glow-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff006e,
    #8338ec,
    #3a86ff,
    transparent
  );
  border-radius: 1px;
  animation: moveLine 8s linear infinite;
  box-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.glow-line:nth-child(2) {
  animation-delay: -2s;
  background: linear-gradient(
    90deg,
    transparent,
    #00f5ff,
    #00d4ff,
    transparent
  );
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.glow-line:nth-child(3) {
  animation-delay: -4s;
  background: linear-gradient(
    90deg,
    transparent,
    #7209b7,
    #f72585,
    transparent
  );
  box-shadow: 0 0 10px rgba(114, 9, 183, 0.5);
}

.glow-line:nth-child(4) {
  animation-delay: -6s;
  background: linear-gradient(
    90deg,
    transparent,
    #06ffa5,
    #4cc9f0,
    transparent
  );
  box-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

/* Floating particleFooters */
.particleFooter {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

/* Main Content */

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 10px;
}

.footer-section:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
}

.logo-section img {
  max-width: 180px;
  margin-bottom: 20px;
}

.ai-tagline {
  font-size: 14px;
  color: #0090ff;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ff006e, #8338ec);
  border-radius: 1px;
}

.footer-list {
  list-style: none;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.footer-list a:hover {
  color: #0090ff;
  padding-left: 10px;
}

.address-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  /* margin-bottom: 15px; */
  font-size: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
  flex-shrink: 0;
  color: rgb(255, 255, 255);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 0fr);
  gap: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(226, 226, 226, 0.765);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 5px;
}

.social-link:hover {
  background: white;
  transform: scale(1.1);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes flow {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

@keyframes moveLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100vw);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-section {
    padding: 20px;
  }

  .social-grid {
    grid-template-columns: repeat(4, 0fr);
  }
  .sectionSubtitleText {
    font-size: 10px;
  }
}
