:root {
  --primary-navy: #0a192f;
  --secondary-emerald: #10b981;
  --accent-gold: #f59e0b;
  --tech-blue: #3b82f6;
  --light-bg: #f8fafc;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--light-bg);
  overflow-x: hidden;
}
nav .active {
  color: #7e22ce;
}

.from-emerald-300 {
  --tw-gradient-from: #6ee7b7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(110, 231, 183, 0.53) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.gradient-bg {
  background: linear-gradient(135deg, #0a192f 0%, #1e3a8a 100%);
}

.section-bg {
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.stats-gradient {
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.hero-gradient {
  background: linear-gradient(
    90deg,
    rgba(10, 25, 47, 0.95) 0%,
    rgba(30, 58, 138, 0.9) 100%
  );
}

.glow-effect {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}
.font-whyflip {
  font-size: 1.2rem;
  line-height: 2rem;
}

/* Chart styling */
.chart-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #e2e8f0;
}

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

.chart-metric {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.875rem;
  color: #cbd5e1;
}

.chart-visual {
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.chart-visual canvas {
  width: 100% !important;
  height: 100% !important;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #11153e;
  color: #fff;
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
}

.cookie-content a {
  color: #9aa3ff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-actions .accept {
  background: #4caf50;
  color: #fff;
}

.cookie-actions .reject {
  background: #f44336;
  color: #fff;
}

/* ------------------------------------
                 Consent 
    --------------------------------------*/

.process-step {
  position: relative;
}

.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--tech-blue),
    var(--secondary-emerald)
  );
}

.connector-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(
    135deg,
    var(--tech-blue),
    var(--secondary-emerald)
  );
  border-radius: 50%;
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-item {
  position: relative;
}

/*  .timeline-item:before {
            content: '';
            position: absolute;
            left: -25px;
            top: 10px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--tech-blue);
        }*/

.flow-arrow {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(90deg);
  }
  50% {
    transform: translateY(-10px) rotate(90deg);
  }
}

.consent-pulse {
  animation: consent-pulse 3s infinite;
}

@keyframes consent-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(139, 92, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
  }
}

.diagram-container {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.diagram-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--tech-blue),
    var(--secondary-emerald),
    var(--consent-purple)
  );
}

/*-------------------------------------
                compliance
    ---------------------------------------*/

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e5e7eb, transparent);
}

/* --------------------------------------
                Data Protection
    ----------------------------------------*/

.section-fade {
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.security-glow {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}

.fabric-node {
  position: relative;
  transition: all 0.3s ease;
}

.fabric-node:hover {
  transform: scale(1.05);
}

.node-connector {
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
  left: 50%;
  transform: translateX(-50%);
}

.tech-badge {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.msp-card {
  border-left: 4px solid;
  transition: all 0.3s ease;
}

.msp-card:hover {
  border-left-width: 8px;
}

/* ------------------------------------
                Case Studies
    ---------------------------------------*/

.timeline-connector {
  position: relative;
}

.timeline-connector:before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 2px;
  height: calc(100% - 48px);
  background: linear-gradient(to bottom, #e5e7eb, transparent);
}

.case-study-visual {
  height: 200px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.pillar {
  position: absolute;
  bottom: 0;
  width: 40px;
  border-radius: 6px 6px 0 0;
  transition: all 0.3s ease;
}

.pillar:hover {
  transform: translateY(-5px);
}

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

.floating-icon {
  animation: float 3s ease-in-out infinite;
}

/* ----------------------------------
                Book Demo
        -------------------------------------*/

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.glow-effect {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.error-input {
  border-color: #ef4444 !important;
}

/*-----------------------------------------
                    Privacy Policy
        -------------------------------------------*/

.table-bordered td {
  border: 1px solid #ccc;
  padding: 5px;
}

.bold {
  font-weight: 600;
}

#toolkit ul {
  list-style: unset !important;
  margin: 20px !important;
  padding: 10px !important;
}

.privacy-policy-section h4 {
  color: #00204a !important;
  font-size: 1.4rem !important;
}

footer ul li {
  list-style: unset !important;
  /* margin:20px!important;
          padding:10px!important;*/
}
footer h4 {
  color: #fff !important;
}
.text-gray {
  color: #747272;
}
