* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --cn-solid-black: #000;
  --cn-dark-black: #1a1a1a;
  --cn-dark-solid: #020617;
  --cn-dark-transparent: #02061731;
  --cn-dark-900: #0f172a;
  --cn-dark-800: #1e293b;
  --cn-dark-700: #334155;
  --cn-dark-600: #475569;
  --cn-dark-300: #e2e8f0;
  --cn-dark-200: #f1f6fc;
  --cn-blue-100: #dbeafe;
  --cn-blue-main: #035aa6;
  --cn-orange-main: #fa8c16;
  --cn-orange-100: #ffedd5;
  --cn-green-600: #16a34a;
  --cn-green-100: #dcfce7;
  --cn-purple-600: #9333ea;
  --cn-purple-100: #f3e8ff;
  --cn-pink-100: #fce7f3;
  --cn-yellow-100: #fef9c3;
  --cn-light-solid: #ffffff;
  --cn-gray-300: #d1d5db;
  --cn-gray-400: #9ca3af;
  --cn-gray-600: #4b5563;
  --cn-gray-700: #374151;
  --cn-font-main: "Inter", sans-serif;
  --cn-font-heading: "Open Sans", sans-serif;
  --cn-radius: 16px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--cn-font-main);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--cn-gray-300);
  line-height: 1.4;
}
ul {
  list-style-type: none;
}
h1,
h2,
h3 {
  font-family: var(--cn-font-heading);
}
p:not(:last-child) {
  margin-bottom: 1.5rem;
}
a {
  text-decoration: none;
  color: var(--cn-orange-main);
}
img {
  max-width: 100%;
}
/* Navigation */
nav {
  background-color: var(--cn-solid-black);
  color: var(--cn-light-solid);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--cn-dark-900);
  padding: 0.75rem 0;
}
.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
nav .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  display: block;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--cn-light-solid);
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}
.nav-links a:hover {
  color: var(--cn-orange-main);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cn-light-solid);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  text-align: center;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  color: var(--cn-light-solid);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}
