/* ======================================
   ROOT VARIABLES
====================================== */
:root {
  --primary: #6cc4b4;
  --primary-dark: #58b1a1;
  --primary-glow: rgba(108, 196, 180, 0.35);
  --dark: #0f172a;
  --text: #64748b;
  --white: #ffffff;
  --light: #f8fafc;
}

/* ======================================
   BASE
====================================== */
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f1f5f9;
  color: var(--dark);
  overflow-x: hidden;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

body.page-transition {
  opacity: 0;
  transform: scale(1.01);
}

body::before {
  content: "";
  position: fixed;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(108, 196, 180, 0.08),
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
  animation: rotateGlow 24s linear infinite;
}

/* ======================================
   DARK PAGE BACKGROUNDS
====================================== */
body:has(.sv-hero) {
  background: #0b1220;
}
body:has(.pj-hero) {
  background: #060d18;
}
body:has(.ct-hero) {
  background: #060d18;
}

/* ======================================
   NAVBAR
====================================== */
.custom-navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: 0.3s;
}

.custom-navbar.scrolled {
  background: rgba(15, 23, 42, 0.92);
  padding: 8px 0;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.custom-navbar.scrolled .nav-link {
  color: white !important;
}
.custom-navbar.scrolled .logo-text {
  color: white;
}

.nav-logo {
  width: 35px;
  margin-right: 20px;
  margin-left: -52px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.nav-link {
  color: #334155 !important;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* About dropdown */
.custom-about-hover {
  position: relative;
  z-index: 9999;
}

.custom-about-hover::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 9998;
}

.custom-dropdown {
  display: none !important;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  list-style: none;
  padding: 10px;
  margin: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  z-index: 9999;
}

.custom-about-hover:hover .custom-dropdown {
  display: block !important;
}

.custom-dropdown li a {
  display: block;
  padding: 12px 16px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none !important;
  border-radius: 10px;
  transition: 0.25s ease;
}

.custom-dropdown li a:hover {
  background: rgba(108, 196, 180, 0.14);
  color: var(--primary);
  padding-left: 20px;
}

.custom-navbar.scrolled .custom-dropdown {
  background: rgba(15, 23, 42, 0.97);
}
.custom-navbar.scrolled .custom-dropdown li a {
  color: rgba(255, 255, 255, 0.85);
}
.custom-navbar.scrolled .custom-dropdown li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
}

/* ======================================
   HERO SECTION
====================================== */
.hero-section {
  position: relative;
}

.hero-image {
  height: 100vh;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4, 10, 25, 0.88),
    rgba(4, 10, 25, 0.55),
    rgba(4, 10, 25, 0.75)
  );
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  text-align: left;
  z-index: 10;
}

.hero-content {
  max-width: 760px;
  perspective: 1000px;
}

.hero-subtitle {
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

.carousel-caption h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: white;
}

.blue-text {
  color: var(--primary);
  position: relative;
  display: inline-block;
  transition: 0.3s ease;
}

.carousel-item.active .blue-text {
  animation: softGlow 1s ease;
}

.carousel-caption p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-btn,
.hero-btn:visited,
.hero-btn:active,
.hero-btn:focus {
  padding: 16px 34px;
  border-radius: 50px;
  background: linear-gradient(135deg, #6cc4b4, #91f5d3);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s ease;
  display: inline-block;
}

.hero-btn:hover {
  transform: translateY(-4px);
  color: white !important;
  box-shadow: 0 10px 28px var(--primary-glow);
}

.hero-btn-outline {
  padding: 16px 34px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s ease;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 4px 24px rgba(0, 0, 0, 0.2);
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.25),
    0 8px 32px rgba(0, 0, 0, 0.25);
}

.carousel-item .hero-content > * {
  opacity: 0;
  transform: translateY(12px);
}

.carousel-item.active .hero-content > * {
  animation: quickReveal 0.45s ease forwards;
}
.carousel-item.active h1 {
  animation-delay: 0.05s;
}
.carousel-item.active p {
  animation-delay: 0.1s;
}
.carousel-item.active .hero-buttons {
  animation-delay: 0.15s;
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  background-size: 45%;
}

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators button {
  width: 20px !important;
  height: 5px !important;
  border-radius: 2px;
  margin: 0 6px !important;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
  background-color: var(--primary);
}

/* ======================================
   STATS SECTION
====================================== */
.stats-section {
  padding: 100px 0;
}

.stat-box {
  background: white;
  padding: 45px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  transition: 0.35s;
}

.stat-box:hover {
  transform: translateY(-10px);
}

.stat-box h2 {
  font-size: 54px;
  color: var(--primary);
  font-weight: 700;
}

/* ======================================
   ABOUT SECTION
====================================== */
.about-section {
  padding: 120px 0;
  margin-top: -60px;
}

.about-image {
  width: 100%;
  border-radius: 28px;
}

.about-section h6 {
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.about-section h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
}

.about-section p {
  color: var(--text);
  line-height: 1.9;
}

.about-features {
  margin-top: 30px;
}

.feature-item {
  margin-bottom: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item .svg-icon,
.team-feature .svg-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--primary);
  border-radius: 50%;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item .svg-icon svg,
.team-feature .svg-icon svg {
  fill: var(--white);
  width: 100%;
  height: 100%;
  display: block;
}

/* ======================================
   SERVICES SECTION (index page)
====================================== */
.services-section {
  background: var(--white);
  padding: 120px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text);
}

