* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* overflow: hidden; */
  font-weight: 400 !important;
  font-family: "Raleway", sans-serif;
}

body {
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif; */
  background: #000;
  color: #fff;
  /* overflow-x: hidden; */
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

/* Navigation */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  z-index: 100;
}

.logo {
  font-size: 32px;
  /* font-weight: 700; */
  letter-spacing: -1px;
}

.menu-icon {
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 101;
}

.menu-icon span {
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

.menu-icon:hover span {
  background: rgba(0, 255, 200, 1);
}

/* Full Screen Menu */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-close {
  position: absolute;
  top: 30px;
  right: 50px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
}

.menu-close span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  top: 50%;
  left: 0;
  transition: 0.3s;
}

.menu-close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.menu-close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

.menu-close:hover span {
  background: rgba(0, 255, 200, 1);
}

.menu-content {
  text-align: center;
}

.menu-logo {
  font-size: 32px;
  /* font-weight: 700; */
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease 0.2s;
}

.fullscreen-menu.active .menu-logo {
  opacity: 1;
  transform: translateY(0);
}

.menu-items {
  list-style: none;
}

.menu-items li {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.fullscreen-menu.active .menu-items li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.fullscreen-menu.active .menu-items li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.fullscreen-menu.active .menu-items li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.fullscreen-menu.active .menu-items li:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.fullscreen-menu.active .menu-items li:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.fullscreen-menu.active .menu-items li:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.menu-items a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(40px, 6vw, 80px);
  /* font-weight: 700; */
  letter-spacing: -2px;
  transition: 0.3s;
  display: inline-block;
}

.menu-items a:hover {
  color: rgba(0, 255, 200, 1);
  transform: translateX(20px);
}

.menu-footer {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease 0.8s;
}

.fullscreen-menu.active .menu-footer {
  opacity: 1;
  transform: translateY(0);
}

.menu-footer p {
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 1400px;
}

.hero-title {
  font-size: clamp(60px, 12vw, 180px);
  /* font-weight: 700; */
  line-height: 1.1;
  letter-spacing: -4px;
  margin-bottom: 60px;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 3px;
  text-transform: uppercase;
  /* font-weight: 400; */
  opacity: 0.9;
}

/* 3D Sphere Background */
.sphere-container {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 900px;
  height: 900px;
  z-index: 1;
}

.sphere {
  position: relative;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Curved lines */
.line {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid;
  border-radius: 50%;
  opacity: 0.6;
}

.line:nth-child(1) {
  border-color: rgba(0, 255, 255, 0.6);
  transform: rotateX(70deg) rotateY(20deg);
  animation: pulse1 3s ease-in-out infinite;
}

.line:nth-child(2) {
  border-color: rgba(138, 43, 226, 0.6);
  transform: rotateX(50deg) rotateY(40deg);
  animation: pulse2 3s ease-in-out infinite 0.5s;
}

.line:nth-child(3) {
  border-color: rgba(255, 0, 255, 0.6);
  transform: rotateX(30deg) rotateY(60deg);
  animation: pulse3 3s ease-in-out infinite 1s;
}

.line:nth-child(4) {
  border-color: rgba(0, 255, 200, 0.6);
  transform: rotateX(10deg) rotateY(80deg);
  animation: pulse1 3s ease-in-out infinite 1.5s;
}

@keyframes pulse1 {
  0%,
  100% {
    opacity: 0.6;
    border-width: 2px;
  }
  50% {
    opacity: 1;
    border-width: 3px;
  }
}

@keyframes pulse2 {
  0%,
  100% {
    opacity: 0.5;
    border-width: 2px;
  }
  50% {
    opacity: 0.9;
    border-width: 3px;
  }
}

@keyframes pulse3 {
  0%,
  100% {
    opacity: 0.4;
    border-width: 2px;
  }
  50% {
    opacity: 0.8;
    border-width: 3px;
  }
}

/* Glowing dot */
.glow-dot {
  position: absolute;
  top: 30%;
  right: 35%;
  width: 20px;
  height: 20px;
  background: rgba(0, 255, 200, 1);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 255, 200, 0.8), 0 0 80px rgba(0, 255, 200, 0.4);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .sphere-container {
    width: 700px;
    height: 700px;
    right: -20%;
  }

  nav {
    padding: 20px 30px;
  }
}

