* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

canvas#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0d1b2a, #1b263b, #415a77, #0d1b2a);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  z-index: 1;
  opacity: 0.8;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.9;
}

.content span {
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.8;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

.content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #c0c0c0;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

.content span {
  display: block;
  font-weight: 500;
  color: #c0c0c0;
  margin-bottom: 30px;
}

button {
  background-color: #00bfff;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

button:hover {
  background-color: #009acd;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.8);
}

body {
  background-color: #0b0c10;
  font-family: "Poppins", sans-serif;
}

/* WHO WE ARE SECTION */

/* OUR SERVICES */
.services-section {
  background-color: #0b0c10;
  padding: 90px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #c0c0c0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
  justify-content: center;
}

.service-card {
  position: relative;
  background: rgba(20, 22, 26, 0.9);
  border-radius: 20px;
  padding: 2px;
  overflow: hidden;
  animation: floatCard 2.5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00bfff 0%, #0078a0 100%);
  opacity: 1;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.35);
}

.service-card:hover::before {
  opacity: 1;
}

.card-inner {
  background: #0b0c10;
  border-radius: 18px;
  padding: 40px 25px;
  position: relative;
  z-index: 2;
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 1.4rem;
  color: #00bfff;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #c0c0c0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }
  .service-card p {
    font-size: 0.95rem;
  }
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #c0c0c0;
  background: #0f172a;
  z-index: 1;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 25%, #1e293b 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, #334155 0%, transparent 50%),
    linear-gradient(120deg, #0b1a33, #112b44, #0b1a33);
  background-size: 250% 250%;
  animation: smoothWave 10s ease-in-out infinite alternate;
  z-index: 0;
  opacity: 0.8;
  filter: blur(10px);
}

@keyframes smoothWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 80px;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: linear-gradient(180deg, #00bfff, #00eaff);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-content {
  display: inline-block;
  background: rgba(17, 25, 40, 0.85);
  backdrop-filter: blur(10px);
  color: #c0c0c0;
  padding: 20px 25px;
  border-radius: 14px;
  border: 1px solid rgba(0, 191, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-content h3 {
  font-size: 1.2rem;
  color: #00bfff;
  font-weight: 600;
  margin: 0;
}

.timeline-item:hover .timeline-content {
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.4);
  transform: translateY(-5px);
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #00bfff;
  border-radius: 50%;
  top: 40px;
  right: -9px;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.6);
  z-index: 3;
}

.timeline-item:nth-child(even)::before {
  left: -9px;
  right: auto;
}

@media (max-width: 768px) {
  .timeline::after {
    left: 15px !important;
    width: 3px;
  }

  .timeline-item {
    width: 100% !important;
    left: 0 !important;
    padding: 20px 20px 20px 55px !important;
    margin: 25px 0;
    text-align: left !important;
    box-sizing: border-box;
  }

  .timeline-item::before {
    left: 8px !important;
    right: auto !important;
    top: 30px !important;
    width: 16px;
    height: 16px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0 !important;
    text-align: left !important;
  }

  .timeline-content {
    width: 100% !important;
    padding: 18px !important;
    display: block !important;
  }

  .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 40px !important;
  }
}

.why-choose {
  background: linear-gradient(135deg, #0a0e18, #0d1a2b);
  padding: 90px 20px;
  text-align: center;
  color: #c0c0c0;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.choose-card {
  background: rgba(15, 18, 25, 0.9);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 20px;
  color: #c0c0c0;
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.08);
}

.choose-card:hover {
  border-color: #00bfff;
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.25);
  transform: translateY(-5px);
  color: #ffffff;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .choose-card {
    font-size: 0.95rem;
    padding: 20px;
  }
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #02060f;
  color: #fff;
  overflow-x: hidden;
}

section.why-choose {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 80px 20px;
  background: radial-gradient(circle at top left, #0a0f1a 0%, #010308 100%);
}

.container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.image-side img {
  width: 380px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.3));
  opacity: 0.9;
}

.text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: 2.8rem;
  color: #00bfff;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
}

.reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reason {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.03);
}

.reason:hover {
  background: rgba(0, 191, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.3);
  transform: translateX(6px);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.reason span {
  font-size: 1.3rem;
  min-width: 25px;
  text-align: center;
}

@media (max-width: 992px) {
  .container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .image-side img {
    width: 300px;
  }

  .reason {
    justify-content: center;
  }
}