.section-title .label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-card {
  background: #f8fafc;
  padding: 50px;
  border-radius: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(108, 196, 180, 0.15);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.7s linear;
  background: rgba(108, 196, 180, 0.25);
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.service-icon {
  width: 85px;
  height: 85px;
  background: var(--primary);
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.service-icon .svg-icon {
  width: 42px;
  height: 42px;
}
.service-icon .svg-icon svg {
  fill: white;
  width: 100%;
  height: 100%;
  display: block;
}

/* ======================================
   SHOWCASE
====================================== */
.showcase-item {
  position: relative;
  overflow: hidden;
}

.showcase-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: 0.5s;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.showcase-overlay h3 {
  color: white;
  font-size: 36px;
}
.showcase-item:hover img {
  transform: scale(1.08);
}
.showcase-item:hover .showcase-overlay {
  opacity: 1;
}

/* ======================================
   TESTIMONIALS
====================================== */
.testimonials-section {
  padding: 120px 0;
}

.testimonial-card {
  background: white;
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: 0.35s;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ======================================
   CTA SECTION
====================================== */
.cta-section {
  padding-bottom: 120px;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), #9be6d9);
  border-radius: 40px;
  margin-top: 50px;
  text-align: center;
  color: white;
  padding: 90px 30px;
}

.cta-box h2 {
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 25px;
}

.cta-box p {
  margin-bottom: 35px;
}

/* ======================================
   FOOTER
====================================== */
footer {
  background: #0f172a;
  color: white;
  padding: 90px 0;
}

footer p {
  color: #94a3b8;
}
footer h3,
footer h5 {
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition:
    color 0.25s,
    padding-left 0.25s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* Social icons — Font Awesome <i> tags */
.social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 24px;
}

.social-icons a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
}

.social-icons i {
  font-size: 2rem;
  cursor: pointer;
  color: #cbd5e1;
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    text-shadow 0.35s ease;
}

.social-icons i:hover {
  transform: translateY(-10px) scale(1.12);
  color: var(--primary);
  text-shadow: 0 10px 25px rgba(108, 196, 180, 0.45);
}

/* SVG icon variant */
.social-icons .svg-icon {
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.social-icons .svg-icon svg {
  fill: white;
  width: 100%;
  height: 100%;
  display: block;
  transition: fill 0.25s;
}

.social-icons .svg-icon:hover svg {
  fill: var(--primary);
}

/* ======================================
   WORKFLOW / TIMELINE
====================================== */
.workflow-section {
  padding: 120px 0;
  background: var(--light);
  width: 100%;
}

.timeline {
  position: relative;
  max-width: 960px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  transform: translateX(-50%);
  border-radius: 99px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 55px 50px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-number {
  position: absolute;
  top: 4px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 6px 22px var(--primary-glow);
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-number {
  right: -27px;
}
.timeline-item:nth-child(even) .timeline-number {
  left: -27px;
}

.timeline-content {
  background: var(--white);
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.timeline-content h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.timeline-content p {
  color: var(--text);
  line-height: 1.85;
  font-size: 0.93rem;
}

/* ======================================
   PARALLAX SECTION
====================================== */
.parallax-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.2);
  filter: brightness(0.6) saturate(1.2);
  z-index: 0;
}

.parallax-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

.parallax-1::before {
  background-image: url("image.png");
}
.parallax-2::before {
  background-image: url("photo2.png");
}
.parallax-3::before {
  background-image: url("photo3.png");
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 60px 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  animation: floatSlow 8s ease-in-out infinite;
}

.parallax-content.active {
  opacity: 1;
  transform: translateY(0);
}

.parallax-content h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
}

.parallax-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

/* ======================================
   TEAM PARALLAX SECTION (index)
====================================== */
.team-parallax-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(7, 15, 30, 0.78), rgba(7, 15, 30, 0.82)),
    url("image4.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.team-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(108, 196, 180, 0.22),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(108, 196, 180, 0.15),
      transparent 30%
    );
  z-index: 1;
}

.team-parallax-section .container {
  position: relative;
  z-index: 5;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: floatGlow 8s ease-in-out infinite;
}

.glow-1 {
  width: 260px;
  height: 260px;
  background: rgba(108, 196, 180, 0.22);
  top: 10%;
  left: 5%;
}
.glow-2 {
  width: 220px;
  height: 220px;
  background: rgba(145, 245, 211, 0.16);
  bottom: 5%;
  right: 8%;
  animation-delay: 2s;
}

.team-image-wrapper {
  position: relative;
  max-width: 560px;
  margin: auto;
  z-index: 2;
}

.team-image-border {
  position: absolute;
  inset: -18px;
  border-radius: 32px;
  background: conic-gradient(
    from 0deg,
    rgba(108, 196, 180, 0.9) 0%,
    rgba(145, 245, 211, 0.6) 25%,
    rgba(108, 196, 180, 0.1) 50%,
    rgba(145, 245, 211, 0.6) 75%,
    rgba(108, 196, 180, 0.9) 100%
  );
  z-index: 0;
  animation: rotateBorder 4s linear infinite;
  padding: 3px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.team-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  transition: 0.5s ease;
}

.team-image:hover {
  transform: scale(1.02);
}

.team-content {
  color: white;
  position: relative;
  z-index: 2;
}

.team-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
}

.team-content h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
}

.team-content p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  font-size: 1.08rem;
  margin-bottom: 35px;
}

.team-features {
  margin-bottom: 40px;
}

.team-feature {
  margin-bottom: 18px;
  font-weight: 500;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-feature i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ======================================
   ABOUT TEAM PAGE
====================================== */
.team-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 12, 20, 0.72), rgba(7, 12, 20, 0.82)),
    url("image4.png") center / cover no-repeat;
  background-attachment: fixed;
}

.team-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(108, 196, 180, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(108, 196, 180, 0.12),
      transparent 35%
    );
  z-index: 1;
}

.team-hero .container {
  position: relative;
  z-index: 2;
}

.team-hero-content {
  color: white;
  max-width: 780px;
  padding-top: 100px;
}

.team-hero-content h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: white;
}

.team-hero-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  animation: floatGlow 9s ease-in-out infinite;
}

.orb-1 {
  width: 340px;
  height: 340px;
  background: rgba(108, 196, 180, 0.18);
  top: 5%;
  right: 8%;
}
.orb-2 {
  width: 220px;
  height: 220px;
  background: rgba(145, 245, 211, 0.13);
  bottom: 10%;
  left: 6%;
  animation-delay: 3s;
}

.team-members-section {
  padding: 120px 0;
  background: var(--light);
}

.team-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.team-card-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.team-card:hover .team-card-image img {
  transform: scale(1.07);
}

.team-socials {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.35s ease;
}

.team-card:hover .team-socials {
  opacity: 1;
  transform: translateY(0);
}

.team-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.team-socials a:hover {
  background: var(--primary);
  color: white;
}

