:root {
  --primary-color: #00d4ff;
  --secondary-color: #7000ff;
  --bg-color: #0a0e27;
  --text-color: #e0e6ed;
  --text-muted: #8892a6;
  --card-bg: #141b2d;
  --card-bg-hover: #1a2332;
  --primary-light: #66e0ff;
  --gradient-1: linear-gradient(135deg, #00d4ff 0%, #7000ff 100%);
  --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow-sm: 0 2px 8px rgba(0, 212, 255, 0.1);
  --shadow-md: 0 8px 30px rgba(0, 212, 255, 0.2);
  --shadow-lg: 0 20px 60px rgba(0, 212, 255, 0.3);
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  padding-bottom: 80px;
  position: relative;
  overflow-x: hidden;
}

body > .container {
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(20deg); }
}

/* Navbar */
.navbar {
  backdrop-filter: blur(20px);
  background-color: rgba(10, 14, 39, 0.9) !important;
  box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.navbar-logo {
  height: 32px;
  width: auto;
  display: block;
}

.nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link:hover::before {
  width: 80%;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 3rem 1rem 6rem;
  text-align: center;
}

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

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.logo-img {
  max-width: 280px;
  filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.4));
  animation: float 3s ease-in-out infinite;
}

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

/* Buttons */
.btn {
  border-radius: 12px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-glow {
  animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
  0%, 100% { box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3); }
  50% { box-shadow: 0 8px 50px rgba(0, 212, 255, 0.6); }
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: white;
  color: var(--bg-color);
  border-color: white;
}