main > section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
main > section .anchorePoint {
  position: absolute;
  top: -5rem;
  height: 1px;
  width: 1px;
  left: 0;
}
/* Hero Section */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cn-dark-solid) url(../images/bg.svg) no-repeat center
    center / cover;
  color: var(--cn-light-solid);
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}
.blurBg {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: fade-in 2s;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.blurBg span {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
  top: 0;
  right: 0;
  animation: float 12s ease-in-out infinite alternate;
}

/* Blob 1 */
.blurBg span:nth-child(1) {
  background: var(--cn-blue-main);
  top: 10%;
  left: 15%;
  animation-duration: 10s;
}

/* Blob 2 */
.blurBg span:nth-child(2) {
  background: var(--cn-dark-solid);
  top: 10%;
  right: 15%;
  animation-duration: 12s;
}

/* Blob 3 */
.blurBg span:nth-child(3) {
  background: var(--cn-orange-main);
  opacity: 0.5;
  top: 50%;
  right: 30%;
  animation-duration: 10s;
}

@keyframes float {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  50% {
    transform: translate(30px, -40px) scale(1.05);
  }
  100% {
    transform: translate(-20px, 20px) scale(0.98);
  }
}
.heroContent {
  position: relative;
  z-index: 1;
  max-width: 896px;
  text-align: center;
  margin: 0 auto;
}
.heroLabel {
  font-family: var(--cn-font-heading);
  font-size: 1.25rem;
  color: var(--cn-orange-main);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  animation: heroLabel 1.25s;
}
@keyframes heroLabel {
  from {
    transform: translateY(1rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
h1 {
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: heroHeading 1.5s;
}
@keyframes heroHeading {
  from {
    transform: translateY(-1rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
h1 span {
  color: var(--cn-orange-main);
}
.hero p {
  color: var(--cn-gray-300);
  animation: heroParagraph 1.5s;
}
@keyframes heroParagraph {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.heroButtons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}
/* Glass Button */
.glassBtn {
  position: relative;
  padding: 1rem 2.5rem;
  color: #fff;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  animation: glassBtn 1s;
}
@keyframes glassBtn {
  from {
    transform: translateX(5rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Hover effect */
.glassBtn:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Shine sweep */
.glassBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: 0.6s;
}

.glassBtn:hover::before {
  left: 100%;
}

.animatedBtn {
  position: relative;
  padding: 1rem 2.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--cn-dark-900), var(--cn-blue-main));
  border: 1px solid var(--cn-blue-main);
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
nav .animatedBtn {
  padding: 0.5rem 1.5rem;
  cursor: pointer;
}
.heroButtons .animatedBtn {
  animation: animatedBtn 1s;
}
@keyframes animatedBtn {
  from {
    transform: translateX(-5rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Hover lift effect */
.animatedBtn:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Shine animation */
.animatedBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: 0.6s;
}

.animatedBtn:hover::before {
  left: 100%;
}

/* Section Styles */
section {
  padding: 5rem 1.5rem;
}

.sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}
.sectionHeader h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--cn-blue-main);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.sectionHeader h2 span {
  color: var(--cn-orange-main);
  margin-left: 10px;
}
.sectionHeader h2::before,
.sectionHeader h2::after {
  content: "";
  opacity: 0.5;
  flex: 1;
  height: 1px;
}
.sectionHeader h2::before {
  margin-right: 16px;
  background: linear-gradient(
    270deg,
    var(--cn-blue-main) 0%,
    rgba(7, 18, 50, 0) 100%
  );
}
.sectionHeader h2::after {
  margin-left: 16px;
  background: linear-gradient(
    270deg,
    rgba(7, 18, 50, 0) 0%,
    var(--cn-orange-main) 100%
  );
}

/* Trust Section */
.trustSection {
  background-color: var(--cn-dark-solid);
}
.highlightsGrid {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  position: relative;
}
.highlightsGrid::before {
  content: "";
  background: var(--cn-blue-main);
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.highlightCard {
  padding: 1.5rem;
  border-top: 3px solid rgba(255, 154, 31, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--cn-radius);
  flex: 0 0 calc(50% - 0.75rem);
  display: flex;
  align-items: center;
}
.sectionImg {
  width: 80px;
  margin: 0 30px 0 0;
  opacity: 0.7;
}
.highlightCard h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--cn-orange-main);
}

/* Services Section */
.servicesSection {
  background: var(--cn-dark-900);
  position: relative;
}
.servicesGrid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.serviceCard {
  display: flex;
  align-items: center;
}
.serviceCard:nth-child(2n + 2) {
  flex-direction: row-reverse;
}
.serviceImg {
  flex: 0 0 40%;
  position: relative;
}
.serviceImg::before,
.serviceImg::after {
  content: "";
  position: absolute;
}
.serviceImg::before {
  background: var(--cn-blue-main);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  top: 40%;
  left: 0;
  transform: translate(-50%, -50%);
}
.serviceImg::after {
  background-color: var(--cn-dark-900);
  filter: blur(16px);
  top: -1rem;
  right: -1rem;
  border-radius: var(--cn-radius);
  height: 100%;
  width: 100%;
}
.serviceImg img {
  border-radius: var(--cn-radius);
  position: relative;
  display: block;
  z-index: 1;
}
.serviceContent {
  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.28) 0%,
    rgba(3, 90, 166, 0.2) 100%
  );
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 3rem;
  border-radius: var(--cn-radius);
  position: relative;
  left: -50px;
  flex: 1;
  z-index: 1;
  color: var(--cn-gray-400);
}
.serviceCard:nth-child(2n + 2) .serviceContent {
  background: linear-gradient(
    90deg,
    rgba(3, 90, 166, 0.2) 0%,
    rgba(2, 6, 23, 0.28) 100%
  );
  left: 50px;
}
.serviceCard h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: var(--cn-dark-200);
}

/* Why Section */
.whySection {
  background-color: var(--cn-dark-solid);
}
.whyList {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}
.whyList::before {
  content: "";
  background: var(--cn-dark-700);
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.whyItem {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--cn-radius);
  border-top: 3px solid rgba(255, 154, 31, 0.2);
  position: relative;
}
.whyCheck {
  width: 32px;
  height: 32px;
  background-color: var(--cn-orange-main);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cn-dark-200);
  font-weight: bold;
}
.whyItem h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: var(--cn-orange-main);
}

/* Process Section */
.processSection {
  background-color: var(--cn-dark-900);
}
.processList {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.processItem {
    display: flex;
    gap: 1.5rem;
    position: relative;
}
.processItem:nth-child(2n + 2) {
  flex-direction: row-reverse;
}
.processItem::before {
  content: "";
  background: var(--cn-orange-main);
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.processContentItem {
  background-color: var(--cn-dark-transparent);
  padding: 1.5rem;
  border-radius: var(--cn-radius);
  border: 3px solid rgba(255, 154, 31, 0.5);
  border-width: 0 0 0 3px;
  flex: 1;
}
.processItem:nth-child(2n + 2) .processContentItem {
  border-width: 0 3px 0 0;
  text-align: right;
}
.processNumber {
  width: 60px;
  height: 60px;
  background-color: var(--cn-orange-main);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cn-light-solid);
  font-weight: bold;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  position: relative;
}
.processNumber::after {
  content: "";
  width: 1.5rem;
  position: absolute;
  left: 100%;
  top: 50%;
  height: 1px;
  background-color: var(--cn-orange-main);
}
.processItem:nth-child(2n + 2) .processNumber::after {
  left: auto;
  right: 100%;
}
.processContentItem h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--cn-orange-main);
}
/* Team Section */
.teamSection {
  background-color: var(--cn-dark-solid);
}
.teamSection::before {
  content: "";
  background: url(../images/space-bg.webp) no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
}
.teamSection .wrapper {
  position: relative;
}
.teamContent {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}
.teamContent p.note {
  color: var(--cn-gray-300);
  font-size: 0.75rem;
  font-style: italic;
  margin-bottom: 0;
}

/* Contact Section */
.contactSection {
  background-color: var(--cn-dark-900);
  color: var(--cn-light-solid);
}
.contactContent {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}
.contactContent > p {
  color: var(--cn-gray-300);
}
/* Footer */
footer {
  background-color: var(--cn-dark-black);
  color: var(--cn-gray-400);
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}
.footerLogo {
  margin-bottom: 0.5rem;
}
.scroll-heading {
  opacity: 0;
  transform: translateY(40px);
  transition:all 0.6s cubic-bezier(.22,.61,.36,1);
}
.scroll-heading.show {
  opacity: 1;
  transform: translateY(0);
}
.scroll-item {
  opacity: 0;
  transform: translateX(-50px);
  transition:all 0.6s cubic-bezier(.22,.61,.36,1);
}
.scroll-item:nth-child(2n + 2) {
  transform: translateX(50px);
}
.scroll-item.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 991px) {
  main > section .anchorePoint {
    top: -3.75rem;
  }
  .logo img {
    height: 40px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero {
    margin-top: 60px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .sectionHeader {
    margin-bottom: 2rem;
  }
  .sectionHeader h2 {
    font-size: 2rem;
  }
  main > section {
    padding: 4rem 0;
  }
  .highlightsGrid,
  .whyList,
  .processList {
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
  }
  .trustContent > p,
  .teamContent > p,
  .contactContent > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1.5rem;
  }
  .serviceContent {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .wrapper {
    padding: 0 2rem;
  }
  .sectionHeader h2 {
    display: block;
    position: relative;
    padding-bottom: 0.5rem;
  }
  .sectionHeader h2 span {
    margin: 0;
  }
  .highlightCard,
  .whyItem,
  .processContentItem {
    padding: 1.25rem;
  }
  .processNumber {
    width: 40px;
    height: 40px;
    margin-top: 1rem;
  }
  .highlightCard h3,
  .serviceCard h3 {
    font-size: 1.25rem;
  }
  .sectionHeader h2::before,
  .sectionHeader h2::after {
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 1px;
    margin: 0 5px;
  }
  .sectionHeader h2::before {
    right: 50%;
  }
  .sectionHeader h2::after {
    left: 50%;
  }
  .heroButtons a {
    min-width: 260px;
  }
  .serviceImg {
    flex: 0 0 45%;
  }
  .serviceContent {
    padding: 1rem;
    flex: 0 0 calc(55% + 20px);
    left: -20px;
    font-size: 0.75rem;
  }
  .serviceCard:nth-child(2n + 2) .serviceContent {
    left: 20px;
  }
  .serviceCard h3 {
    font-size: 1rem;
  }
}