.team-card-content {
  padding: 28px 30px 32px;
}

.team-card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.team-card-content span {
  display: inline-block;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-card-content p {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
}

/* ======================================
   TEAM INFO CARD
====================================== */

.team-info-card {
  height: 100%;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.98),
    rgba(30, 41, 59, 0.95)
  );
  border: 1px solid rgba(108, 196, 180, 0.15);
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.team-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(108, 196, 180, 0.12),
    transparent 60%
  );
  pointer-events: none;
}

.team-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 196, 180, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.team-info-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  background: rgba(108, 196, 180, 0.08);
  margin-bottom: 24px;
}

.team-info-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.team-info-card h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.team-info-card p {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 18px;
}

.team-info-stats {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.team-info-stats div {
  flex: 1;
}

.team-info-stats strong {
  display: block;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.team-info-stats span {
  color: #94a3b8;
  font-size: 0.85rem;
}

.team-parallax-banner {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 15, 30, 0.78), rgba(7, 15, 30, 0.82)),
    url("image4.png") center / cover no-repeat;
  background-attachment: fixed;
  text-align: center;
}

.team-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(108, 196, 180, 0.2),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(108, 196, 180, 0.15),
      transparent 35%
    );
  z-index: 1;
}

.team-parallax-banner .container {
  position: relative;
  z-index: 2;
}

.team-banner-content {
  color: white;
}

.team-banner-content h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.team-banner-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 38px;
}

.team-values-section {
  padding: 120px 0;
  background: white;
}

.team-value-card {
  background: #f8fafc;
  padding: 48px 38px;
  border-radius: 28px;
  text-align: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.team-value-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #91f5d3);
  transition: width 0.4s ease;
}

.team-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.team-value-card:hover::before {
  width: 100%;
}

.team-value-card .svg-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-value-card .svg-icon svg {
  fill: var(--primary);
  width: 100%;
  height: 100%;
  display: block;
}

.team-value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.team-value-card p {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.85;
  margin: 0;
}

/* ======================================
   ABOUT COMPANY PAGE
====================================== */
.ac-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 12, 20, 0.72), rgba(7, 12, 20, 0.8)),
    url("image6.png") center/cover no-repeat;
}

.ac-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(108, 196, 180, 0.2),
    transparent 70%
  );
  top: -200px;
  right: -150px;
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

.ac-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(108, 196, 180, 0.14),
    transparent 40%
  );
}

.ac-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: white;
  padding-top: 110px;
  animation: fadeUp 1s ease;
}

.ac-hero-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--primary);
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.ac-hero-content h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: white;
}

.ac-hero-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  max-width: 660px;
}

.ac-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.ac-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.ac-wave {
  margin-top: -2px;
  line-height: 0;
  background: #f1f5f9;
}
.ac-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

.ac-stats {
  background: white;
  padding: 70px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ac-story {
  position: relative;
  padding: 120px 0;
  background: var(--light);
  overflow: hidden;
}

.ac-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
}

.ac-shape-1 {
  width: 320px;
  height: 320px;
  background: var(--primary);
  top: -100px;
  left: -100px;
}
.ac-shape-2 {
  width: 240px;
  height: 240px;
  background: #89d4ff;
  bottom: -80px;
  right: -60px;
}

.ac-img-wrap {
  position: relative;
}

.ac-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: 38px;
  background: linear-gradient(
    135deg,
    rgba(108, 196, 180, 0.45),
    rgba(137, 212, 255, 0.25)
  );
  filter: blur(28px);
  z-index: 0;
}

.ac-img-ring {
  position: absolute;
  inset: -16px;
  border-radius: 34px;
  background: conic-gradient(
    from 0deg,
    rgba(108, 196, 180, 0.9) 0%,
    rgba(145, 245, 211, 0.6) 25%,
    rgba(108, 196, 180, 0.1) 50%,
    rgba(145, 245, 211, 0.6) 75%,
    rgba(108, 196, 180, 0.9) 100%
  );
  animation: rotateBorder 4s linear infinite;
  z-index: 0;
  padding: 3px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.ac-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.13);
  transition: 0.5s ease;
  display: block;
}

.ac-img-wrap:hover .ac-img {
  transform: scale(1.02);
}

.ac-exp-badge {
  position: absolute;
  bottom: 28px;
  right: -16px;
  background: white;
  border-radius: 22px;
  padding: 20px 26px;
  z-index: 3;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  min-width: 175px;
  animation: floatCard 5s ease-in-out infinite;
}

.ac-exp-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.ac-exp-text {
  display: block;
  font-size: 0.8rem;
  color: var(--text);
  margin-top: 5px;
}

.ac-story-content h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--dark);
}

.ac-lead {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 14px;
}

.ac-story-content p {
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 14px;
}

.ac-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ac-features {
  margin-top: 30px;
}

.ac-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--dark);
  font-size: 0.95rem;
}

.ac-feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.68rem;
}

.ac-feature-icon svg {
  fill: white;
  width: 12px;
  height: 12px;
  display: block;
}

.ac-values {
  background: white;
  padding: 120px 0;
}

.ac-section-desc {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 10px;
}

.ac-value-card {
  background: #f8fafc;
  padding: 45px 38px;
  border-radius: 28px;
  transition: 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.ac-value-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #91f5d3);
  transition: width 0.4s ease;
}

.ac-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.ac-value-card:hover::before {
  width: 100%;
}
.ac-value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.ac-value-card p {
  color: var(--text);
  line-height: 1.85;
  font-size: 0.92rem;
  margin: 0;
}

.ac-card-line {
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 20px;
  opacity: 0.5;
  transition:
    width 0.3s ease,
    opacity 0.3s ease;
}

.ac-value-card:hover .ac-card-line {
  width: 55px;
  opacity: 1;
}

.ac-parallax {
  background-image: url("image7.png") !important;
}
.ac-parallax::before {
  background-image: url("image7.png");
}

.ac-year {
  display: inline-block;
  background: rgba(108, 196, 180, 0.12);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.ac-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 50px;
  background: white;
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.4s ease;
  white-space: nowrap;
}

.ac-btn-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  color: var(--primary) !important;
}

