﻿/* ===================================================
   Prana â€” MASTER STYLESHEET
   Premium Cybersecurity & Forensics Website
   =================================================== */

/* â”€â”€â”€ GOOGLE FONTS â”€â”€â”€ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&family=Montserrat:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* â”€â”€â”€ CSS CUSTOM PROPERTIES â”€â”€â”€ */
:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --primary-light: #ff6b6b;
  --navy: #555555;
  --navy-mid: #555555;
  --navy-light: #555555;
  --dark-text: #555555;
  --body-text: #555;
  --muted: #888;
  --border: #e8e8e8;
  --bg-light: #f8f9fa;
  --bg-section: #f4f5f7;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, .10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all .3s ease;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

/* â”€â”€â”€ RESET & BASE â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

/* Premium Scroll Smoothness (For browsers that support it) */
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--font-main);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* â”€â”€â”€ SCROLLBAR â”€â”€â”€ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* â”€â”€â”€ UTILITY CLASSES â”€â”€â”€ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.text-red {
  color: var(--primary);
}

.text-white {
  color: white;
}

.text-navy {
  color: var(--navy);
}

.text-muted {
  color: var(--muted);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-12 {
  margin-bottom: 48px;
}

.w-full {
  width: 100%;
}

/* â”€â”€â”€ GRID SYSTEM â”€â”€â”€ */
.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2-1 {
  grid-template-columns: 2fr 1fr;
}

.grid-1-2 {
  grid-template-columns: 1fr 2fr;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.col-span-2 {
  grid-column: span 2;
}

/* â”€â”€â”€ SECTION LABELS â”€â”€â”€ */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #e63946;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.8;
}

/* â”€â”€â”€ BUTTONS â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, .35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-red:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* â”€â”€â”€ TOP BAR â”€â”€â”€ */
.topbar {
  background: var(--navy-light);
  color: #ccc;
  font-size: 13px;
  padding: 10px 0;
  z-index: 100;
  position: relative;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left {
  color: #aaa;
}

.topbar-left a {
  color: var(--primary);
  font-weight: 600;
}

.topbar-left a:hover {
  text-decoration: underline;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #bbb;
  transition: color .2s;
}

.topbar-right a:hover {
  color: white;
}

/* â”€â”€â”€ NAVBAR â”€â”€â”€ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
  gap: 0;
  line-height: 1.1;
  overflow: hidden;
}

.brand-top-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

/* Base animation for brand parts */
.brand-top-row .brand-prana,
.brand-top-row .brand-Solutions {
  display: inline-block;
}

@keyframes brandReveal {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.brand-prana {
  font-size: 22px;
  font-weight: 700;
  color: #e63946;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.brand-Solutions {
  font-size: 22px;
  font-weight: 400;
  color: #555555;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.brand-tagline {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  text-align: justify;
  text-align-last: justify;
  width: 100%;
  margin: 0;
  margin-top: -3px;
  text-transform: none;
  letter-spacing: -0.2px;
  font-family: 'Inter', sans-serif;
}






.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-text);
  border-radius: 8px;
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #555;
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown a:hover {
  color: var(--primary);
  background: #fff5f5;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
/* Mobile Menu */
.mobile-menu {
  display: block;
  /* Always block for transform */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  /* Glassmorphism */
  z-index: 9999;
  padding: 0;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}

.mobile-menu-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: rotate(90deg);
}

.mobile-scroll-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px 48px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
}

.mobile-sub-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 12px;
  border-left: 2px solid rgba(0, 0, 0, 0.04);
  margin-left: 4px;
}

.mobile-sub-links.open {
  max-height: 500px;
  /* Arbitrary large height for animation */
  margin-top: 8px;
  margin-bottom: 8px;
}

.mobile-sub-links a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  color: #666;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}

.mobile-sub-links a:hover {
  color: var(--primary);
  background: rgba(230, 57, 70, 0.04);
  transform: translateX(4px);
}

