* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0F0817;
  color: white;
  min-height: 100vh;
  line-height: 1.6;
  padding-left: 5%;
  padding-right: 5%;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'poppins', sans-serif;
}

p {
  font-family: 'roboto', sans-serif;
}

button {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.headers {
  position: relative;
  width: 100%;
  height: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

header {
  background-color: #f9f9ff;
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  width: 124px;
  height: auto;
}

.logo-text {
  background: linear-gradient(45deg, #0051C8, #ea4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
  font-weight: bold;
}

.logo-subtitle {
  color: #666;
  font-size: 14px;
  font-weight: normal;
  margin-left: 5px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0051C8;
}

.nav-link.active {
  color: #333;
  font-weight: 500;
}

/* Dropdown Arrow */
.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  list-style: none;
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  background-color: #f8f9ff;
  color: #0051C8;
  padding-left: 25px;
}

/* Contact Button */
.contact-btn {
  background: transparent;
  border: 2px solid #0051C8;
  color: #0051C8;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.contact-btn:hover {
  background-color: #0051C8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

/* Mobile Menu Toggle - Fixed Hamburger Size */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  background-color: rgba(66, 133, 244, 0.1);
}

.hamburger {
  width: 20px;
  height: 2px;
  background-color: #333;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
  display: block;
}

.mobile-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Tablet Responsive - 768px to 1024px */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .nav-menu {
    gap: 20px;
  }

  .nav-link {
    font-size: 15px;
  }

  .logo img {
    width: 110px;
  }

  .contact-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* Mobile and Small Tablet Responsive - up to 768px */
@media screen and (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  header {
    padding: 0 15px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 0;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    margin: 10px 0;
  }

  .nav-link {
    padding: 15px 20px;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9ff;
    margin-top: 10px;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item.dropdown-open .dropdown {
    max-height: 300px;
  }

  .nav-item:hover .dropdown {
    max-height: 0;
  }

  .nav-item.dropdown-open:hover .dropdown {
    max-height: 300px;
  }

  .dropdown-link {
    padding: 10px 40px;
    font-size: 14px;
  }

  .dropdown-link:hover {
    padding-left: 40px;
    background-color: #f0f0ff;
  }

  .contact-btn {
    margin: 20px auto 10px auto;
    padding: 14px 40px;
    font-size: 16px;
    display: block;
    text-align: center;
    width: fit-content;
    min-width: 140px;
  }

  .logo img {
    width: 100px;
  }
}

/* Small Mobile - up to 480px */
@media screen and (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  header {
    padding: 0 15px;
  }

  nav {
    height: 60px;
  }

  .nav-menu {
    top: 60px;
    max-height: calc(100vh - 60px);
  }

  .logo img {
    width: 80px;
  }

  .nav-link {
    font-size: 16px;
    padding: 12px 15px;
  }

  .contact-btn {
    padding: 12px 35px;
    font-size: 15px;
    margin: 15px auto 5px auto;
    display: block;
    width: fit-content;
    min-width: 120px;
  }

  /* Smaller hamburger for very small screens */
  .mobile-toggle {
    width: 35px;
    height: 35px;
    padding: 6px;
  }

  .hamburger {
    width: 18px;
    height: 2px;
    margin: 2px 0;
  }
}

/* Very Small Screens - up to 360px */
@media screen and (max-width: 360px) {
  header {
    padding: 0 10px;
  }

  .logo img {
    width: 70px;
  }

  /* Even smaller hamburger for very small screens */
  .mobile-toggle {
    width: 32px;
    height: 32px;
    padding: 5px;
  }

  .hamburger {
    width: 16px;
    height: 1.5px;
    margin: 2px 0;
  }
}

/* Focus States for Accessibility */
.mobile-toggle:focus {
  outline: 2px solid #0051C8;
  outline-offset: 2px;
}

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 15px 60px;
  position: relative;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: bold;
  color: white;
  max-width: 850px;
  width: 100%;
}

.hero-content p {
  font-size: 16px;
  color: #ffffff;
  margin: 20px 0;
  line-height: 1.6;
  max-width: 850px;
  width: 100%;
}

.get-started {
  background-color: #141414;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 20px;
  border-top: 1px solid #22D3EE;
  border-bottom: 1px solid #22D3EE;
}

.get-started:hover {
  background-color: #2a2a2a;
}

.get-started::after {
  content: ">";
  font-family: monospace;
  font-weight: bold;
}

.hero-content span {
  margin-left: 5px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
  display: flex;
  flex-direction: column;
  width: 24px;
  height: 18px;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================= */
/* Responsive Styles */
/* ========================= */

/* Tablets */
@media (max-width: 992px) {
  .nav-links {
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    gap: 25px;
    padding: 30px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-content {
    margin-top: 180px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .get-started {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .hero-content {
    margin-top: 0px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .nav-links {
    gap: 20px;
  }
}


.service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
  margin-top: 40px;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.services-tag {
  display: inline-block;
  background: linear-gradient(90deg, #6a6aff 0%, #a040ff 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.services-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, white 0%, #a0a0ff 100%);
  background-clip: text;
  color: transparent;
}

.services-description {
  color: #c0c0ff;
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(74, 0, 114, 0.1));
  backdrop-filter: blur(8px);
  padding: 2.5rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(147, 51, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(147, 51, 234, 0.1));
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(147, 51, 234, 0.3);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;

}

.icon {
  width: 30px;
  height: 30px;
  color: #b388ff;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #a0aec0;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.solution-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem;
  margin-top: 50px;

}

/* Header Styles */
/* header {
  margin-bottom: 2rem;
}

.solutions-btn {
  background: transparent;
  color: #d8b4fe;
  border: 1px solid #a855f7;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: 30px;
  margin-top: 100px;
}

.solutions-btn:hover {
  background-color: rgba(168, 85, 247, 0.1);
} */

/* Main Content Styles */
.content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Left Column Styles */
.left-column {
  flex: 1;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #c084fc, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.description {
  color: #94a3b8;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.image-containerblock {
  position: relative;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 1;
  margin: 0 auto;
}

.image-containerblock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.image-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3)); */
  border-radius: 1rem;
}

/* Services Grid Styles */
.services-gridbox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-cardbox {
  background-color: #1A1425;
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: background-color 0.3s;
}

.service-cardbox:hover {
  background-color: #231A31;
}

.icon {
  width: 3rem;
  height: 3rem;
  color: #c084fc;
  margin-bottom: 1rem;
}

.service-cardbox h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-cardbox p {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
    padding: 2rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  .services-gridbox {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solution-container {
    padding: 3rem;
  }

  .content {
    flex-direction: row;
    align-items: center;
  }

  h1 {
    font-size: 4rem;
  }

  .left-column {
    width: 50%;
  }

  .image-containerblock {
    margin: 0;
  }

  .services-gridbox {
    width: 50%;
  }
}

.block-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
  position: relative;
}

.process-headers {
  text-align: center;
  margin-bottom: 50px;
}

.process-buttons {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #3a3a5c;
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.process-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.process-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #b8b8c7;
}

/* Cube */
.blockchain-cube {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 200px auto 100px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 30s linear infinite;
}

@keyframes rotateCube {
  0% {
    transform: rotateY(0) rotateX(0);
  }

  100% {
    transform: rotateY(360deg) rotateX(360deg);
  }
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 26, 45, 0.8);
  border: 2px solid #1a5585;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 195, 255, 0.5) inset;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%231a5585" stroke-width="0.5"/></svg>');
}

.cube-face img {
  max-width: 60%;
  max-height: 60%;
}

.front {
  transform: translateZ(150px);
}

.back {
  transform: translateZ(-150px) rotateY(180deg);
}

.right {
  transform: translateX(150px) rotateY(90deg);
}

.left {
  transform: translateX(-150px) rotateY(-90deg);
}

.top {
  transform: translateY(-150px) rotateX(90deg);
}

.bottom {
  transform: translateY(150px) rotateX(-90deg);
}

/* Steps container */
.process-steps {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 120px;
  left: 0;
}

.step {
  position: absolute;
  width: 150px;
  height: 100px;
  background: linear-gradient(145deg, rgba(30, 30, 60, 0.8), rgba(20, 20, 40, 0.8));
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
}

.step-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.step-text {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

/* Step positions (desktop) */
.step-1 {
  top: 20%;
  left: 5%;
}

.step-2 {
  top: 20%;
  right: 5%;
}

.step-3 {
  bottom: 20%;
  left: 5%;
}

.step-4 {
  bottom: 20%;
  right: 5%;
}

.step-5 {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

/* Logo glow */
.bitcoin-logo {
  filter: drop-shadow(0 0 10px rgba(247, 147, 26, 0.7));
}

/* Cube details */
.cube-door {
  position: absolute;
  width: 20px;
  height: 30px;
  background-color: rgba(255, 200, 50, 0.2);
  border: 1px solid rgba(255, 200, 50, 0.5);
  box-shadow: 0 0 10px rgba(255, 200, 50, 0.5);
}

.cube-light {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgba(0, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  animation: lightPulse 2s infinite alternate;
}

@keyframes lightPulse {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

/* ===================== */
/* Responsive Styles */
/* ===================== */

/* Tablets */
@media (max-width: 992px) {
  .process-title {
    font-size: 30px;
  }

  .process-description {
    font-size: 15px;
  }

  .blockchain-cube {
    width: 250px;
    height: 250px;
    margin-top: 150px;
  }

  .step {
    width: 130px;
    height: 90px;
    font-size: 13px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .blockchain-cube {
    width: 200px;
    height: 200px;
    margin-top: 100px;
  }

  .process-steps {
    position: relative;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }

  .step {
    position: relative;
    width: 45%;
    max-width: 180px;
    height: auto;
    padding: 20px;
  }

  .headers {
    height: 0vh;

  }

  .step-1,
  .step-2,
  .step-3,
  .step-4,
  .step-5 {
    all: unset;
    position: relative;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .process-title {
    font-size: 24px;
  }

  .process-description {
    font-size: 14px;
  }

  .blockchain-cube {
    width: 160px;
    height: 160px;
  }

  .step {
    width: 100%;
    max-width: 250px;
  }
}

.body-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  margin-top: 150px;
}

.body-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid #6a5acd;
  border-radius: 25px;
  background: rgba(106, 90, 205, 0.1);
  color: #9d8df1;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-title {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #c084fc, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: rgba(20, 25, 40, 0.8);
  border: 1px solid rgba(106, 90, 205, 0.3);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(106, 90, 205, 0.1), rgba(138, 43, 226, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(106, 90, 205, 0.8);
  box-shadow: 0 20px 40px rgba(106, 90, 205, 0.2);
}

.card:hover::before {
  opacity: 1;
}

.card-type {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #e0e0e0;
  position: relative;
  z-index: 2;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b8b8b8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}





@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes glow {
  0% {
    text-shadow: 0 0 10px #ff6b35;
  }

  100% {
    text-shadow: 0 0 20px #ff6b35, 0 0 30px #ff4500;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes flash {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .main-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .card-type {
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  .card-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }

  .process-badge {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }

  .card {
    padding: 1.2rem;
  }

  .card-type {
    font-size: 1.3rem;
  }

  .card-image {
    height: 120px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 3rem;
  }

  .main-title {
    font-size: 3.5rem;
  }

  .grid {
    gap: 2.5rem;
  }
}

/* Dark theme enhancements */
.card {
  background: linear-gradient(145deg, rgba(15, 20, 35, 0.9), rgba(25, 30, 50, 0.8));
  border: 1px solid rgba(106, 90, 205, 0.2);
}

.card:hover {
  background: linear-gradient(145deg, rgba(20, 25, 40, 0.95), rgba(30, 35, 55, 0.9));
}

/* Particle effect overlay */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(106, 90, 205, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(106, 90, 205, 0.05) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px, 40px 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}


/* Main container */
.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  position: relative;
}

.process-header {
  text-align: center;
  margin-bottom: 50px;
}

.process-button {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #3a3a5c;
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.process-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.process-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #b8b8c7;
}

/* Platforms grid */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  /* margin-top: 2rem; */
}

/* Platform card */
.platform-card {
  background-color: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(128, 90, 213, 0.3);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(128, 90, 213, 0.3);
}

/* Platform icon */
.platform-icon {
  width: 60px;
  height: 60px;
  margin-right: 1.5rem;
  object-fit: contain;
}

/* Platform name */
.platform-name {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
  }

  .platforms-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .platform-card {
    padding: 1rem;
  }

  .platform-icon {
    width: 40px;
    height: 40px;
  }

  .platform-name {
    font-size: 1.2rem;
  }
}

/* Main container */

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  position: relative;
}

.process-header {
  text-align: center;
  margin-bottom: 50px;
}

.process-button {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #3a3a5c;
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.process-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.process-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #b8b8c7;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Feature card */
.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 500px;
  background-color: #0a0a0a;
  border: 1px solid rgba(128, 90, 213, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(128, 90, 213, 0.2);
}

/* Feature image */
.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-image {
  opacity: 0.6;
}

/* Feature title */
.feature-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .feature-title {
    padding: 1rem;
    font-size: 1.1rem;
  }
}

/* Main container with futuristic border */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem;
  background-color: rgba(15, 15, 20, 0.7);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(100, 100, 150, 0.3);
  margin-top: 100px;
}

/* Angled corners for futuristic look */
.faq-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-top: 1px solid rgba(100, 100, 150, 0.5);
  border-right: 1px solid rgba(100, 100, 150, 0.5);
}

.faq-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-bottom: 1px solid rgba(100, 100, 150, 0.5);
  border-left: 1px solid rgba(100, 100, 150, 0.5);
}

/* Flex container for the FAQ content */
.faq-content {
  display: flex;
  gap: 5%;
}

/* Left side with title and description */
.faq-intro {
  flex: 0 0 35%;
}

/* Main heading - FAQ */
.faq-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #c084fc, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* color: #cfd3e6;
  text-transform: uppercase; */
  /* letter-spacing: 1px; */
  line-height: 1.2;
}