/* ======================================
   SCROLL REVEAL
====================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   ANIMATIONS
====================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes quickReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softGlow {
  0%,
  100% {
    text-shadow: none;
  }
  50% {
    text-shadow: 0 0 12px rgba(108, 196, 180, 0.5);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.7);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ======================================
   SERVICES PAGE  (sv- prefix)
====================================== */
.sv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(7, 12, 20, 0.95) 0%,
      rgba(15, 30, 40, 0.92) 100%
    ),
    url("image1.png") center / cover no-repeat;
}

.sv-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(108, 196, 180, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(108, 196, 180, 0.1) 0%,
      transparent 45%
    );
  z-index: 1;
}

.sv-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 196, 180, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 196, 180, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

.sv-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  animation: svOrb 10s ease-in-out infinite;
}

.sv-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(108, 196, 180, 0.15);
  top: -100px;
  right: -100px;
}
.sv-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(108, 196, 180, 0.1);
  bottom: -80px;
  left: -80px;
  animation-delay: 4s;
}

@keyframes svOrb {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.15) translate(20px, -20px);
  }
}

.sv-hero .container {
  position: relative;
  z-index: 3;
}

.sv-hero-content {
  max-width: 780px;
  padding-top: 80px;
}

.sv-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 8px 20px;
  border: 1px solid rgba(108, 196, 180, 0.35);
  border-radius: 50px;
  background: rgba(108, 196, 180, 0.08);
}

.sv-hero-content h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.08;
  color: white;
  margin-bottom: 24px;
}

.sv-hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  max-width: 600px;
  margin-bottom: 40px;
}

.sv-cards-section {
  padding: 130px 0;
  background: #0b1220;
  position: relative;
  overflow: hidden;
}

.sv-cards-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(108, 196, 180, 0.4),
    transparent
  );
}

.sv-cards-section .section-title h2,
.sv-cards-section .section-title .label {
  color: white;
}
.sv-cards-section .section-title p {
  color: rgba(255, 255, 255, 0.55);
}

.sv-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(108, 196, 180, 0.12);
  border-radius: 28px;
  padding: 44px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.sv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(108, 196, 180, 0.07),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 28px;
}

.sv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #91f5d3);
  transition: width 0.5s ease;
}

.sv-card:hover {
  transform: translateY(-12px);
  border-color: rgba(108, 196, 180, 0.4);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(108, 196, 180, 0.08);
}

.sv-card:hover::before {
  opacity: 1;
}
.sv-card:hover::after {
  width: 100%;
}

.sv-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(108, 196, 180, 0.2),
    rgba(108, 196, 180, 0.05)
  );
  border: 1px solid rgba(108, 196, 180, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 28px;
  transition: 0.4s ease;
  position: relative;
  z-index: 1;
}

.sv-card:hover .sv-card-icon {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(108, 196, 180, 0.35);
}

.sv-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.sv-card > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.sv-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  position: relative;
  z-index: 1;
}

.sv-card-list li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sv-card-list li:last-child {
  border-bottom: none;
}

.sv-card-list li i {
  color: var(--primary);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.sv-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}

.sv-card-link i {
  transition: transform 0.3s ease;
}
.sv-card-link:hover {
  color: #91f5d3;
}
.sv-card-link:hover i {
  transform: translateX(5px);
}

.sv-parallax {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 15, 30, 0.82), rgba(7, 15, 30, 0.88)),
    url("image6.png") center / cover no-repeat fixed;
  text-align: center;
}

.sv-parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(108, 196, 180, 0.22),
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(108, 196, 180, 0.12),
      transparent 50%
    );
  z-index: 1;
}

.sv-parallax .container {
  position: relative;
  z-index: 2;
}

.sv-parallax-content h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.sv-parallax-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto 40px;
}

.sv-pricing-section {
  padding: 130px 0;
  background: #0b1220;
  position: relative;
  overflow: hidden;
}

.sv-pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(108, 196, 180, 0.4),
    transparent
  );
}

.sv-pricing-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(108, 196, 180, 0.06),
    transparent 65%
  );
  pointer-events: none;
}

.sv-pricing-section .section-title h2,
.sv-pricing-section .section-title .label {
  color: white;
}
.sv-pricing-section .section-title p {
  color: rgba(255, 255, 255, 0.55);
}

.sv-price-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(108, 196, 180, 0.12);
  border-radius: 28px;
  padding: 48px 36px;
  height: 100%;
  position: relative;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  overflow: hidden;
}

.sv-price-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #91f5d3);
  transition: width 0.5s ease;
}

.sv-price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(108, 196, 180, 0.35);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(108, 196, 180, 0.07);
}

.sv-price-card:hover::after {
  width: 100%;
}

.sv-price-featured {
  background: linear-gradient(
    145deg,
    rgba(108, 196, 180, 0.14),
    rgba(108, 196, 180, 0.04)
  );
  border-color: rgba(108, 196, 180, 0.45);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(108, 196, 180, 0.1);
  transform: translateY(-8px);
}

.sv-price-featured:hover {
  transform: translateY(-18px);
}

.sv-price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #91f5d3);
  color: #0b1220;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.sv-price-header {
  margin-bottom: 32px;
}