/* â”€â”€â”€ HERO SECTION â”€â”€â”€ */
.hero {
  background: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, .06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-play-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.hero-play-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(230, 57, 70, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
  font-size: 18px;
}

.hero-play-btn:hover .hero-play-circle {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 20px rgba(230, 57, 70, .4);
}

.hero-play-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img img {
  width: 100%;
  max-width: 500px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-16px);
  }
}

/* â”€â”€â”€ VIDEO MODAL â”€â”€â”€ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #555555;
  border-radius: var(--radius);
  overflow: hidden;
  transform: scale(.9);
  transition: transform .3s;
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color .2s;
}

.modal-close:hover {
  color: var(--primary);
}

/* â”€â”€â”€ CORE SERVICES STRIP â”€â”€â”€ */
.services-strip {
  background: var(--navy-mid);
  padding: 60px 0;
}

.services-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-strip-item {
  display: flex;
  gap: 20px;
}

.service-strip-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-display);
}

.service-strip-item h3 {
  color: white;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-strip-item p {
  color: #9ba8b5;
  font-size: 13.5px;
  line-height: 1.7;
}

/* â”€â”€â”€ WHY CHOOSE US â”€â”€â”€ */
.why-choose {
  background: white;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-choose-img img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.why-card {
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(230, 57, 70, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 20px;
}

.why-card h3 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  color: #9ba8b5;
  font-size: 13px;
  line-height: 1.6;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* â”€â”€â”€ SERVICES CARDS â”€â”€â”€ */
.services-section {
  background: var(--bg-light);
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy-mid) 0%, transparent 60%);
}

.service-card-body {
  background: var(--navy-mid);
  padding: 28px;
  text-align: center;
  position: relative;
}

.service-card-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(230, 57, 70, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
}

.service-card-body h3 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 12px;
}

.service-card-body p {
  color: #9ba8b5;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card-body a {
  color: white;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s;
}

.service-card-body a:hover {
  color: var(--primary);
}

.service-card-line {
  height: 3px;
  background: var(--primary);
}

/* â”€â”€â”€ MILESTONES MARQUEE â”€â”€â”€ */
.milestones {
  background: white;
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.milestone-item {
  flex-shrink: 0;
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: .7;
  transition: var(--transition);
}

.milestone-item:hover {
  filter: grayscale(0);
  opacity: 1;
}

.milestone-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* â”€â”€â”€ EXPERTISE â”€â”€â”€ */
.expertise {
  background: var(--bg-light);
}



.expertise-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}

.expertise-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.expertise-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* â”€â”€â”€ ORGANIZATIONS â”€â”€â”€ */
.org-section {
  background: white;
}

.org-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.org-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}

.org-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-text);
  font-size: 14px;
  font-weight: 500;
}

.org-feature .icon {
  color: var(--primary);
  flex-shrink: 0;
}

/* â”€â”€â”€ FAQ â”€â”€â”€ */
.faq-section {
  background: var(--bg-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.faq-left img {
  max-width: 360px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: inherit;
  border: none;
  transition: color .2s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 16px;
  transition: transform .3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 18px;
}

.faq-answer-text {
  padding: 0 22px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
}

/* â”€â”€â”€ BLOG â”€â”€â”€ */
.blog-section {
  background: white;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .5px;
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color .2s;
}

.blog-card:hover h3 {
  color: var(--primary);
}

.blog-card-body p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  transition: gap .2s;
}

.blog-card:hover .blog-read-more {
  gap: 10px;
}

/* â”€â”€â”€ CTA SECTION â”€â”€â”€ */
.cta-section {
  background: #FF2D3F;
  text-align: center;
  padding: 72px 0;
}

.cta-section.flex {
  text-align: left;
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
}

.cta-flex h2 {
  margin-bottom: 0;
  max-width: 540px;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: white;
}

.testimonials-section.dark {
  background: var(--navy-mid);
}

.testimonials-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.testimonials-viewport::before,
.testimonials-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light), transparent);
}

.testimonials-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light), transparent);
}

.testimonials-scroller {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: testimonial-scroll 50s linear infinite;
  padding: 0 16px;
}