/* Stats Section */
.stats-section {
  background: rgba(0, 212, 255, 0.03);
  border-radius: 20px;
  padding: 3rem 1rem;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-box {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Feature Boxes */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 3rem;
}

.feature-box {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem 2rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 212, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover {
  transform: translateY(-10px);
  background: var(--card-bg-hover);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon-wrapper {
  position: relative;
  display: inline-block;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.feature-icon i {
  color: white;
}

.feature-box:hover .feature-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: var(--shadow-md);
}

.feature-title {
  color: var(--primary-light);
  font-weight: 600;
  margin-top: 1.5rem;
}

.feature-text {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Technologies Section */
.technologies-section {
  background: rgba(112, 0, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(112, 0, 255, 0.1);
}

.tech-badge {
  padding: 2rem 1rem;
  background: var(--card-bg);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.tech-badge:hover {
  transform: translateY(-5px) scale(1.05);
  background: var(--card-bg-hover);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.tech-badge i {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.tech-badge:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 5px 15px rgba(0, 212, 255, 0.5));
}

.tech-badge p {
  color: var(--text-color);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
  margin: 4rem 0 3rem 0;
}

.cta-box {
  background: var(--gradient-1);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotateGradient 10s linear infinite;
}

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

.cta-box h2, .cta-box p {
  position: relative;
  z-index: 1;
  color: white;
}

.cta-box .btn-light {
  background: white;
  color: var(--bg-color);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-box .btn-light:hover {
  background: var(--bg-color);
  color: white;
  transform: translateY(-3px) scale(1.05);
}

/* Service Cards Modern */
.service-card-modern {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 212, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-icon-wrapper {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
  text-align: center;
}

.service-icon-wrapper img {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 5px 20px rgba(0, 212, 255, 0.3));
  transition: transform 0.4s ease;
}

.service-card-modern:hover .service-icon-wrapper img {
  transform: scale(1.1) rotate(5deg);
}

/* Service Icon Circle - New Design */
.service-icon-wrapper-modern {
  padding: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon-circle {
  width: 120px;
  height: 120px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
}

.service-icon-circle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-1);
  opacity: 0.3;
  transform: scale(1.2);
  transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-circle {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.service-card-modern:hover .service-icon-circle::before {
  transform: scale(1.4);
  opacity: 0;
}

.service-icon-circle i {
  color: white;
  z-index: 1;
}

.service-card-modern .card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.service-card-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.service-features li {
  color: var(--text-color);
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.service-features i {
  color: var(--primary-color);
}

/* Process Section */
.process-step {
  padding: 1.5rem;
}

.process-number {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.process-step h4 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Page */
.contact-info-wrapper,
.contact-form-wrapper {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(0, 212, 255, 0.08);
  transform: translateX(5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
}

.contact-method h5 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-method p {
  color: var(--text-muted);
}

/* Forms */
.form-control, .form-select {
  background-color: rgba(0, 212, 255, 0.05);
  border: 2px solid rgba(0, 212, 255, 0.2);
  color: var(--text-color);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  background-color: rgba(0, 212, 255, 0.08);
  border-color: var(--primary-color);
  color: var(--text-color);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.form-control::placeholder {
  color: rgba(160, 168, 181, 0.5);
}

.form-label {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.form-label i {
  color: var(--primary-color);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control {
  cursor: pointer;
}

/* Footer */
.footer {
  backdrop-filter: blur(20px);
  background-color: rgba(10, 14, 39, 0.98) !important;
  box-shadow: 0 -4px 30px rgba(0, 212, 255, 0.1);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding: 1rem 0;
  z-index: 1000;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border-radius: 12px;
  color: var(--text-color);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 212, 255, 0.1);
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: var(--gradient-1);
  color: white;
  transform: translateY(-5px) rotate(10deg);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* Background Video */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: brightness(0.3) saturate(1.2);
}

/* Animated Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(112, 0, 255, 0.15) 0%, transparent 50%);
  z-index: -2;
  animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Click Effect */
.click-effect {
  position: fixed;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: clickEffect 0.8s ease-out;
  z-index: 9999;
}

@keyframes clickEffect {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding-bottom: 65px;
  }
  
  .hero {
    padding: 2rem 1rem 3rem;
  }
  
  .hero h1 {
    font-size: 2rem !important;
  }
  
  .logo-img {
    max-width: 200px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .feature-box,
  .service-card-modern,
  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 1.5rem !important;
  }
  
  .cta-box {
    padding: 2.5rem 1.5rem !important;
  }
  
  /* Footer responsive fix */
  .footer {
    padding: 0.75rem 0;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  
  .footer-left {
    order: 2;
    flex: 0 0 auto;
  }
  
  .footer-left p {
    font-size: 0.75rem;
  }
  
  .social-icons {
    order: 1;
    justify-content: center;
    gap: 0.4rem;
    flex: 1;
  }
  
  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  /* Service icons responsive */
  .service-icon-circle {
    width: 100px;
    height: 100px;
  }
  
  .service-icon-circle i {
    font-size: 2.5rem !important;
  }
}

/* Loading Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

img:not(.logo-img) {
  animation: fadeIn 0.5s ease-in;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-1);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* About Page Styles */
.story-section {
  padding: 2rem 0;
}

.story-section .lead {
  color: var(--text-color);
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

/* Mission & Vision Cards */
.mission-vision-card {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.mission-vision-card:hover::before {
  transform: scaleX(1);
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.mv-icon-wrapper {
  width: 90px;
  height: 90px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.mv-icon-wrapper i {
  color: white;
}

.mv-title {
  color: var(--primary-light);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.mv-text {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Value Cards */
.value-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(112, 0, 255, 0.2) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.value-icon i {
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  transform: rotateY(360deg) scale(1.1);
  background: var(--gradient-1);
}

.value-card:hover .value-icon i {
  color: white;
}

.value-title {
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.value-text {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Tech Stack Section */
.tech-stack-section {
  background: rgba(112, 0, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(112, 0, 255, 0.1);
}

.tech-stack-item {
  padding: 2rem 1rem;
  background: var(--card-bg);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 212, 255, 0.1);
  height: 100%;
}

.tech-stack-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.tech-stack-item i {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.tech-stack-item:hover i {
  transform: scale(1.2) rotateY(360deg);
  filter: drop-shadow(0 5px 20px rgba(0, 212, 255, 0.5));
}

.tech-stack-item h5 {
  color: var(--text-color);
  font-weight: 600;
  margin-top: 1rem;
}

/* Additional responsive styles */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-vision-card,
  .value-card {
    padding: 2rem 1.5rem;
  }
  
  .mv-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .mv-title {
    font-size: 1.5rem;
  }
  
  .tech-stack-item {
    padding: 1.5rem 1rem;
  }
  
  /* Navbar responsive */
  .navbar-collapse {
    background: rgba(10, 14, 39, 0.98);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
  }
  
  /* Buttons responsive */
  .btn-lg {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Privacy Page Styles */
.privacy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 2rem;
}

.privacy-card {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.privacy-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.privacy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.privacy-card:hover::before {
  transform: scaleX(1);
}

.privacy-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.privacy-icon i {
  color: white;
}

.privacy-title {
  color: var(--primary-light);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.privacy-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.privacy-list li {
  color: var(--text-color);
  padding: 0.75rem 0;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

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

.privacy-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy-link:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Purpose Items */
.purpose-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.purpose-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.purpose-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.purpose-item span {
  color: var(--text-color);
  font-size: 0.95rem;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.right-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.right-letter {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.right-text strong {
  color: var(--text-color);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}

.right-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Security Items */
.security-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.security-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-color);
}

.security-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.security-item span {
  color: var(--text-color);
  font-size: 0.95rem;
}

/* Privacy Page Responsive */
@media (max-width: 768px) {
  .privacy-card {
    padding: 2rem 1.5rem;
  }
  
  .privacy-title {
    font-size: 1.5rem;
  }
  
  .privacy-icon {
    width: 60px;
    height: 60px;
  }
  
  .rights-grid {
    grid-template-columns: 1fr;
  }
  
  .security-items {
    grid-template-columns: 1fr;
  }
}