.sv-price-tier {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sv-price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.sv-price-from {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.sv-price-num {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.sv-price-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.sv-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.sv-price-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sv-price-list li:last-child {
  border-bottom: none;
}

.sv-price-list li i {
  color: var(--primary);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.sv-price-btn {
  display: block;
  text-align: center;
  padding: 15px 28px;
  border-radius: 50px;
  border: 1px solid rgba(108, 196, 180, 0.4);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.35s ease;
  background: rgba(108, 196, 180, 0.06);
}

.sv-price-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(108, 196, 180, 0.35);
}

.sv-price-btn-featured {
  background: linear-gradient(135deg, var(--primary), #91f5d3);
  border-color: transparent;
  color: #0b1220 !important;
  font-weight: 700;
}

.sv-price-btn-featured:hover {
  box-shadow: 0 12px 35px rgba(108, 196, 180, 0.5);
  opacity: 0.92;
  color: #0b1220 !important;
}

/* dark overrides for adjacent sections */
.sv-cards-section + .workflow-section,
.sv-parallax + .workflow-section {
  background: #0f172a;
}

.sv-testimonials {
  background: #0b1220;
  padding: 120px 0;
}

.sv-testimonials .section-title h2 {
  color: white;
}

.sv-testimonials .testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(108, 196, 180, 0.12);
  box-shadow: none;
}

.sv-testimonials .testimonial-card p,
.sv-testimonials .testimonial-card h5 {
  color: rgba(255, 255, 255, 0.75);
}

.sv-testimonials .testimonial-card:hover {
  border-color: rgba(108, 196, 180, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.sv-parallax + .workflow-section .section-title h2,
.sv-parallax + .workflow-section .section-title .label {
  color: white;
}
.sv-parallax + .workflow-section .section-title p {
  color: rgba(255, 255, 255, 0.55);
}

.sv-parallax + .workflow-section .timeline-content {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(108, 196, 180, 0.12);
}

.sv-parallax + .workflow-section .timeline-content h3 {
  color: white;
}
.sv-parallax + .workflow-section .timeline-content p {
  color: rgba(255, 255, 255, 0.55);
}

.sv-parallax + .workflow-section .timeline::before {
  background: linear-gradient(
    to bottom,
    rgba(108, 196, 180, 0.6),
    rgba(108, 196, 180, 0.15)
  );
}

/* ======================================
   SERVICES FILTER SECTION  (sf- prefix)
====================================== */
.sf-section {
  background: #0b1220;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.sf-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(108, 196, 180, 0.4),
    transparent
  );
}

.sf-section::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(108, 196, 180, 0.05),
    transparent 65%
  );
  pointer-events: none;
}

.sf-section .container {
  position: relative;
  z-index: 1;
}
.sf-section .section-title h2 {
  color: white;
}
.sf-section .section-title p {
  color: rgba(255, 255, 255, 0.5);
}

.sf-search-wrap {
  max-width: 680px;
  margin: 0 auto 40px;
}

.sf-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.sf-search-box > i {
  position: absolute;
  left: 22px;
  color: var(--primary);
  font-size: 1rem;
  pointer-events: none;
  z-index: 2;
}

.sf-search-box input {
  width: 100%;
  padding: 18px 56px 18px 52px;
  border-radius: 50px;
  border: 1px solid rgba(108, 196, 180, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.sf-search-box input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.sf-search-box input:focus {
  border-color: rgba(108, 196, 180, 0.55);
  background: rgba(108, 196, 180, 0.06);
  box-shadow: 0 0 0 4px rgba(108, 196, 180, 0.08);
}

.sf-search-clear {
  position: absolute;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition:
    color 0.2s,
    opacity 0.2s;
  z-index: 2;
}

.sf-search-clear:hover {
  color: var(--primary);
}

.sf-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 56px;
}

.sf-filter {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(108, 196, 180, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.55);
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
  letter-spacing: 0.03em;
}

.sf-filter:hover {
  border-color: rgba(108, 196, 180, 0.4);
  color: white;
  transform: translateY(-2px);
}

.sf-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #0b1220;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(108, 196, 180, 0.3);
}

.sf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sf-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(108, 196, 180, 0.1);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.sf-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #91f5d3);
  transition: width 0.45s ease;
}

.sf-item:hover {
  border-color: rgba(108, 196, 180, 0.38);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(108, 196, 180, 0.07);
  transform: translateY(-6px);
}

.sf-item:hover::after {
  width: 100%;
}

.sf-item.sf-hidden {
  opacity: 0;
  transform: scale(0.96) translateY(8px);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.sf-item.sf-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  position: relative;
  visibility: visible;
}

.sf-item-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(108, 196, 180, 0.1);
  border: 1px solid rgba(108, 196, 180, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
  flex-shrink: 0;
}

.sf-item:hover .sf-item-icon {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 24px rgba(108, 196, 180, 0.3);
}

.sf-item-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  opacity: 0.8;
}

.sf-item-content {
  flex: 1;
}
.sf-item-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.sf-item-content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.sf-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sf-item-list li {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  padding: 5px 0 5px 16px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sf-item-list li:last-child {
  border-bottom: none;
}

.sf-item-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

.sf-item-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition:
    color 0.25s ease,
    gap 0.25s ease;
  margin-top: auto;
}

.sf-item-btn i {
  transition: transform 0.25s ease;
}
.sf-item-btn:hover {
  color: #91f5d3;
}
.sf-item-btn:hover i {
  transform: translateX(5px);
}

.sf-no-results {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 20px;
  text-align: center;
}

.sf-no-results i {
  font-size: 2.5rem;
  color: rgba(108, 196, 180, 0.25);
}
.sf-no-results p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.95rem;
  margin: 0;
}

/* ======================================
   PROJECTS PAGE  (pj- prefix)
====================================== */
.pj-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060d18;
}

.pj-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 10% 80%,
      rgba(108, 196, 180, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 50% at 90% 20%,
      rgba(108, 196, 180, 0.14) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 30% at 50% 110%,
      rgba(71, 155, 140, 0.18) 0%,
      transparent 50%
    );
  z-index: 0;
  animation: auroraShift 14s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% {
    opacity: 0.8;
    transform: scale(1) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1.05) rotate(1deg);
  }
}

.pj-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle 1.5px at 15% 25%,
      rgba(108, 196, 180, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      circle 1px at 30% 70%,
      rgba(108, 196, 180, 0.4) 0%,
      transparent 100%
    ),
    radial-gradient(
      circle 2px at 60% 15%,
      rgba(108, 196, 180, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      circle 1px at 75% 55%,
      rgba(108, 196, 180, 0.35) 0%,
      transparent 100%
    ),
    radial-gradient(
      circle 1.5px at 85% 80%,
      rgba(108, 196, 180, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      circle 1px at 45% 40%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 100%
    ),
    radial-gradient(
      circle 2px at 92% 35%,
      rgba(108, 196, 180, 0.4) 0%,
      transparent 100%
    ),
    radial-gradient(
      circle 1px at 5% 60%,
      rgba(108, 196, 180, 0.3) 0%,
      transparent 100%
    );
  z-index: 0;
  animation: starTwinkle 6s ease-in-out infinite alternate;
}

@keyframes starTwinkle {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.pj-hero .container {
  position: relative;
  z-index: 2;
}

.pj-hero-content {
  max-width: 820px;
  padding-top: 80px;
}

.pj-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 8px 20px;
  border: 1px solid rgba(108, 196, 180, 0.35);
  border-radius: 50px;
  background: rgba(108, 196, 180, 0.08);
}

.pj-hero-content h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.08;
  color: white;
  margin-bottom: 24px;
}