.testimonials-scroller:hover {
  animation-play-state: paused;
}

@keyframes testimonial-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 16px));
  }
}

.testimonial-card {
  width: 380px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  white-space: normal;
  /* override max-content from parent */
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(230, 57, 70, 0.3);
}

.testimonials-section.dark .testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
  font-size: 64px;
  color: var(--primary);
  line-height: 0.8;
  margin-bottom: 16px;
  font-family: Georgia, serif;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 8px;
  /* space for scrollbar */
}

/* Custom scrollbar for testimonials */
.testimonial-text::-webkit-scrollbar {
  width: 4px;
}

.testimonial-text::-webkit-scrollbar-track {
  background: transparent;
}

.testimonial-text::-webkit-scrollbar-thumb {
  background: rgba(230, 57, 70, 0.4);
  border-radius: 4px;
}

.testimonial-text::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.testimonials-section.dark .testimonial-text {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
}

.testimonials-section.dark .testimonial-name {
  color: white;
}

.testimonial-role {
  font-size: 13px;
  color: #777;
}

.testimonials-section.dark .testimonial-role {
  color: #aaa;
}

.stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  font-size: 16px;
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 280px;
    padding: 20px;
  }

  .testimonial-quote {
    font-size: 42px;
  }

  .testimonial-text {
    font-size: 13px;
    margin-bottom: 16px;
    max-height: 160px;
  }
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background .3s, transform .2s;
  border: none;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* â”€â”€â”€ PAGE BANNER â”€â”€â”€ */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(230, 57, 70, .08);
  pointer-events: none;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: #aaa;
  transition: color .2s;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb .sep {
  color: #555;
}

.breadcrumb .current {
  color: white;
}

.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}

.page-banner p {
  color: #aaa;
  max-width: 520px;
}

/* â”€â”€â”€ ABOUT PAGE â”€â”€â”€ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mv-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mv-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* --- ABOUT VALUES FLIP CARD --- */
.about-flip {
  perspective: 1200px;
  width: 100%;
  height: 600px;
  cursor: pointer;
}

.about-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-style: preserve-3d;
}

.about-flip:hover .about-flip-inner,
.about-flip.flipped .about-flip-inner {
  transform: rotateY(180deg);
}

.about-flip-front,
.about-flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.about-flip-front {
  background: white;
  z-index: 2;
}

.about-flip-back {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: white;
  transform: rotateY(180deg);
  z-index: 1;
}

.about-flip-front h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.about-flip-back h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.about-flip p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-flip-front p {
  color: var(--muted);
}

.about-flip-back p {
  color: rgba(255, 255, 255, 0.85);
}

.about-flip-hint {
  margin-top: auto;
  font-size: 12px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}

.about-flip-back .about-flip-hint {
  color: rgba(255, 255, 255, 0.5);
}

.numbered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.numbered-feature {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
}

.num-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.numbered-feature h3 {
  color: white;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.numbered-feature p {
  color: #bbb;
  font-size: 13px;
  line-height: 1.7;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.stat-val {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #999;
}

/* â”€â”€â”€ CONTACT PAGE â”€â”€â”€ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(230, 57, 70, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 14px;
  color: var(--muted);
  transition: color .2s;
  display: block;
}

.contact-info-item a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.contact-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--dark-text);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  font-family: inherit;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, .08);
}

.form-input.textarea {
  resize: vertical;
  min-height: 140px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

.form-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-check a {
  color: var(--primary);
}

.form-success {
  background: #f0fdf4;
  border: 2px solid #86efac;
  border-radius: 10px;
  padding: 16px;
  color: #166534;
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
}

.form-success.show {
  display: block;
}

/* â”€â”€â”€ CYBER FLIP CARDS â”€â”€â”€ */
.cyber-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cyber-card-flip {
  perspective: 1000px;
  height: 320px;
  cursor: pointer;
}

.cyber-card-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-style: preserve-3d;
}

.cyber-card-flip:hover .cyber-card-flip-inner {
  transform: rotateY(180deg);
}

/* Both faces share common styles */
.cyber-card-front,
.cyber-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

/* FRONT FACE */
.cyber-card-front {
  background: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  z-index: 2;
}

.cyber-card-front::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #404040, var(--primary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cyber-card-flip:hover .cyber-card-front::before {
  opacity: 1;
}