@media (max-width: 768px) {
  .sphere-container {
    width: 500px;
    height: 500px;
    right: -30%;
  }

  .hero-title {
    margin-bottom: 40px;
  }

  nav {
    padding: 20px 25px;
  }

  .logo {
    font-size: 24px;
  }

  .menu-close {
    right: 25px;
  }
}

@media (max-width: 480px) {
  .sphere-container {
    width: 400px;
    height: 400px;
    right: -40%;
  }
}

/* ------------------------------------------------- */

/* About Section */
.about-section {
  background: #000;
  color: #fff;
  padding: 120px 50px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 40px;
  /* color: rgba(0, 255, 200, 1); */
}

.about-content p {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.about-content .highlight {
  /* color: rgba(0, 255, 200, 1); */
  color: #3961e6;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  /* color: rgba(0, 255, 200, 1); */
  color: #fff;
  /* border: 2px solid rgba(0, 255, 200, 1); */
  border: 2px solid #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: rgba(0, 255, 200, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.3);
  transform: translateY(-3px);
}

.about-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-element {
  width: 400px;
  height: 300px;
  position: relative;
  /* animation: float 6s ease-in-out infinite; */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.visual-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.visual-element:hover img {
  transform: scale(1.05);
}

.visual-element::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(
    45deg,
    rgba(0, 255, 200, 0.6),
    rgba(138, 43, 226, 0.6),
    rgba(255, 0, 255, 0.6)
  );
  z-index: 1;
  border-radius: 12px;
  animation: rotate 8s linear infinite;
  opacity: 0.7;
}

.visual-element::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: #000;
  z-index: 1;
  border-radius: 8px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 3D Sphere Background */
.sphere-container {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 900px;
  height: 900px;
  z-index: 1;
}

.sphere {
  position: relative;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Curved lines */
.line {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid;
  border-radius: 50%;
  opacity: 0.6;
}

.line:nth-child(1) {
  border-color: rgba(0, 255, 255, 0.6);
  transform: rotateX(70deg) rotateY(20deg);
  animation: pulse1 3s ease-in-out infinite;
}

.line:nth-child(2) {
  border-color: rgba(138, 43, 226, 0.6);
  transform: rotateX(50deg) rotateY(40deg);
  animation: pulse2 3s ease-in-out infinite 0.5s;
}

.line:nth-child(3) {
  border-color: rgba(255, 0, 255, 0.6);
  transform: rotateX(30deg) rotateY(60deg);
  animation: pulse3 3s ease-in-out infinite 1s;
}

.line:nth-child(4) {
  border-color: rgba(0, 255, 200, 0.6);
  transform: rotateX(10deg) rotateY(80deg);
  animation: pulse1 3s ease-in-out infinite 1.5s;
}

@keyframes pulse1 {
  0%,
  100% {
    opacity: 0.6;
    border-width: 2px;
  }
  50% {
    opacity: 1;
    border-width: 3px;
  }
}

@keyframes pulse2 {
  0%,
  100% {
    opacity: 0.5;
    border-width: 2px;
  }
  50% {
    opacity: 0.9;
    border-width: 3px;
  }
}

@keyframes pulse3 {
  0%,
  100% {
    opacity: 0.4;
    border-width: 2px;
  }
  50% {
    opacity: 0.8;
    border-width: 3px;
  }
}

/* Glowing dot */
.glow-dot {
  position: absolute;
  top: 30%;
  right: 35%;
  width: 20px;
  height: 20px;
  background: rgba(0, 255, 200, 1);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 255, 200, 0.8), 0 0 80px rgba(0, 255, 200, 0.4);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .sphere-container {
    width: 700px;
    height: 700px;
    right: -20%;
  }

  nav {
    padding: 20px 30px;
  }

  .about-container {
    gap: 60px;
  }

  .about-visual {
    height: 400px;
  }

  .visual-element {
    width: 350px;
    height: 260px;
  }
}

@media (max-width: 768px) {
  .sphere-container {
    width: 500px;
    height: 500px;
    right: -30%;
  }

  .hero-title {
    margin-bottom: 40px;
  }

  nav {
    padding: 20px 25px;
  }

  .logo {
    font-size: 24px;
  }

  .menu-close {
    right: 25px;
  }

  .about-section {
    padding: 80px 30px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual {
    height: 300px;
    order: -1;
  }

  .visual-element {
    width: 300px;
    height: 225px;
  }
}

@media (max-width: 480px) {
  .sphere-container {
    width: 400px;
    height: 400px;
    right: -40%;
  }

  .about-section {
    padding: 60px 20px;
  }

  .about-content h2 {
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }

  .visual-element {
    width: 280px;
    height: 210px;
  }
}

/* ------------------------------------------------------ */

/* Services/Features Section */
.services-section {
  background: #000;
  padding: 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  min-height: 100vh;
}

.service-card {
  position: relative;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:last-child {
  border-right: none;
}

.service-number {
  font-size: clamp(14px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
  letter-spacing: 2px;
  font-weight: 300;
}

.service-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(24px, 2.5vw, 42px);
  font-weight: 300;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .services-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-card:nth-child(3n) {
    border-right: none;
  }

  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    padding: 50px 30px;
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-card:nth-child(2n) {
    border-right: none;
  }

  .service-card:nth-child(4),
  .service-card:nth-child(6) {
    border-bottom: none;
  }

  .service-card:nth-child(5) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-number {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .services-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-card {
    padding: 40px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .service-number {
    margin-bottom: 0;
    font-size: 16px;
  }

  .service-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: clamp(20px, 5vw, 28px);
    text-align: left;
  }
}
/* ------------------------------------------------------------------------- */

.stats-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.stats-container {
  width: 100%;
  max-width: 1400px;
  padding: 80px 60px;
}

.stats-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}

.stats-header::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(500px, 80%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
}

.stats-header h2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 400;
  letter-spacing: clamp(4px, 0.8vw, 6px);
  text-transform: uppercase;
}

.stats-grid {
  max-width: 100%;
  margin: 0 auto;
}

.stat-item {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  padding: clamp(30px, 5vw, 50px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  gap: clamp(20px, 4vw, 40px);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-number {
  text-align: right;
  padding-right: clamp(20px, 5vw, 80px);
}

.stat-number h3 {
  color: #fff;
  font-size: clamp(48px, 10vw, 140px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -2px;
}

.stat-label {
  padding-left: clamp(20px, 5vw, 80px);
}

.stat-label p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(18px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 900px) {
  .stats-container {
    padding: 60px 40px;
  }

  .stat-item {
    grid-template-columns: 40% 60%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .stats-section {
    padding: 40px 15px;
  }

  .stats-container {
    padding: 40px 20px;
  }

  .stats-header {
    margin-bottom: 60px;
  }

  .stats-header::before {
    width: 90%;
  }

  .stat-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 0;
    gap: 15px;
  }

  .stat-number {
    text-align: center;
    padding-right: 0;
    margin-bottom: 10px;
  }

  .stat-label {
    text-align: center;
    padding-left: 0;
  }

  .stat-label p br {
    display: none;
  }

  .stat-label p {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .stats-container {
    padding: 30px 15px;
  }

  .stat-item {
    padding: 25px 0;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .stats-header h2 {
    letter-spacing: 3px;
  }

  .stat-number h3 {
    font-size: 40px;
  }

  .stat-label p {
    font-size: 16px;
  }
}

/* -------------------------------------------------------------------------------- */

.services-showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.services-header h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

/* Service Card */
.service-item {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 1.25rem;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.service-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* LEFT SIDE: Image */
.service-visual {
  width: 100%;
  height: 100%;
  max-height: 280px;
  position: relative;
  overflow: hidden;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-item:hover .service-visual img {
  transform: scale(1.05);
}

/* Image Placeholder with Gradient */
.visual-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 50%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  transition: all 0.5s ease;
}

.service-item:hover .visual-placeholder {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #0f172a 100%);
}

.visual-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(59, 130, 246, 0.3) 0%,
    transparent 50%
  );
  transition: all 0.5s ease;
}

.service-item:hover .visual-placeholder::before {
  background: radial-gradient(
    circle at 30% 50%,
    rgba(59, 130, 246, 0.5) 0%,
    transparent 50%
  );
}

/* RIGHT SIDE: Service Details */
.service-details {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover .service-indicator {
  transform: rotate(15deg);
  background: rgba(59, 130, 246, 0.2);
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  transition: all 0.3s ease;
}

.service-item:hover .indicator-dot {
  transform: scale(1.2);
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
}

.service-index {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 200;
  color: #334155;
  margin-bottom: 0.75rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.service-item:hover .service-index {
  color: #3b82f6;
}

.service-name {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.service-item:hover .service-name {
  background: linear-gradient(135deg, #fff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description-text {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #94a3b8;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.service-item:hover .service-description-text {
  color: #cbd5e1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive */
@media (min-width: 640px) {
  .services-showcase {
    padding: 3rem 2rem;
  }

  .service-details {
    padding: 2.5rem 2rem;
  }

  .service-visual {
    min-height: 320px;
  }

  .visual-placeholder {
    min-height: 320px;
  }
}

@media (min-width: 768px) {
  .services-showcase {
    padding: 4rem 2rem;
  }

  .services-header {
    margin-bottom: 4rem;
  }

  .service-item {
    margin-bottom: 2.5rem;
  }

  .service-details {
    padding: 2.5rem 2.5rem;
  }

  .service-visual {
    min-height: 350px;
  }

  .visual-placeholder {
    min-height: 350px;
  }
}

@media (min-width: 1024px) {
  .service-content-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .service-details {
    padding: 3rem 2.5rem;
  }

  .service-visual {
    min-height: 380px;
  }

  .visual-placeholder {
    min-height: 380px;
  }

  /* Alternate layout for even items */
  .service-item:nth-child(even) .service-content-wrapper {
    direction: rtl;
  }

  .service-item:nth-child(even) .service-content-wrapper > * {
    direction: ltr;
  }
}

@media (min-width: 1280px) {
  .service-content-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .service-details {
    padding: 3rem 3rem;
  }

  .service-visual {
    min-height: 400px;
  }

  .visual-placeholder {
    min-height: 400px;
  }
}

/* ----------------------------------------------------------------- */

.contact-section {
  width: 100%;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 40, 60, 0.8) 40%,
    rgba(0, 120, 180, 0.6) 70%,
    rgba(0, 110, 220, 0.8) 100%
  );
  z-index: 1;
}

/* .grid-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px
          ),
          linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        z-index: 2;
        animation: gridMove 20s linear infinite;
      } */

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

.content-wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.2;
}

.highlight {
  color: #2247b1;
  position: relative;
  display: inline-block;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: #fff;
  color: #000;
  border: none;
  padding: 18px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.5);
}

.cta-button:active {
  transform: translateY(-1px);
}

.floating-icon {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 180, 216, 0.4);
  z-index: 4;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.floating-icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-section {
    min-height: 500px;
    padding: 40px 15px;
  }

  h1 {
    margin-bottom: 20px;
  }

  .subtitle {
    margin-bottom: 40px;
  }

  .cta-button {
    padding: 16px 40px;
    font-size: 1rem;
  }

  .floating-icon {
    width: 60px;
    height: 60px;
    bottom: -20px;
  }

  .floating-icon svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    min-height: 450px;
  }

  .cta-button {
    padding: 14px 35px;
    font-size: 0.95rem;
  }
}

/* ----------------------------------------------------------------- */
/* Footer Section */
.footer-section {
  position: relative;
  background: #000;
  color: #fff;
  padding: 80px 50px 40px;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Footer Top */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.footer-tagline {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Footer Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  margin-bottom: 25px;
  /* color: rgba(0, 255, 200, 0.9); */
  color: #2247b1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: clamp(14px, 1.2vw, 16px);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-list li a:hover {
  color: rgba(0, 255, 200, 1);
  transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
}

.footer-copyright {
  text-align: left;
}

.footer-copyright p {
  font-size: clamp(13px, 1.1vw, 14px);
  color: rgba(255, 255, 255, 0.5);
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: rgba(0, 255, 200, 0.1);
  color: rgba(0, 255, 200, 1);
  border-color: rgba(0, 255, 200, 0.5);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Legal Links */
.footer-legal {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: clamp(13px, 1.1vw, 14px);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: rgba(0, 255, 200, 1);
}

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Decorative Elements */
.footer-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  pointer-events: none;
  opacity: 0.3;
}

.decoration-circle {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border: 2px solid rgba(0, 255, 200, 0.2);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.decoration-line {
  position: absolute;
  top: 100px;
  right: 50px;
  width: 300px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 255, 200, 0.3) 50%,
    transparent 100%
  );
  transform: rotate(-45deg);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .footer-section {
    padding: 60px 40px 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links-grid {
    gap: 40px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-section {
    padding: 50px 30px 25px;
  }

  .footer-top {
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-heading {
    margin-bottom: 20px;
  }

  .footer-bottom {
    gap: 25px;
  }

  .footer-social {
    gap: 15px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .decoration-circle {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .footer-section {
    padding: 40px 20px 20px;
  }

  .footer-top {
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-links-grid {
    gap: 30px;
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-bottom {
    gap: 20px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal .separator {
    display: none;
  }

  .decoration-circle {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .footer-section {
    padding: 35px 15px 15px;
  }

  .footer-links-grid {
    gap: 25px;
  }

  .footer-list {
    gap: 12px;
  }

  .social-link {
    width: 34px;
    height: 34px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }
}

/* --------------------------------------------------------------- */

.faq-container-main {
  min-height: 100vh;
  padding: 3rem 1rem;
}

.faq-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Section */
.faq-header-section {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header-section h1 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.faq-highlight-text {
  color: #2247b1;
}

/* Progress Bar */
.faq-progress-indicator {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #1f2937;
  margin-top: 3rem;
}

.faq-progress-dot {
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  background-color: #2247b1;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* FAQ Section */
.faq-accordion-list {
  margin-top: 2rem;
}

.faq-accordion-item {
  border-bottom: 1px solid #1f2937;
}

.faq-question-button {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  padding: 2rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: color 0.3s ease;
}

.faq-question-button:hover {
  color: #2247b1;
}

.faq-question-button h2 {
  font-size: 1.25rem;
  font-weight: 300;
  flex: 1;
}

.faq-toggle-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-question-button:hover .faq-toggle-icon {
  border-color: #2247b1;
}

.faq-toggle-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-accordion-item.faq-active-item .faq-toggle-icon svg {
  transform: rotate(45deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-accordion-item.faq-active-item .faq-answer-panel {
  max-height: 500px;
  opacity: 1;
}

.faq-answer-content {
  padding: 0 4rem 2rem 0;
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.7;
}

/* Responsive Design */
@media (min-width: 640px) {
  .faq-container-main {
    padding: 4rem 1.5rem;
  }

  .faq-header-section h1 {
    font-size: 2.5rem;
  }

  .faq-question-button h2 {
    font-size: 1.5rem;
  }

  .faq-progress-dot {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 1024px) {
  .faq-container-main {
    padding: 5rem 2rem;
  }

  .faq-header-section {
    margin-bottom: 5rem;
  }

  .faq-header-section h1 {
    font-size: 3rem;
  }

  .faq-question-button h2 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1280px) {
  .faq-header-section h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 639px) {
  .faq-question-button {
    padding: 1.5rem 0;
    gap: 1rem;
  }

  .faq-toggle-icon {
    width: 40px;
    height: 40px;
  }

  .faq-toggle-icon svg {
    width: 20px;
    height: 20px;
  }

  .faq-answer-content {
    padding: 0 3rem 1.5rem 0;
    font-size: 0.9rem;
  }

  .faq-header-section h1 {
    font-size: 1.75rem;
  }
}

/* --------------------------------------------------------------- */

/* Free Tools Section */
.tools-section {
  background: #000;
  padding: 120px 50px;
  position: relative;
  overflow: hidden;
}

.tools-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(34, 71, 177, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 255, 200, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.tools-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Tools Header */
.tools-header {
  text-align: center;
  margin-bottom: 80px;
}

.tools-title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.tools-highlight {
  color: #2247b1;
  position: relative;
}

.tools-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

/* Tool Card */
.tool-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 71, 177, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tool-card:hover {
  transform: translateY(-10px);
  border-color: rgba(34, 71, 177, 0.5);
  box-shadow: 0 20px 60px rgba(34, 71, 177, 0.2);
}

.tool-card:hover::before {
  opacity: 1;
}

/* Tool Icon */
.tool-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2247b1 0%, #3b5bdb 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.tool-card:hover .tool-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(34, 71, 177, 0.4);
}

.tool-icon svg {
  width: 35px;
  height: 35px;
  color: #fff;
}

/* Tool Name */
.tool-name {
  font-size: clamp(22px, 2.5vw, 26px);
  font-weight: 500;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  z-index: 2;
}

/* Tool Description */
.tool-description {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

/* Tool Link */
.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2247b1;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.tool-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.tool-link:hover {
  color: #3b5bdb;
  gap: 12px;
}

.tool-link:hover svg {
  transform: translateX(5px);
}

/* Tools CTA */
.tools-cta {
  text-align: center;
  padding: 60px 30px;
  background: linear-gradient(135deg, rgba(34, 71, 177, 0.1) 0%, rgba(34, 71, 177, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(34, 71, 177, 0.2);
}

.tools-cta p {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-weight: 300;
}

.tools-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: linear-gradient(135deg, #2247b1 0%, #3b5bdb 100%);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(34, 71, 177, 0.3);
}

.tools-cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.tools-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(34, 71, 177, 0.5);
}

.tools-cta-button:hover svg {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tools-section {
    padding: 100px 40px;
  }

  .tools-header {
    margin-bottom: 60px;
  }

  .tools-grid {
    gap: 25px;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .tools-section {
    padding: 80px 30px;
  }

  .tools-header {
    margin-bottom: 50px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .tool-card {
    padding: 35px 25px;
  }

  .tool-icon {
    width: 60px;
    height: 60px;
  }

  .tool-icon svg {
    width: 30px;
    height: 30px;
  }

  .tools-cta {
    padding: 50px 25px;
  }
}

@media (max-width: 480px) {
  .tools-section {
    padding: 60px 20px;
  }

  .tools-header {
    margin-bottom: 40px;
  }

  .tool-card {
    padding: 30px 20px;
  }

  .tool-icon {
    width: 55px;
    height: 55px;
  }

  .tool-icon svg {
    width: 28px;
    height: 28px;
  }

  .tools-cta {
    padding: 40px 20px;
  }

  .tools-cta-button {
    padding: 16px 35px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .tools-section {
    padding: 50px 15px;
  }

  .tool-card {
    padding: 25px 18px;
  }

  .tools-cta {
    padding: 35px 18px;
  }
}

/* --------------------------------------------------------------- */