.pj-hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  max-width: 600px;
  margin-bottom: 44px;
}

.pj-hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.pj-hero-stat span:first-child {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pj-hero-stat span:last-child {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

.pj-divider {
  position: relative;
  height: 120px;
  background: #060d18;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.pj-divider-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(108, 196, 180, 0.15) 20%,
    rgba(108, 196, 180, 0.6) 50%,
    rgba(108, 196, 180, 0.15) 80%,
    transparent 100%
  );
}

.pj-divider-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 1px;
  background: var(--primary);
  filter: blur(6px);
  opacity: 0.5;
  animation: dividerPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%,
  100% {
    width: 200px;
    opacity: 0.3;
  }
  50% {
    width: 500px;
    opacity: 0.7;
  }
}

.pj-projects-section {
  background: #060d18;
  padding: 80px 0 140px;
  position: relative;
  overflow: hidden;
}

.pj-projects-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 196, 180, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 196, 180, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
  pointer-events: none;
}

.pj-projects-section .container {
  position: relative;
  z-index: 1;
}

.pj-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(108, 196, 180, 0.1);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease;
  height: 100%;
  cursor: pointer;

  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.pj-card:hover {
  transform: translateY(-14px);
  border-color: rgba(108, 196, 180, 0.45);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(108, 196, 180, 0.1),
    inset 0 1px 0 rgba(108, 196, 180, 0.15);
}

.pj-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.pj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease;

  filter: brightness(0.75) saturate(0.85);

  will-change: transform;
  backface-visibility: hidden;
}

.pj-card:hover .pj-card-img img {
  transform: scale(1.04);
  filter: brightness(0.9) saturate(1.05);
}

.pj-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(6, 13, 24, 0.85) 100%
  );
  z-index: 1;
  transition: 0.4s;
}

.pj-card-visit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 3;
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  background: rgba(108, 196, 180, 0.15);
  border: 1px solid rgba(108, 196, 180, 0.5);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pj-card:hover .pj-card-visit {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.pj-card-visit:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.pj-card-tags {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pj-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(108, 196, 180, 0.15);
  border: 1px solid rgba(108, 196, 180, 0.35);
  color: var(--primary);
  backdrop-filter: blur(8px);
}

.pj-card-body {
  padding: 28px 30px 32px;
}

.pj-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.pj-card-body .pj-card-url {
  font-size: 0.78rem;
  color: var(--primary);
  opacity: 0.7;
  display: block;
  margin-bottom: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.pj-card-body .pj-card-url:hover {
  opacity: 1;
}

.pj-card-body p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 0;
}

.pj-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #91f5d3);
  transition: width 0.5s ease;
}

.pj-card-img-overlay,
.pj-card-tags,
.pj-card-visit {
  pointer-events: auto;
  backface-visibility: hidden;
}

.pj-card:hover::after {
  width: 100%;
}

.pj-marquee-section {
  background: #060d18;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(108, 196, 180, 0.08);
  border-bottom: 1px solid rgba(108, 196, 180, 0.08);
}

.pj-marquee-track {
  display: flex;
  align-items: center;
  padding: 22px 0;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.pj-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.pj-marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pj-marquee-item i {
  color: var(--primary);
  font-size: 0.6rem;
}

.pj-parallax {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 13, 24, 0.86), rgba(6, 13, 24, 0.9)),
    url("image10.png") center / cover no-repeat fixed;
  text-align: center;
}

.pj-parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 20% 50%,
      rgba(108, 196, 180, 0.18),
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 50%,
      rgba(108, 196, 180, 0.12),
      transparent 50%
    );
  z-index: 1;
}

.pj-parallax .container {
  position: relative;
  z-index: 2;
}

.pj-parallax-content h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.08;
}

.pj-parallax-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 44px;
}

.pj-cta {
  background: #060d18;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.pj-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(108, 196, 180, 0.08),
    transparent 65%
  );
  pointer-events: none;
}

.pj-cta .cta-box {
  background: linear-gradient(
    145deg,
    rgba(108, 196, 180, 0.12) 0%,
    rgba(108, 196, 180, 0.04) 100%
  );
  border: 1px solid rgba(108, 196, 180, 0.2);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(108, 196, 180, 0.06);
}

.pj-footer {
  background: #030810;
  border-top: 1px solid rgba(108, 196, 180, 0.08);
}

.pj-section-title {
  text-align: center;
  margin-bottom: 70px;
}

.pj-section-title .label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pj-section-title h2 {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.pj-section-title p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ======================================
   CONTACT PAGE  (ct- prefix)
====================================== */
.ct-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060d18;
}

.ct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 55% at 0% 60%,
      rgba(108, 196, 180, 0.2) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 55% 45% at 100% 20%,
      rgba(108, 196, 180, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 35% at 60% 100%,
      rgba(71, 155, 140, 0.15) 0%,
      transparent 50%
    );
  z-index: 0;
  animation: ctAurora 16s ease-in-out infinite alternate;
}

@keyframes ctAurora {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.ct-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 196, 180, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 196, 180, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  animation: ctGrid 30s linear infinite;
}

@keyframes ctGrid {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

.ct-hero .container {
  position: relative;
  z-index: 2;
}

.ct-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
}

.ct-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 8px 20px;
  border: 1px solid rgba(108, 196, 180, 0.35);
  border-radius: 50px;
  background: rgba(108, 196, 180, 0.08);
}

.ct-hero-left h1 {
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1.08;
  color: white;
  margin-bottom: 22px;
}

.ct-hero-left p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin-bottom: 48px;
  max-width: 480px;
}