.cyber-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform .3s, box-shadow .3s;
}

.cyber-card-flip:hover .cyber-card-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(74, 157, 234, 0.3);
}

.cyber-card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: invert(1) brightness(200%);
}

.cyber-card-front h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip-hint {
  font-size: 12px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: color 0.3s;
}

.cyber-card-flip:hover .flip-hint {
  color: var(--primary);
}

/* BACK FACE */
.cyber-card-back {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  transform: rotateY(180deg);
  border: 1px solid rgba(74, 157, 234, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.cyber-card-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(74, 157, 234, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cyber-card-back::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #404040, var(--primary), #404040);
}

.cyber-card-back h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cyber-card-back p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

.flip-back-hint {
  position: absolute;
  bottom: 16px;
  right: 18px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.cyber-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cyber-faq-item {
  background: var(--navy-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.cyber-faq-q {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  font-family: inherit;
}

.cyber-faq-chevron {
  flex-shrink: 0;
  color: #888;
  font-size: 14px;
  transition: transform .3s;
}

.cyber-faq-item.open .cyber-faq-chevron {
  transform: rotate(180deg);
}

.cyber-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}

.cyber-faq-item.open .cyber-faq-a {
  max-height: 300px;
  padding-bottom: 16px;
}

.cyber-faq-a-text {
  padding: 0 20px;
  font-size: 13px;
  color: #bbb;
  line-height: 1.8;
}

/* â”€â”€â”€ CAREERS PAGE â”€â”€â”€ */
.career-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.career-stat {
  text-align: center;
}

.career-stat-val {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.career-stat-label {
  font-size: 14px;
  color: var(--muted);
}

.career-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.career-form-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.career-form-box p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.file-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s;
}

.file-upload:hover {
  border-color: var(--primary);
}

.file-upload svg {
  font-size: 28px;
  color: #aaa;
  margin-bottom: 8px;
}

.file-upload p {
  font-size: 13px;
  color: var(--muted);
}

/* â”€â”€â”€ BLOG PAGE â”€â”€â”€ */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* â”€â”€â”€ FAQ PAGE â”€â”€â”€ */
.faq-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
  gap: 12px;
}

.faq-page-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer {
  background: var(--navy-mid);
  color: #9ba8b5;
}

.footer-main {
  padding: 70px 0;
  /* dark footer background */
  background: #555555;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 0;
  filter: none;
}

.footer-brand-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  gap: 0;
  line-height: 1.1;
  margin-top: 0;
}

.footer-brand-text .brand-top-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.footer-brand-text .brand-prana {
  font-size: 24px;
  font-weight: 700;
  color: #e63946;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-brand-text .brand-Solutions {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-brand-text .brand-tagline {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  width: 100%;
  margin: 2px 0 0 0;
  text-transform: none;
  letter-spacing: 0.2px;
  font-family: 'Inter', sans-serif;
}


.footer-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  color: white;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  font-size: 15px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.footer-col h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 13.5px;
  color: #ddd;
  transition: color .2s;
}

.footer-col ul a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.footer-contact-item span {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.footer-contact-item a {
  font-size: 13px;
  color: #ddd;
  transition: color .2s;
}

.footer-contact-item a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

.footer-bottom a {
  color: #7e8ea0;
  transition: color .2s;
}

.footer-bottom a:hover {
  color: white;
}

/* â”€â”€â”€ SCROLL TO TOP â”€â”€â”€ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(230, 57, 70, .4);
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* â”€â”€â”€ ANIMATION HELPERS â”€â”€â”€ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

/* â”€â”€â”€ SVG ICONS inline â”€â”€â”€ */
.icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-img {
    order: -1;
  }

  .services-strip-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .org-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-left {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cyber-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cyber-card-flip {
    height: 300px;
  }

  /* Tap-to-flip support for touch devices (tablets) */
  .cyber-card-flip.flipped .cyber-card-flip-inner {
    transform: rotateY(180deg);
  }

  .cyber-faq-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .numbered-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo img {
    height: 38px;
  }

  .nav-brand-text .brand-prana {
    font-size: 16px;
  }

  .nav-brand-text .brand-Solutions {
    font-size: 16px;
  }

  .nav-brand-text .brand-tagline {
    font-size: 13px;
  }

  .topbar-left {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .services-strip {
    padding: 48px 0;
  }

  .hero {
    padding: 56px 0 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cyber-cards-grid {
    grid-template-columns: 1fr;
  }

  .cyber-card-flip {
    height: 280px;
  }

  /* Tap-to-flip support for touch devices */
  .cyber-card-flip.flipped .cyber-card-flip-inner {
    transform: rotateY(180deg);
  }

  /* Show tap hint on mobile */
  .flip-hint .hover-text {
    display: none;
  }

  .flip-hint .tap-text {
    display: inline;
  }

  .blog-cards-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-text .brand-prana {
    font-size: 16px;
  }

  .footer-brand-text .brand-Solutions {
    font-size: 16px;
  }

  .footer-brand-text .brand-tagline {
    font-size: 13px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .career-stats {
    grid-template-columns: 1fr;
  }

  .org-features {
    grid-template-columns: 1fr;
  }

  .cta-flex {
    flex-direction: column;
    text-align: center;
  }

  .page-banner {
    padding: 48px 0;
  }

  .topbar-right {
    gap: 12px;
  }

  .topbar-right a span {
    display: none;
  }
}

/* ─── TOUCH DEVICE: Tap-to-flip cards ─── */
@media (hover: none) {

  /* Disable hover-flip on touch devices; use JS .flipped class instead */
  .cyber-card-flip:hover .cyber-card-flip-inner {
    transform: none;
  }

  .cyber-card-flip.flipped .cyber-card-flip-inner {
    transform: rotateY(180deg);
  }

  /* Update hint text */
  .flip-hint .hover-text {
    display: none;
  }

  .flip-hint .tap-text {
    display: inline;
  }
}

/* ─── PRELOADER ─── */
#preloader {
  position: fixed;
  inset: 0;
  background: transparent;
  overflow: hidden;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Split panels â€“ top & bottom halves that slide away on exit */
.pl-panel {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: #ffffff;
  z-index: 1;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.pl-panel-top {
  top: 0;
}

.pl-panel-bottom {
  bottom: 0;
}

#preloader.exit-anim .pl-panel-top {
  transform: translateY(-100%);
}

#preloader.exit-anim .pl-panel-bottom {
  transform: translateY(100%);
}

/* Fade out all preloader elements during exit */
#preloader.exit-anim .pl-center,
#preloader.exit-anim #pl-canvas,
#preloader.exit-anim .pl-hex-grid,
#preloader.exit-anim .pl-scanline,
#preloader.exit-anim .pl-corner {
  opacity: 0 !important;
  transition: opacity 0.4s ease;
}

/* Make sure elements have a base transition to fade smoothly */
.pl-center,
#pl-canvas,
.pl-hex-grid,
.pl-scanline,
.pl-corner {
  transition: opacity 0.4s ease;
}

/* Full-screen matrix canvas */
#pl-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  z-index: 2;
  pointer-events: none;
}

/* Hexagon grid overlay */
.pl-hex-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, rgba(10, 20, 50, 0.03) 0, rgba(10, 20, 50, 0.03) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(120deg, rgba(10, 20, 50, 0.03) 0, rgba(10, 20, 50, 0.03) 1px, transparent 0, transparent 50%);
  background-size: 60px 104px;
  z-index: 2;
  pointer-events: none;
  animation: hexShift 20s linear infinite;
}

@keyframes hexShift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 104px;
  }
}


