@import url("toast.css");

@font-face {
  font-family: GeneralSans-Variable;
  src: url(../Assets/Font/GeneralSans-Variable.ttf);
  font-display: swap;
}
:root {
  --primary-blue: #015aaa;
  --secondary-blue: #38bdf8;
  --secondary-white: #ffffff;
  --secondary-black: #030108;
}
::selection {
  background-color: var(--secondary-blue);
  color: var(--secondary-black);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: none;
}
section,
[id] {
  scroll-margin-top: 50px;
}
a,
.Cyberians-badge,
.Cyberians-badge + h1 {
  color: var(--secondary-white);
}
.Cyberians-badge,
.contact-btn,
.nav-links {
  border-radius: 100px;
  animation: 0.8s ease-out fadeInDown;
  display: flex;
}
.contact-btn,
.cta-group,
.hero-container,
.hero-content,
.nav-links,
.navbar,
a {
  display: flex;
}
.Cyberians-badge,
.contact-btn,
.logo,
.nav-links {
  animation: 0.8s ease-out fadeInDown;
}
.badge span,
a {
  font-weight: 500;
  text-decoration: none;
}
.floating-badge,
.nav-links {
  backdrop-filter: blur(10px);
}
.header,
.hero-content,
.nebula-header,
.service-card {
  text-align: center;
}
*,
.flip {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font-family: GeneralSans-Variable;
}
body {
  background-color: var(--secondary-white);
  overflow-x: hidden;
}
.hero-container {
  min-height: 100vh;
  width: 100%;
  position: relative;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle at top, #0a2a50 0, #020817 70%);
  padding: 20px 40px;
  overflow: hidden;
}
.navbar {
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.nav-links {
  background: rgba(255, 255, 255, 0.03);
  gap: 40px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(10px, 2vw, 15px) clamp(16px, 4vw, 40px);
}
.hover-animation {
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
}
.hover-animation::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: var(--primary-blue);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-animation:hover {
  color: var(--primary-blue);
}
.hover-animation:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.hover-animation::after {
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-btn {
  background: rgba(255, 255, 255, 0.08);
  padding: 5px 5px 5px 10px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
  padding: clamp(6px, 1vw, 8px) clamp(10px, 2vw, 14px);
  font-size: clamp(13px, 1.1vw, 15px);
}
.contact-btn > span {
  padding-left: 5px;
}
.logo {
  width: clamp(100px, 6vw, 150px);
  height: auto;
  object-fit: contain;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.contact-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.arrow-circle svg {
  background: var(--primary-blue);
  fill: white;
  border-radius: 50%;
  font-size: 20px;
  transform: rotate(220deg);
  width: clamp(32px, 4vw, 44px);
  height: clamp(32px, 4vw, 44px);
  padding: clamp(6px, 1vw, 10px);
}
.background-overlay {
  position: absolute;
  opacity: 5%;
  inset: 0;
  z-index: -1;
  top: 80px;
  background-image: url(../Assets/Images/Hero_Backgournd_Image.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-top: -150px;
  max-width: min(1200px, 90%);
  text-align: center;
}
.Cyberians-badge {
  background: rgba(30, 58, 138, 0.3);
  padding: clamp(4px, 1vw, 6px) clamp(12px, 2vw, 16px);
  gap: clamp(6px, 1vw, 10px);
  margin-bottom: clamp(20px, 4vw, 30px);
}
.Cyberians-badge > svg {
  width: clamp(18px, 3vw, 24px);
  height: clamp(18px, 3vw, 24px);
}
h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: clamp(16px, 3vw, 24px);
  letter-spacing: -0.5px;
}
.description {
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 65ch;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.cta-group {
  display: flex;
  gap: clamp(12px, 3vw, 20px);
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary,
.btn-secondary {
  display: flex;
  padding: clamp(6px, 1vw, 5px) clamp(14px, 3vw, 15px);
  font-size: clamp(14px, 1.5vw, 16px);
  gap: clamp(10px, 2vw, 15px);
  cursor: pointer;
  align-items: center;
  font-weight: 600;
  transition: background 0.3s;
  border-radius: 100px;
}
.btn-primary {
  background: var(--secondary-white);
  color: var(--secondary-black);
  border: none;
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--secondary-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.nebula-card,
.service-card {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.btn-secondary .icon-circle {
  background: var(--secondary-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 10px rgba(0, 114, 255, 0.15);
}
.icon-circle {
  background: var(--primary-blue);
  fill: var(--secondary-white);
  border-radius: 50%;
  width: clamp(40px, 6vw, 50px);
  height: clamp(40px, 6vw, 55px);
  padding: clamp(10px, 1.5vw, 10px);
  font-size: clamp(16px, 2.5vw, 20px);
}
.About-container,
p strong {
  color: var(--secondary-black);
}
.About-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(1200px, 92%);
  margin: auto;
  padding: clamp(48px, 6vw, 96px) 0;
  background-color: var(--secondary-white);
}
.bottom-right,
.top-left {
  position: absolute;
  opacity: 10%;
  width: clamp(180px, 30vw, 300px);
}
.top-left {
  top: -80px;
  left: -250px;
  width: 300px;
  z-index: -1;
}
.bottom-right {
  bottom: -80px;
  right: -250px;
  max-width: 350px;
  transform: rotate(160deg);
  z-index: 1;
}
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 8vw, 120px);
}
.black-card,
.floating-badge {
  align-items: center;
  display: flex;
  position: relative;
}
.wolf-logo {
  width: 50%;
  max-width: 660px;
  height: auto;
  object-fit: contain;
}
.black-card {
  aspect-ratio: 1 / 1.2;
  margin: 2% 8% 0 8%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: var(--secondary-black);
  border-radius: 32px 32px 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-badge {
  width: fit-content;
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: clamp(4px, 1vw, 6px);
  gap: clamp(8px, 1.5vw, 12px);
  color: var(--secondary-white);
  font-size: clamp(11px, 1.4vw, 12px);
  font-weight: 500;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: 4s ease-in-out infinite float;
}
.badge-icon svg {
  width: clamp(14px, 2vw, 18px);
  height: clamp(14px, 2vw, 18px);
}
.top-right {
  top: 20%;
  right: -30px;
  padding-left: 15px;
}
.bottom-left {
  bottom: 10%;
  left: -30px;
  padding-right: 15px;
}
.badge-icon {
  width: clamp(32px, 5vw, 42px);
  height: clamp(32px, 5vw, 42px);
  font-size: clamp(14px, 2vw, 18px);
  fill: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blue-bg {
  background: var(--primary-blue);
}
.badge-icon svg {
  width: 18px;
  height: 18px;
}
.text-section {
  padding-right: 20px;
  text-align: justify;
}
.who-we-are {
  position: absolute;
  top: 20px;
  font-size: clamp(14px, 2vw, 18px);
  padding: clamp(6px, 1.5vw, 10px) clamp(16px, 3vw, 24px);
  font-weight: 700;
  border-radius: 30px;
  background: var(--secondary-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.text-section > h1 {
  font-size: clamp(24px, 4.5vw, 32px);
  line-height: 1.2;
  margin-bottom: clamp(16px, 3vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
p {
  color: var(--secondary-black);
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: 1.7;
}
.nebula-container,
.services-section,
.testimonial-section {
  font-family: GeneralSans-Variable;
  overflow: hidden;
}
.services-section {
  background-color: var(--secondary-white);
  padding: 20px 20px 80px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-background-overlay,
.why-us-background-overlay {
  position: absolute;
  bottom: 0;
  background-size: cover;
  opacity: 0.5;
  z-index: 0;
}
.service-container {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.header {
  margin-bottom: 60px;
}
.badge {
  display: inline-block;
  background: var(--secondary-white);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--secondary-black);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  border: 1px solid var(--secondary-white);
}
.subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}
.service-card {
  background-color: var(--secondary-black);
  color: var(--secondary-black);
  border-radius: 16px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.nebula-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 114, 255, 0.15);
}
.icon-wrapper {
  width: 48px;
  height: 48px;
  color: var(--secondary-white);
  margin-bottom: 24px;
  filter: brightness(0);
}
.icon-wrapper svg {
  width: 100%;
  height: 100%;
}
.service-card h1 {
  color: var(--primary-blue);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.service-card p {
  color: var(--secondary-black);
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
  margin: 0;
}
.nebula-container {
  background-color: var(--secondary-white);
  color: var(--secondary-black);
  position: relative;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nebula-header {
  margin-bottom: 60px;
  z-index: 2;
}
.nebula-badge,
.nebula-title-blue {
  margin-bottom: 16px;
  font-weight: 700;
}
.nebula-badge {
  display: inline-block;
  font-size: clamp(14px, 2vw, 18px);
  padding: clamp(6px, 1.5vw, 10px) clamp(16px, 3vw, 24px);
  background: var(--secondary-white);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--secondary-white);
}
.nebula-subtitle {
  color: #444;
  font-size: 1rem;
}
.nebula-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(16px, 4vw, 24px);
  max-width: 1200px;
  width: 100%;
}
.nebula-icon-wrapper,
.nebula-icon-wrapper-small {
  width: clamp(40px, 8vw, 70px);
  height: clamp(40px, 8vw, 70px);
  flex-shrink: 0;
  filter: brightness(0);
  fill: var(--secondary-blue);
}
.nebula-card {
  background-color: var(--secondary-black);
  padding: clamp(20px, 4vw, 40px);
  border-radius: clamp(12px, 3vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.flip {
  transform: scaleY(-1);
  position: absolute;
  top: 0;
}
.nebula-card-large {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom-right-radius: clamp(32px, 8vw, 80px);
}
.nebula-right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nebula-card-horizontal {
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 30px);
}
.nebula-title-blue {
  color: var(--secondary-blue);
  font-size: clamp(18px, 3vw, 24px);
}
.nebula-card-horizontal .nebula-title-blue {
  font-size: clamp(16px, 2.6vw, 20px);
  margin-bottom: 10px;
}
.nebula-description {
  color: var(--secondary-black);
  font-size: clamp(14px, 2.2vw, 15px);
  line-height: 1.6;
}
.testimonial-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-color: var(--secondary-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px 80px;
}
.bg-quote,
.social-circle:hover {
  opacity: 0.8;
}
.testimonial-container {
  max-width: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-badge {
  display: none;
}

.slider-mask {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0 60px;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.slider-mask::-webkit-scrollbar {
  display: none;
}

.slider-wrapper {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.slider-wrapper:hover {
  animation-play-state: paused;
}

.slider-wrapper.paused {
  animation-play-state: paused;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: var(--secondary-white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 360px;
  min-width: 340px;
  padding: 32px;
  scroll-snap-align: center;
  transition: transform 0.3s ease;
  height: auto;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background: url("../Assets/Icons/Hover_Hand_Icon.png") center/18px no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
  right: 12px;
  bottom: 12px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.testimonial-card:hover .card-bg-image {
  opacity: 1;
}

.testimonial-card:hover .card-content {
  opacity: 0;
}

.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.description-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
  margin-bottom: 32px;
}

.author-info {
  margin-top: auto;
}

.signature {
  font-size: 20px;
  color: var(--secondary-black);
  margin-bottom: 4px;
  font-weight: 600;
}

.role {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-btn {
  display: none;
}
.bg-quote {
  position: absolute;
  color: #f3f4f6;
  z-index: 1;
  width: 300px;
  height: 300px;
}
.bg-quote-left {
  top: 0px;
  left: -50px;
  transform: rotate(10deg);
  opacity: 20%;
}
.bg-quote-right {
  bottom: 0px;
  right: -50px;
  transform: rotate(190deg);
  opacity: 20%;
}
.contact-section {
  width: 100%;
  min-height: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-white);
  max-width: min(1000px, 95%);
  border-radius: clamp(20px, 6vw, 40px);
  padding: clamp(8px, 2vw, 10px);
}
.contact-container {
  width: 100%;
  max-width: 1000px;
  background-color: var(--secondary-white);
  color: var(--secondary-black);
  border-radius: 40px;
  padding: 10px;
  margin: 50px auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.contact-card {
  display: flex;
  gap: clamp(10px, 3vw, 20px);
  min-height: unset;
}
.contact-info {
  background-color: var(--secondary-white);
  border: 2px solid #333;
  padding: clamp(24px, 5vw, 40px);
  border-radius: clamp(20px, 6vw, 35px);
  display: flex;
  flex-direction: column;
}
.icon-circle-contact,
.social-circle {
  border-radius: 50%;
  background-color: var(--primary-blue);
}
.info-title {
  color: var(--secondary-black);
  font-size: clamp(22px, 4.5vw, 32px);
  margin-bottom: clamp(24px, 6vw, 60px);
  font-weight: 700;
}
.info-item,
.section-label {
  font-size: clamp(14px, 2.2vw, 16px);
  color: var(--secondary-black);
}
.info-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: clamp(20px, 4vw, 35px);
}
.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.icon-circle-contact,
.social-icons {
  justify-content: center;
  display: flex;
}
.icon-circle-contact {
  fill: var(--secondary-white);
  align-items: center;
  flex-shrink: 0;
  width: clamp(36px, 8vw, 44px);
  height: clamp(36px, 8vw, 44px);
}
.icon-circle-contact svg {
  width: clamp(16px, 4vw, 20px);
  height: clamp(16px, 4vw, 20px);
  margin: auto;
}
.social-icons {
  margin-top: auto;
  gap: 15px;
}
.social-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  fill: var(--secondary-white);
  transition: opacity 0.2s;
  width: clamp(36px, 8vw, 44px);
  height: clamp(36px, 8vw, 44px);
}
.social-circle > svg {
  width: clamp(18px, 4vw, 24px);
  height: clamp(18px, 4vw, 24px);
  margin: 5px;
}
.contact-form {
  flex: 1;
  padding: clamp(24px, 5vw, 50px);
  color: var(--secondary-black);
}
.form-row {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: clamp(24px, 6vw, 40px);
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.message,
.message:focus {
  border: none;
  outline: 0;
  resize: none;
}
.form-group input {
  background: 0 0;
  border: none;
  border-bottom: 1px solid var(--secondary-black);
  padding: 8px 0;
  color: var(--secondary-black);
  font-size: 15px;
  outline: 0;
}
.form-group input:focus {
  border-bottom-color: var(--secondary-black);
}
.subject-section {
  margin-top: 40px;
  margin-bottom: 40px;
}
.section-label {
  font-weight: 600;
  margin-bottom: 20px;
}
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 3vw, 20px);
}
.radio-item {
  position: relative;
  padding-left: 25px;
  font-size: clamp(12px, 2vw, 13px);
  cursor: pointer;
}
.radio-item input {
  position: absolute;
  opacity: 0;
}
.checkmark {
  position: absolute;
  left: 0;
  top: 0px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--secondary-black);
  border-radius: 50%;
  color: var(--secondary-black);
}
.radio-item input:checked + .checkmark {
  background-color: var(--secondary-black);
}
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.submit-btn {
  background-color: var(--primary-blue);
  color: var(--secondary-white);
  border: none;
  padding: clamp(12px, 3vw, 15px) clamp(32px, 8vw, 50px);
  font-size: clamp(14px, 2.5vw, 16px);
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
.clients-mask {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 40px;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 6%,
    black 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 6%,
    black 94%,
    transparent
  );
}
.Cyber_Logo {
  margin-top: 40px;
}
.clients {
  display: flex;
  align-items: center;
  gap: 200px;
  width: max-content;
  animation: clients-scroll var(--scroll-duration) linear infinite;
}

.clients:hover {
  animation-play-state: paused;
}

.clients img {
  width: 120px;
  min-width: 120px;
  height: auto;
  object-fit: contain;
}
@keyframes clients-scroll {
  to {
    transform: translateX(var(--scroll-distance));
  }
}
.legal-link,
.nav-link {
  color: var(--secondary-white);
  text-decoration: none;
  transition: opacity 0.3s;
}
.submit-btn:hover {
  background-color: var(--primary-blue);
}
.footer-container {
  background: radial-gradient(circle at 50% 50%, #00334e 0, #001a2c 100%);
  color: var(--secondary-white);
  padding: clamp(40px, 8vw, 60px) clamp(20px, 6vw, 80px) 30px;
  gap: clamp(24px, 5vw, 40px);
  display: flex;
  flex-direction: column;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(24px, 6vw, 30px);
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  height: auto;
  aspect-ratio: 2000/530;
  object-fit: contain;
  max-width: clamp(180px, 40vw, 350px);
}
.logo-icon {
  width: 45px;
  height: 45px;
}
.footer-nav {
  display: flex;
  gap: clamp(16px, 4vw, 35px);
  flex-wrap: wrap;
  justify-content: center;
}
.nav-link {
  font-size: clamp(14px, 2.2vw, 16px);
  font-weight: 400;
}
.legal-link:hover,
.nav-link:hover {
  opacity: 0.7;
}
.footer-contact a {
  display: flex;
  justify-content: flex-end;
  row-gap: 200px;
  font-size: clamp(14px, 2.2vw, 15px);
  font-weight: 400;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(16px, 4vw, 30px);
  font-size: clamp(13px, 2vw, 14px);
}
.legal-links {
  display: flex;
  font-size: clamp(13px, 2vw, 14px);
  gap: clamp(16px, 4vw, 30px);
  flex-wrap: wrap;
  justify-content: center;
}
.privacypolicy {
  margin: 50px 100px;
  text-align: justify;
}
.privacypolicy {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: justify;
  line-height: 1.8;
}
.privacypolicy p,
.privacypolicy strong,
.termsandconditions-list {
  color: var(--secondary-white);
  font-size: clamp(14px, 2.5vw, 16px);
}
.privacypolicy p {
  margin-bottom: 16px;
}
.privacypolicy h2 {
  color: var(--secondary-blue);
  font-size: clamp(20px, 4vw, 26px);
  margin: 40px 0 12px;
}
.privacypolicy h3 {
  color: var(--secondary-blue);
  font-size: clamp(17px, 3vw, 20px);
  margin: 24px 0 8px;
}
.privacypolicy p {
  hyphens: auto;
}
.termsandconditions-list {
  margin-left: 20px;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .privacypolicy {
    margin: 40px auto;
    padding: 0 16px;
    text-align: justify;
  }
  .termsandconditions-list {
    margin-left: 16px;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    gap: 16px;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }
  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .nav-links {
    gap: 12px;
  }
  .nav-links a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .hero-content {
    padding: 0 16px;
  }
  .cta-group {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .top-right {
    right: -20px;
  }
  .text-section {
    padding-right: 0;
  }
  .card-content {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .top-left,
  .bottom-right {
    display: none;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
  .nav-links {
    display: none;
  }
  .cta-group {
    flex-direction: column;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .nebula-grid {
    grid-template-columns: 1fr;
  }
  .nebula-card-large {
    border-bottom-right-radius: 24px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
  }
  .nebula-card-horizontal {
    flex-direction: column;
    text-align: left;
  }
  .nebula-card-horizontal {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .nebula-header {
    margin-bottom: 32px;
    text-align: center;
  }
  .nebula-card-horizontal {
    padding: 20px;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .testimonial-card {
    min-height: 380px;
  }
  .card-content {
    padding: 24px;
  }
  .slider-wrapper {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .testimonial-section .header {
    margin-bottom: 40px;
  }
  .testimonial-section .badge {
    padding: 10px 24px;
    font-size: 1rem;
  }
  .testimonial-section .subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
  .testimonial-card {
    min-height: 350px;
  }
  .description-text {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .signature {
    font-size: 18px;
  }
  .role {
    font-size: 12px;
  }
  .slider-wrapper {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding-bottom: 60px;
  }
  .slider-wrapper {
    gap: 12px;
  }
  .testimonial-card {
    padding: 20px;
    border-radius: 20px;
    min-height: auto;
  }
  .bg-quote {
    width: 150px;
    height: 150px;
    opacity: 0.1;
  }
}
@media (max-width: 900px) {
  .contact-card {
    flex-direction: column;
    min-height: auto;
  }
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .contact-form {
    padding: 30px;
  }
  .social-icons {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .button-container {
    margin-top: 32px;
  }
  .social-icons {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .clients {
    gap: 50px;
  }
  .clients img {
    max-width: 10%;
    height: auto;
    object-fit: contain;
  }
}
@media (max-width: 1024px) {
  .footer-bottom,
  .footer-main {
    text-align: center;
  }
  .footer-contact {
    display: grid;
    place-items: center;
  }
  .footer-container {
    padding: 40px 40px 20px;
  }
  .footer-main {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .footer-contact {
    text-align: center;
  }
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.navbar {
  position: relative;
  overflow: visible;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: var(--secondary-white);
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: fit-content;
    flex-direction: column;
    background: #0208173d;
    padding: 40px;
    border-radius: 20px;
  }
  .nav-links a {
    margin-bottom: 20px;
  }
  .nav-links a:last-child {
    margin-bottom: 0px;
  }
  .nav-links.active {
    display: flex;
  }
}
