/* custom css */

/* App root colors */
:root {

  --bg-color: #ffffff;
  /* Main background - pure white */
  --bg-color-secondary: #f2f2f7;
  /* Soft light grey */
  --bg-color-tertiary: #e6e6ef;
  /* Slightly darker grey */
  --text-color: #1a1a1a;
  /* Dark text for readability */
  --accent-color: #ae63e4;
  /* Keep same accent color */
  --blur-bg: rgba(0, 0, 0, 0.05);
  /* Light blur effect */
  --navbar-bg: rgba(255, 255, 255, 0.8);
  /* Light transparent navbar */
  --success-color: #3fcf8e;
  /* Same success green */
  --card-bg: #ffffff;
  /* Card background white */
}

.accent-color {
  color: var(--accent-color);
}

/* Custom CSS for the website */

body {
  background: var(--bg-color) !important;
  color: var(--text-color);
  font-family: "Space Grotesk", sans-serif;
}

/* Navbar styles */
/* Navbar background and text color */

.navbar {
  background: var(--navbar-bg);
}

.navbar-brand {
  color: var(--accent-color) !important;
  font-weight: bold;
}

.nav-link {
  color: var(--text-color) !important;

}

.nav-link:hover {
  text-decoration: underline var(--accent-color);
  text-underline-offset: 5px;
}


.active {
  color: var(--accent-color) !important;
  text-decoration: underline;
  text-underline-offset: 5px;

}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: var(--text-color) !important;
}

.custom-hero {
  min-height: 90vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

.glass-card {
  min-height: 500px;
  min-width: 300px;
  backdrop-filter: blur(6px) saturate(200%);
  -webkit-backdrop-filter: blur(6px) saturate(200%);
  background-color: rgba(17, 25, 40, 0.6);
  border-radius: 12px;
}

.custom-btn-solid {
  color: var(--bg-color);
  background: var(--accent-color);
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;

  /* 3D effect */
  box-shadow: 0 6px 0 #8739bd;
  transition: all 0.15s ease-in-out;
}

.custom-btn-solid:active {
  transform: translateY(6px);
  box-shadow: 0 0px 0 #8739bd;
}

.custom-btn-outline {
  color: var(--bg-color);
  background: transparent;
  padding: 12px 28px;
  border-radius: 12px;
  border: 2px solid var(--accent-color);
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;

  /* 3D effect */
  box-shadow: 0 6px 0 rgba(174, 99, 228, 0.6);
  transition: all 0.15s ease-in-out;
}

.custom-btn-outline:active {
  transform: translateY(6px);
  box-shadow: 0 0px 0 rgba(174, 99, 228, 0.6);

}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: .75rem;
}

.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
}

.text-shadow-1 {
  text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25);
}

.text-shadow-2 {
  text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25);
}

.text-shadow-3 {
  text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25);
}


/* Card styles */
.skill-card {
  backdrop-filter: blur(6px) saturate(200%);
  -webkit-backdrop-filter: blur(6px) saturate(200%);
  background-color: var(--bg-color-tertiary);
  border-radius: 12px;

}

.skill-card:hover {
  box-shadow: 0 12px 32px rgba(174, 99, 228, 0.3);
  transform: translateY(-4px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill-logo {
  width: 60px;
  height: 60px;
  justify-self: center;
  display: flex;
}

.icon-fill {
  color: var(--accent-color);
}

/* Floating wrapper for BOTH rocket + CTA */
.floating-wrapper {
  animation: floatTogether 3s ease-in-out infinite;
  display: inline-block;
  border-radius: 20px;

}

/* Rocket Size & Position */
.rocket-img {
  width: 320px;
  /* Bigger Rocket */
  top: -120px;
  /* Adjust based on your rocket image size */
}

/* CTA Box */
.cta-box {
  background: var(--card-bg);
  border: 6px solid #ae63e4;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  min-width: 300px;
}

/* Floating animation (together) */
@keyframes floatTogether {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0);
  }
}

.timeline {
  padding: 20px 0;
}

.timeline-line {
  width: 4px;
  height: 100%;
  background: #ae63e4;
}

.timeline-step {
  position: relative;
}

.timeline-step::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #ae63e4;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  z-index: 3;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.subtext {
  color: #bbb;
  font-size: 0.95rem;
}

.policy-box {
  background: var(--bg-color-secondary);
  border-radius: 14px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
}

.policy-table tr td {
  padding: 15px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: top;
  color: var(--text-color);
}

.policy-table tr td:first-child {
  font-weight: 600;
  color: var(--accent-color);
  width: 28%;
}

.alert-box {
  background: rgba(174, 99, 228, 0.08);
  border-left: 4px solid var(--accent-color);
  padding: 20px;
  border-radius: 12px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-color);
}

.sub-text {
  color: #555;
  font-size: 1.1rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 28px;
  transition: 0.3s ease;
  border: 1px solid var(--bg-color-tertiary);
}

.service-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-color-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.process-step {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
  font-weight: 600;
}

.check-icon {
  color: var(--accent-color);
}

.accordion-button:not(.collapsed) {
  background-color: var(--bg-color-tertiary) !important;
  color: var(--text-color);
}

.error-heading {
  font-size: 120px;
  font-weight: 700;
  color: var(--accent-color);
}

.footer-line {
  height: 1px;
  width: 100%;
  background: var(--bg-color-tertiary);
  margin: 60px 0 30px;
}


.footer-copy {
  font-size: 14px;
  margin-top: 20px;
}


.section-bg {
  background-color: var(--bg-color-secondary);
}

.card-custom {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

}

.btn-accent {
  background: var(--accent-color);
  border: none;
  color: #fff;
}

.btn-accent:hover {
  background: #9b4fd5;
}