/* Glowing corner accents */
.pl-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 4;
  pointer-events: none;
}

.pl-corner::before,
.pl-corner::after {
  content: '';
  position: absolute;
  background: #e63946;
  border-radius: 2px;
}

.pl-corner::before {
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
}

.pl-corner::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
}

.pl-corner-tl {
  top: 32px;
  left: 32px;
}

.pl-corner-tr {
  top: 32px;
  right: 32px;
  transform: scaleX(-1);
}

.pl-corner-bl {
  bottom: 32px;
  left: 32px;
  transform: scaleY(-1);
}

.pl-corner-br {
  bottom: 32px;
  right: 32px;
  transform: scale(-1, -1);
}

/* Horizontal scan line */
.pl-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.6), rgba(64, 64, 64, 0.8), rgba(230, 57, 70, 0.6), transparent);
  box-shadow: 0 0 18px 4px rgba(64, 64, 64, 0.35);
  z-index: 5;
  pointer-events: none;
  animation: scanMove 2.4s ease-in-out infinite;
}

@keyframes scanMove {
  0% {
    top: 0%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    top: 100%;
    opacity: 1;
  }

  60% {
    opacity: 0;
  }

  100% {
    top: 0%;
    opacity: 0;
  }
}

/* Central content wrapper */
.pl-center {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Outer glow ring around logo */
.pl-glow-ring {
  position: relative;
  margin-bottom: 24px;
}



/* Logo */
.pl-logo {
  width: 130px;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(10, 20, 50, 0.15)) drop-shadow(0 0 20px rgba(230, 57, 70, 0.3));
  animation: logoEntrance 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: scale(0.6) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Brand name */
.pl-brand {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.9rem, 4vw, 2rem);
  font-weight: 900;
  letter-spacing: clamp(2px, 2vw, 8px);
  text-transform: uppercase;
  color: #0a1432;
  margin-bottom: 6px;
  animation: brandSlide 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.3s both;
  text-align: center;
  white-space: nowrap;
}