.ct-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* base state — starts hidden for stagger animation */
.ct-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(108, 196, 180, 0.1);
  border-radius: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.ct-info-item.ct-revealed {
  opacity: 1;
  transform: translateX(0);
}

.ct-info-item:hover {
  border-color: rgba(108, 196, 180, 0.35);
  background: rgba(108, 196, 180, 0.05);
}

.ct-info-item.ct-revealed:hover {
  transform: translateX(6px);
}

.ct-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(108, 196, 180, 0.12);
  border: 1px solid rgba(108, 196, 180, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

.ct-info-item:hover .ct-info-icon {
  background: var(--primary);
  color: white;
}

.ct-info-text span:first-child {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.ct-info-text span:last-child {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.ct-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(108, 196, 180, 0.14);
  border-radius: 28px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.ct-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    #91f5d3,
    transparent
  );
}

.ct-form-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(108, 196, 180, 0.1),
    transparent 65%
  );
  pointer-events: none;
}

.ct-form-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.ct-form-card > p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  margin-bottom: 32px;
}

.ct-form-group {
  position: relative;
  margin-bottom: 20px;
}

.ct-form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
  transition: color 0.25s ease;
}

.ct-form-group:focus-within label {
  color: var(--primary);
}

.ct-form-group input,
.ct-form-group select,
.ct-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(108, 196, 180, 0.15);
  border-radius: 12px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}

.ct-form-group input::placeholder,
.ct-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.ct-form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%236cc4b4' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 42px;
}

.ct-form-group select option {
  background: #0f1e2e;
  color: white;
}

.ct-form-group input:focus,
.ct-form-group select:focus,
.ct-form-group textarea:focus {
  border-color: rgba(108, 196, 180, 0.55);
  background: rgba(108, 196, 180, 0.05);
  box-shadow: 0 0 0 4px rgba(108, 196, 180, 0.08);
}

/* validation states */
.ct-form-group input.ct-error,
.ct-form-group select.ct-error,
.ct-form-group textarea.ct-error {
  border-color: rgba(255, 107, 107, 0.6) !important;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.08) !important;
}

.ct-field-error {
  display: block;
  margin-top: 6px;
  min-height: 18px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #ff6b6b;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-submit {
  width: 100%;
  padding: 16px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), #91f5d3);
  color: #060d18;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ct-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #91f5d3, var(--primary));
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 50px;
}

.ct-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(108, 196, 180, 0.4);
}
.ct-submit:hover::before {
  opacity: 1;
}
.ct-submit span,
.ct-submit i {
  position: relative;
  z-index: 1;
}
.ct-submit:active {
  transform: translateY(0);
}

.ct-submit.ct-loading {
  opacity: 0.75;
  pointer-events: none;
}

.ct-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(6, 13, 24, 0.3);
  border-top-color: #060d18;
  border-radius: 50%;
  animation: ctSpin 0.7s linear infinite;
  display: none;
}

.ct-submit.ct-loading .ct-spinner {
  display: block;
}
.ct-submit.ct-loading .ct-btn-text,
.ct-submit.ct-loading .ct-btn-icon {
  display: none;
}

@keyframes ctSpin {
  to {
    transform: rotate(360deg);
  }
}

.ct-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}

.ct-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(108, 196, 180, 0.2),
    rgba(108, 196, 180, 0.05)
  );
  border: 2px solid rgba(108, 196, 180, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  animation: ctSuccessPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes ctSuccessPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.ct-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.ct-success p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
  max-width: 320px;
  line-height: 1.7;
}

.ct-strip {
  background: #060d18;
  border-top: 1px solid rgba(108, 196, 180, 0.08);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.ct-strip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(108, 196, 180, 0.05),
    transparent 65%
  );
  pointer-events: none;
}

.ct-strip .container {
  position: relative;
  z-index: 1;
}

.ct-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: start;
}

.ct-strip-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.ct-strip-block p,
.ct-strip-block li {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  line-height: 1.9;
}

.ct-strip-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ct-strip-block a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.ct-strip-block a:hover {
  color: var(--primary);
}

