@charset "UTF-8";

/* ===== ROOT VARIABLES ===== */
:root {
    /* Purple Securities Brand Colors */
    --primary-purple: #8400ff;
    --dark-purple: #6b00cc;
    --light-purple: #a64dff;
    --accent-purple: #bc13ff;
    --neon-purple: #da21ff;
    
    /* Background Colors */
    --dark-bg: #0d021c;
    --darker-bg: #120528;
    --section-bg: #1a0b2e;
    --card-bg: rgba(132, 0, 255, 0.15);
    --card-hover-bg: rgba(132, 0, 255, 0.25);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #b0b0b0;
    --text-dark: #212529;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8400ff, #bc13ff);
    --gradient-secondary: linear-gradient(135deg, #6b00cc, #a64dff);
    --gradient-overlay: linear-gradient(135deg, rgba(13, 2, 28, 0.95) 0%, rgba(18, 5, 40, 0.9) 50%, rgba(26, 11, 46, 0.95) 100%);
    
    /* Spacing - 1 inch = 96px at 96 DPI */
    --margin-side: 96px;
    --section-padding: 100px 0;
    
    /* Borders and Shadows */
    --border-radius: 20px;
    --border-radius-sm: 10px;
    --box-shadow-sm: 0 4px 20px rgba(132, 0, 255, 0.15);
    --box-shadow-md: 0 10px 40px rgba(132, 0, 255, 0.25);
    --box-shadow-lg: 0 25px 70px rgba(132, 0, 255, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(156, 77, 255, 0.15) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(156, 77, 255, 0.15) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(132, 0, 255, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(to bottom, #0d021c, #120528);
  background-attachment: fixed;
  overflow-x: hidden;
  padding-bottom: calc(4rem + env(safe-area-inset-bottom));
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.3);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(132, 0, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(132, 0, 255, 0.6);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 14 - 3rem * 14));
  }
}

@keyframes scrollMobile {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-180px * 14 - 3rem * 14));
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.gradient-text {
  background: linear-gradient(135deg, #8400ff, #bc13ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: shimmer 3s ease-in-out infinite;
}

.gradient-text-2 {
  background: linear-gradient(135deg, #6b00cc, #a64dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: shimmer 3s ease-in-out infinite;
}

.outline-text {
  color: #fff;
  text-shadow: 0 0 40px rgba(132, 0, 255, 0.6), 0 0 80px rgba(132, 0, 255, 0.4);
  display: inline-block;
}

.hero-bg {
    background: url("/assets/img/PSEC.webp") center/cover no-repeat fixed;
}

.hero-overlay {
  background: radial-gradient(
      circle at 20% 50%,
      rgba(132, 0, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(188, 19, 255, 0.15) 0%,
      transparent 50%
    );
  animation: pulse 8s ease-in-out infinite;
}

.badge-glow {
  animation: glow 3s ease-in-out infinite;
}

.credentials-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

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

@media (max-width: 576px) {
  .credentials-track {
    animation: scrollMobile 30s linear infinite;
  }
}

.credential-ring::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, #8400ff, transparent 30%);
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.credential-ring:hover::before {
  opacity: 0.3;
}

.chev {
  display: inline-flex;
  transition: transform 220ms ease;
  transform-origin: center;
}

.chev.open {
  transform: rotate(180deg);
}

/* Bottom Nav Active State */
.mobile-nav-item.active i,
.mobile-nav-item.active span {
  color: #da21ff;
  text-shadow: 0 0 10px rgba(218, 33, 255, 0.5);
}

.btn-primary-custom {
    padding: 1.1rem 3rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}
.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(132, 0, 255, 0.5);
    color: white;
}
.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(132, 0, 255, 0.5);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(180deg, transparent 0%, var(--section-bg) 50%, transparent 100%);
}

.about-content {
    margin-top: 3rem;
}

.about-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid rgba(132, 0, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease!important;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    display: none;
}

.about-card:hover {
    transform: translateY(-5px)!important;
    border-color: var(--primary-purple);
    box-shadow: var(--box-shadow-md);
    background: var(--card-hover-bg);
}

.about-card:hover::before {
    display: none;
}

.card-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(132, 0, 255, 0.15);
    border: 2px solid var(--primary-purple);
    border-radius: var(--border-radius-sm);
    color: var(--accent-purple);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
    color: white;
}

.card-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    background: var(--section-bg);
    position: relative;
}

.industries-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.industry-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid rgba(132, 0, 255, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.industry-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.industry-row:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: var(--box-shadow-lg);
}

.industry-row:hover::before {
    opacity: 0.05;
}

.industry-row.reverse {
    direction: rtl;
}

.industry-row.reverse > * {
    direction: ltr;
}

.industry-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    z-index: 2;
}

.industry-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-row:hover .industry-image-wrapper img {
    transform: scale(1.1);
}

.industry-content-wrapper {
    padding: 3rem;
    z-index: 2;
    position: relative;
}

.industry-content-wrapper h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.industry-row:hover .industry-content-wrapper h3 {
    color: var(--neon-purple);
}

.industry-content-wrapper p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}