.pl-brand span {
  color: #e63946;
}

@keyframes brandSlide {
  from {
    opacity: 0;
    transform: translateY(16px);
    letter-spacing: clamp(8px, 4vw, 20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: clamp(2px, 2vw, 8px);
  }
}

/* Tagline */
.pl-tagline {
  font-size: clamp(0.5rem, 2vw, 0.72rem);
  font-weight: 600;
  letter-spacing: clamp(1px, 1vw, 3.5px);
  text-transform: uppercase;
  color: rgba(10, 20, 50, 0.6);
  margin-bottom: 36px;
  animation: plFadeUp 0.7s ease 0.6s both;
  text-align: center;
  white-space: nowrap;
}

@keyframes plFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Progress track */
.pl-progress-track {
  width: clamp(240px, 40vw, 320px);
  height: 3px;
  background: rgba(10, 20, 50, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
  animation: plFadeUp 0.6s ease 0.7s both;
}

.pl-progress-track::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: rgba(230, 57, 70, 0.08);
}

.pl-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #555555 0%, #e63946 40%, #404040 100%);
  border-radius: 3px;
  transition: width 0.12s linear;
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.6);
}

/* Percentage counter */
.pl-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: clamp(240px, 40vw, 320px);
  animation: plFadeUp 0.6s ease 0.8s both;
}

.pl-counter {
  font-family: 'Outfit', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: #e63946;
  letter-spacing: 1px;
}

.pl-status-msg {
  font-size: 0.68rem;
  color: rgba(10, 20, 50, 0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Floating CSS particles */
.pl-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  animation: particleDrift linear infinite;
}

@keyframes particleDrift {
  0% {
    transform: translateY(0) scale(1);
    opacity: var(--op);
  }

  50% {
    transform: translateY(-40px) scale(1.3);
    opacity: calc(var(--op) * 0.4);
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: var(--op);
  }
}


#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.preloader-logo {
  width: 180px;
  animation: logo-pulse 2s infinite ease-in-out;
}

@keyframes logo-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.9;
  }
}

.cyber-svg-container {
  width: 100px;
  height: 100px;
  color: var(--primary);
  position: relative;
}