.ct-strip-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ct-social-link {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(108, 196, 180, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  text-decoration: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.ct-social-link:hover {
  background: rgba(108, 196, 180, 0.12);
  border-color: rgba(108, 196, 180, 0.4);
  color: var(--primary);
  transform: translateY(-4px);
}

.ct-footer {
  background: #030810;
  border-top: 1px solid rgba(108, 196, 180, 0.06);
}

/* ======================================
   RESPONSIVE — TABLET (≤991px)
====================================== */
@media (max-width: 991px) {
  .custom-navbar {
    padding: 10px 0;
  }

  .navbar-collapse {
    background: rgba(15, 23, 42, 0.97);
    margin-top: 15px;
    padding: 20px;
    border-radius: 20px;
  }

  .navbar-nav {
    gap: 10px;
    text-align: center;
  }
  .nav-link {
    color: white !important;
    padding: 12px 0 !important;
  }
  .nav-logo {
    width: 32px;
    margin-left: 0;
    margin-right: 12px;
  }
  .logo-text {
    font-size: 20px;
  }

  .custom-dropdown {
    position: static !important;
    transform: none !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 10px !important;
    margin-top: 6px !important;
    padding: 6px 0 !important;
  }

  .custom-dropdown li a {
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .carousel-caption {
    left: 8%;
    right: 8%;
    text-align: center;
  }
  .carousel-caption h1 {
    font-size: 3.2rem;
    line-height: 1.15;
  }
  .carousel-caption p {
    font-size: 1rem;
    max-width: 100%;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image {
    height: 100vh;
  }

  .section-title h2,
  .about-section h2,
  .cta-box h2 {
    font-size: 2.7rem;
    line-height: 1.2;
  }

  .timeline::before {
    left: 28px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 85px;
    padding-right: 0;
    text-align: left !important;
    left: 0 !important;
  }
  .timeline-number {
    left: 0 !important;
    right: auto !important;
  }

  .team-content {
    text-align: center;
  }
  .team-content h2 {
    font-size: 2.8rem;
  }
  .team-features {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .team-hero-content {
    padding-top: 90px;
  }
  .team-hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
  }
  .team-banner-content h2 {
    font-size: 2.4rem;
  }

  .ac-hero-content {
    padding-top: 90px;
  }
  .ac-hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
  }
  .ac-img {
    height: 360px;
  }
  .ac-exp-badge {
    right: 10px;
    bottom: 10px;
  }
  .ac-img-ring {
    display: none;
  }
  .ac-story-content {
    margin-top: 20px;
  }
  .ac-scroll-hint {
    align-items: center;
  }

  .sv-hero-content h1 {
    font-size: 3.2rem;
  }
  .sv-parallax-content h2 {
    font-size: 2.6rem;
  }

  .pj-hero-content h1 {
    font-size: 3.2rem;
  }
  .pj-section-title h2 {
    font-size: 2.6rem;
  }
  .pj-parallax-content h2 {
    font-size: 2.4rem;
  }

  .ct-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 120px;
  }
  .ct-hero-left h1 {
    font-size: 3rem;
  }
  .ct-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================================
   RESPONSIVE — PHONE (≤768px)
====================================== */
@media (max-width: 768px) {
  section {
    padding: 80px 0 !important;
  }

  .hero-section {
    height: 100vh;
  }
  .carousel-caption {
    top: 52%;
    transform: translateY(-50%);
  }
  .carousel-caption h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .carousel-caption p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .hero-subtitle {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .hero-btn,
  .hero-btn-outline {
    width: 100%;
    max-width: 260px;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .service-card,
  .stat-box,
  .testimonial-card,
  .timeline-content {
    padding: 28px;
    border-radius: 24px;
  }
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 24px;
    margin-bottom: 22px;
  }

  .about-section {
    margin-top: 0;
    padding-top: 60px;
  }
  .about-section h2 {
    font-size: 2.2rem;
  }
  .about-section p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .section-title {
    margin-bottom: 45px;
  }
  .section-title h2 {
    font-size: 2.1rem;
  }
  .section-title p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .stat-box h2 {
    font-size: 2.5rem;
  }

  .parallax-section {
    min-height: 60vh;
    padding: 40px 20px;
  }
  .parallax-content {
    padding: 35px 25px;
  }
  .parallax-content h2 {
    font-size: 2rem;
  }
  .parallax-content p {
    font-size: 1rem;
  }

  .cta-box {
    padding: 60px 25px;
    border-radius: 28px;
  }
  .cta-box h2 {
    font-size: 2.2rem;
  }

  footer {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
    margin-top: 20px;
  }

  .team-parallax-section {
    padding: 100px 0;
    background-attachment: scroll;
  }
  .team-content h2 {
    font-size: 2.3rem;
  }
  .team-content p {
    font-size: 0.98rem;
  }
  .team-image-border {
    inset: -8px;
  }

  .team-hero {
    background-attachment: scroll;
  }
  .team-parallax-banner {
    background-attachment: scroll;
  }
  .team-hero-content h1 {
    font-size: 2.4rem;
  }
  .ac-hero-content h1 {
    font-size: 2.4rem;
  }
  .team-card-image {
    height: 240px;
  }
  .ac-hero {
    text-align: center;
  }
  .ac-img {
    height: 280px;
  }
  .ac-exp-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    width: 100%;
  }

  .sv-hero {
    background-attachment: scroll;
  }
  .sv-parallax {
    background-attachment: scroll;
  }
  .sv-hero-content h1 {
    font-size: 2.4rem;
  }
  .sv-card {
    padding: 32px 26px;
  }
  .sv-price-card {
    padding: 36px 26px;
  }
  .sv-price-num {
    font-size: 2.4rem;
  }
  .sv-price-featured {
    transform: translateY(0);
  }
  .sv-parallax-content h2 {
    font-size: 2rem;
  }

  .pj-hero-content h1 {
    font-size: 2.4rem;
  }
  .pj-hero-stats {
    gap: 28px;
  }
  .pj-card-img {
    height: 200px;
  }
  .pj-parallax {
    background-attachment: scroll;
  }
  .pj-parallax-content h2 {
    font-size: 2rem;
  }
  .pj-section-title h2 {
    font-size: 2rem;
  }

  .ct-hero-left h1 {
    font-size: 2.4rem;
  }
  .ct-form-card {
    padding: 32px 24px;
  }
  .ct-form-row {
    grid-template-columns: 1fr;
  }
  .ct-strip-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sf-grid {
    grid-template-columns: 1fr;
  }
  .sf-filters {
    gap: 8px;
  }
  .sf-filter {
    font-size: 0.78rem;
    padding: 8px 18px;
  }
  .sf-search-box input {
    font-size: 0.88rem;
    padding: 15px 50px 15px 46px;
  }
}

/* ======================================
   RESPONSIVE — SMALL PHONES (≤480px)
====================================== */
@media (max-width: 480px) {
  .logo-text {
    font-size: 18px;
  }
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 0.88rem;
  }

  .hero-btn,
  .hero-btn-outline {
    max-width: 100%;
  }

  .section-title h2,
  .about-section h2,
  .cta-box h2 {
    font-size: 1.8rem;
  }

  .parallax-content h2 {
    font-size: 1.7rem;
  }

  .timeline-content {
    padding: 24px;
  }
  .timeline-item {
    padding-left: 70px;
  }
  .timeline-number {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .team-content h2 {
    font-size: 2rem;
  }
  .team-feature {
    font-size: 0.95rem;
  }
  .team-image {
    height: 380px;
  }
  .glow-1,
  .glow-2 {
    display: none;
  }

  .team-hero-content h1 {
    font-size: 2rem;
  }
  .ac-hero-content h1 {
    font-size: 2rem;
  }
  .team-banner-content h2 {
    font-size: 1.8rem;
  }
  .orb-1,
  .orb-2 {
    display: none;
  }

  .sv-hero-content h1 {
    font-size: 2rem;
  }
  .sv-price-num {
    font-size: 2rem;
  }

  .pj-hero-content h1 {
    font-size: 2rem;
  }
  .pj-hero-stat span:first-child {
    font-size: 1.8rem;
  }

  .ct-hero-left h1 {
    font-size: 2rem;
  }
  .ct-form-card {
    padding: 28px 18px;
  }
}