/* Full form of FAQ in parentheses */
.faq-full-form {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #c084fc, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Description text */
.faq-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #8a90a5;
}

/* Right side with accordion questions */
.faq-questions {
  flex: 0 0 60%;
}

/* Accordion styles */
.accordion {
  width: 100%;
}

.accordion-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(100, 100, 150, 0.3);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  color: #a2a7be;
}

.accordion-title {
  font-size: 1rem;
  font-weight: 500;
  color: #cfd3e6;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: #cfd3e6;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
}

.accordion-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion-item.active .accordion-icon::after {
  opacity: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem 0 0;
  opacity: 0;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 1rem;
  opacity: 1;
}

.accordion-text {
  color: #8a90a5;
  line-height: 1.6;
  padding-top: 0.5rem;
}

/* Responsive styles */
@media (max-width: 992px) {
  .faq-container {
    padding: 2rem;
  }

  .faq-content {
    flex-direction: column;
    gap: 2rem;
  }

  .faq-intro,
  .faq-questions {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .faq-heading {
    font-size: 2rem;
  }

  .faq-full-form {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .faq-container {
    padding: 1.5rem;
  }

  .faq-heading {
    font-size: 1.8rem;
  }

  .faq-full-form {
    font-size: 1rem;
  }

  .accordion-title {
    font-size: 0.9rem;
  }
}

/* Footer Styles */
.footer {
  background-color: #f8f9ff;
  padding: 60px 0 30px 0;
  color: #333;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* Company Info Section */
.footer-company {
  grid-column: span 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.footer-logo img {
  width: 120px;
  height: auto;
  margin-right: 10px;
}

.company-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Social Media Icons */
.social-media {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  color: white;
}

.social-icon.linkedin {
  background-color: #0077b5;
}

.social-icon.twitter {
  background-color: #000;
}

.social-icon.facebook {
  background-color: #1877f2;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.threads {
  background-color: #000;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer Sections */
.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer-links a:hover {
  color: #0051C8;
  padding-left: 5px;
}

/* Contact Section */
.contact-infos {
  list-style: none;
}

.contact-infos li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #666;
  font-size: 15px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  color: #0051C8;
}

.contact-text {
  line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  text-align: center;
}

.copyright {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-company {
    grid-column: span 1;
  }

  .footer-container {
    padding: 0 30px;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 0 20px 0;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-company {
    grid-column: span 2;
    text-align: center;
    margin-bottom: 20px;
  }

  .company-description {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .social-media {
    justify-content: center;
  }

  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .contact-infos li {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .contact-icon {
    width: 18px;
    height: 18px;
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .footer {
    padding: 30px 0 15px 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }

  .footer-company {
    grid-column: span 1;
    margin-bottom: 15px;
  }

  .footer-logo img {
    width: 100px;
  }

  .company-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-links a {
    padding: 8px 0;
  }

  .contact-infos li {
    justify-content: flex-start;
    text-align: left;
  }

  .copyright {
    font-size: 13px;
    padding: 0 10px;
  }
}

/* Very Small Screens */
@media screen and (max-width: 360px) {
  .footer-container {
    padding: 0 10px;
  }

  .social-media {
    gap: 10px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .contact-infos li {
    margin-bottom: 12px;
  }
}

/* Landscape Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .footer {
    padding: 20px 0 10px 0;
  }

  .footer-content {
    margin-bottom: 15px;
  }

  .footer-section h3 {
    margin-bottom: 15px;
  }
}

/* ============================================
   Standardized Font Sizes for Headings & Paragraphs
   Ensures consistent sizing across ALL sections.
   h1 = 60px base, scaled down proportionally.
   ============================================ */
h1 {
  font-size: 53px !important;
  font-weight: 700 !important;
  line-height: 72px !important;
}

h2 {
  font-size: 40px !important;
  font-weight: 700 !important;
  line-height: 58px !important;
}

h3 {
  font-size: 25px !important;
  font-weight: 600 !important;
  line-height: 43px !important;
}

h4 {
  font-size: 21px !important;
  font-weight: 600 !important;
  line-height: 34px !important;
}

h5 {
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 29px !important;
}

h6 {
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 24px !important;
}

p {
  font-family: "Open Sans", sans-serif !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 28px !important;
}