.cyber-svg-container svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tech-ring {
  fill: none;
  stroke: var(--navy);
  stroke-width: 0.5;
  stroke-dasharray: 15 10;
  transform-origin: center;
}

.ring-1 {
  animation: tech-rotate 8s linear infinite;
  opacity: 0.3;
}

.ring-2 {
  stroke: var(--primary);
  stroke-dasharray: 10 20;
  animation: tech-rotate-rev 6s linear infinite;
  opacity: 0.2;
}

.shield-master {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: draw-shield-master 3s ease-in-out infinite;
}

.lock-master {
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.5;
  opacity: 0;
  animation: fade-lock-master 3s ease-in-out infinite;
}

@keyframes tech-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes tech-rotate-rev {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes draw-shield-master {
  0% {
    stroke-dashoffset: 250;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  50% {
    stroke-dashoffset: 0;
  }

  85% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes fade-lock-master {

  0%,
  50% {
    opacity: 0;
    transform: scale(0.9);
  }

  70%,
  85% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.loader-bar-bg {
  width: 200px;
  height: 4px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-top: 16px;
}

.loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--navy) 0%, var(--primary) 100%);
  border-radius: 4px;
  animation: load-slide 1.5s infinite ease-in-out;
}

@keyframes load-slide {
  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   PREMIUM SCROLL ANIMATIONS
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */

/* Base Hidden State */
.reveal {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

/* Specific Reveal Types */
.reveal-up {
  transform: translateY(60px);
}

.reveal-down {
  transform: translateY(-60px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-scale {
  transform: scale(0.9);
}

/* Visible State */
.reveal.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Delay Utility Classes */
.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

.delay-6 {
  transition-delay: 0.6s !important;
}

/* Parallax Utility */
.parallax-wrap {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}

/* Premium Reveal Section Divider */
.scroll-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), 50%, var(--border), transparent);
  margin: 40px 0;
  opacity: 0;
  transform: scaleX(0);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-divider.active {
  opacity: 1;
  transform: scaleX(1);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 10000;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.4);
}

@keyframes charReveal {
  from {
    transform: translateY(110%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

.active .char {
  animation: charReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}


/* ═══════════════════════════════ TESTIMONIALS ═══════════════════════════════ */
.testimonials-section {
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}

.testimonials-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 40px 0;
  cursor: grab;
}

.testimonials-viewport:active {
  cursor: grabbing;
}

/* Gradient overlays for the scroller edges */
.testimonials-viewport::before,
.testimonials-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}

.dark .testimonials-viewport::before {
  background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
}

.testimonials-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}

.dark .testimonials-viewport::after {
  background: linear-gradient(to left, var(--navy) 0%, transparent 100%);
}

.testimonials-scroller {
  display: flex;
  width: max-content;
  animation: testimonialMarquee 60s linear infinite;
  gap: 30px;
  padding-left: 30px;
}

.testimonials-scroller:hover {
  animation-play-state: paused;
}

@keyframes testimonialMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(230, 57, 70, 0.1);
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  width: 450px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);
  transition: 0.6s;
  pointer-events: none;
}

.testimonial-card:hover::after {
  left: 100%;
}

.dark .testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.15);
  background: #fff;
}

.dark .testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-quote {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-family: serif;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
  font-style: italic;
  flex-grow: 1;
}

.dark .testimonial-text {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.dark .testimonial-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dark .testimonial-avatar {
  border-color: var(--navy-accent);
}

.testimonial-name {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.dark .testimonial-name {
  color: #fff;
}

.testimonial-role {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stars {
  color: #f1c40f;
  font-size: 1.1rem;
  letter-spacing: 2px;
}


.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.dark .testimonial-name {
  color: #fff;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.dark .testimonial-role {
  color: rgba(255, 255, 255, 0.5);
}

.stars {
  color: #ffb800;
  font-size: 14px;
  letter-spacing: 1px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--primary);
}

section:not(.dark) .dot {
  background: #ddd;
}

section:not(.dark) .dot.active {
  background: var(--primary);
}