/* ======================== 
   Variables & Reset 
======================== */
:root {
  /* Colors */
  --primary: #0A2342;
  --primary-light: #1A3A6A;
  --secondary: #007BFF;
  --secondary-light: #4D9CFF;
  --accent: #00D8C0;
  --text-dark: #1E293B;
  --text-gray: #64748B;
  --text-light: #F8FAFC;
  --bg-color: #FAFCFF;
  --white: #FFFFFF;
  --success: #10B981;
  --warning: #F59E0B;
  --gradient-1: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  --gradient-text: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
  --gradient-dark: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);

  /* Typography */
  --font-heading: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;

  /* Shadows & Radius */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 10px 30px -5px rgba(0, 123, 255, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.text-success {
  color: var(--success);
}

/* ======================== 
   Buttons 
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

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

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-secondary {
  background: rgba(0, 123, 255, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(0, 123, 255, 0.2);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ======================== 
   Section Badge 
======================== */
.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 123, 255, 0.1);
  color: var(--secondary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ======================== 
   Navigation 
======================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

nav.scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--secondary);
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-gray);
  position: relative;
  font-size: 0.95rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-text);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 2rem 2rem;
  background: var(--white);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ======================== 
   Hero Section 
======================== */
.hero {
  padding: 10rem 0 6rem;
  background: radial-gradient(circle at top right, rgba(0, 216, 192, 0.08) 0%, transparent 50%),
    radial-gradient(circle at bottom left, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(0, 123, 255, 0.1);
  color: var(--secondary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 123, 255, 0.15);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 90%;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

.hero-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 1;
}

.image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: floatProfile 6s ease-in-out infinite;
}

@keyframes floatProfile {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 5s ease-in-out infinite alternate;
  z-index: 2;
}

.floating-card.top-left {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.floating-card.bottom-right {
  bottom: 15%;
  right: -5%;
  animation-delay: 2.5s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.1);
  color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.icon-box.heart {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.card-info {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}

.card-subtitle {
  font-size: 0.8rem;
  color: var(--text-gray);
}

/* ======================== 
   About Section 
======================== */
.about-section {
  padding: 7rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-card {
  padding: 2.5rem 2rem;
  background: var(--bg-color);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  text-align: center;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 123, 255, 0.1);
}

.about-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.about-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* ======================== 
   Why Section 
======================== */
.why-section {
  padding: 7rem 0;
  background: var(--bg-color);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.point-num {
  min-width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
}

.point-content h3, .point-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.point-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.why-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ======================== 
   Features Section 
======================== */
.features {
  padding: 7rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
}

.features-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.feature-group {
  padding: 2.5rem;
  background: var(--bg-color);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.feature-group:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 123, 255, 0.1);
}

.feature-group-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 123, 255, 0.1);
}

.feature-group-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
}

.feature-group-icon.patient {
  background: linear-gradient(135deg, var(--success) 0%, var(--accent) 100%);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.feature-group-header h3 {
  font-size: 1.4rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.feature-list li i {
  color: var(--success);
  margin-top: 3px;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ======================== 
   Policy / Legal Section 
======================== */
.policy-section {
  padding: 7rem 0;
  background: var(--primary);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.policy-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0, 216, 192, 0.06);
}

.policy-section .section-header h2 {
  color: var(--white);
}

.policy-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.policy-section .section-badge {
  background: rgba(0, 216, 192, 0.15);
  color: var(--accent);
}

.policy-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--accent) 100%);
}

.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.policy-dot {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--gradient-1);
  border: 4px solid var(--primary);
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
}

.policy-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  flex: 1;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.policy-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.policy-year {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  background: var(--gradient-1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.policy-card h3, .policy-card h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.policy-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ======================== 
   Technology Section 
======================== */
.technology-section {
  padding: 7rem 0;
  background: var(--white);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.tech-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.tech-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tech-desc {
  color: var(--text-gray);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: var(--bg-color);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.tech-feature:hover {
  border-color: rgba(0, 123, 255, 0.15);
  box-shadow: var(--shadow-sm);
}

.tech-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.tech-feature h3, .tech-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.tech-feature p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* ======================== 
   Benefits Section 
======================== */
.benefits-section {
  padding: 7rem 0;
  background: var(--bg-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.benefit-column {
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.benefit-column:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.benefit-header {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}

.benefit-header.director {
  background: var(--gradient-dark);
}

.benefit-header.it {
  background: var(--gradient-1);
}

.benefit-header i {
  font-size: 1.5rem;
}

.benefit-header h3 {
  color: var(--white);
  font-size: 1.3rem;
}

.benefit-list {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.benefit-list li i {
  color: var(--secondary);
  margin-top: 3px;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ======================== 
   Departments Section 
======================== */
.departments-section {
  padding: 5rem 0;
  background: var(--white);
}

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

.dept-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-color);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 123, 255, 0.15);
}

.dept-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: block;
}

.dept-card h3, .dept-card h4 {
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.4;
}

/* ======================== 
   Deployment / Steps Section 
======================== */
.deployment-section {
  padding: 7rem 0;
  background: var(--bg-color);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.step {
  position: relative;
  z-index: 1;
}

.step-num {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  color: var(--white);
  border-radius: 50%;
  border: 6px solid var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
  position: relative;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: all 0.3s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-card .icon-container {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1.2rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

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

/* ======================== 
   Conclusion Section 
======================== */
.conclusion-section {
  padding: 5rem 0;
  background: var(--white);
}

.conclusion-box {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6fff9 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.conclusion-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.conclusion-box blockquote {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.9;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.conclusion-box blockquote strong {
  color: var(--secondary);
  font-style: normal;
}

.conclusion-box cite {
  color: var(--text-gray);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
}

/* ======================== 
   CTA Section 
======================== */
.cta-section {
  padding: 6rem 0;
  background: var(--bg-color);
}

.cta-box {
  background: var(--gradient-1);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.cta-box::before,
.cta-box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-box::before {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -50px;
}

.cta-box::after {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -50px;
}

.cta-text {
  flex: 1;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 80%;
}

.cta-action {
  flex: 1;
  max-width: 450px;
  position: relative;
  z-index: 1;
}

.lead-form {
  display: flex;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.lead-form input {
  flex: 1;
  border: none;
  padding: 0 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 50px;
  outline: none;
}

.lead-form .btn {
  padding: 1rem 2rem;
  white-space: nowrap;
}

.form-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ======================== 
   Footer 
======================== */
footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 5rem 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  margin: 1.5rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-links h3, .footer-links h4,
.footer-contact h3, .footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.footer-contact ul li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--secondary-light);
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ======================== 
   Back to Top Button 
======================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* ======================== 
   Animations & Reveal 
======================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.visible {
  opacity: 1;
  transform: translate(0);
}

/* ======================== 
   Responsive Design 
======================== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .why-grid,
  .tech-grid {
    gap: 3rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

  .departments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-subtitle {
    margin: 0 auto 2rem;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats {
    justify-content: center;
  }

  .floating-card.top-left {
    left: 5%;
    top: -5%;
  }

  .floating-card.bottom-right {
    right: 5%;
    bottom: -5%;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .why-grid,
  .tech-grid,
  .features-dual,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .cta-text p {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 auto;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .lead-form {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    gap: 0.75rem;
  }

  .lead-form input {
    padding: 1rem;
    border-radius: 50px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .lead-form .btn {
    border-radius: 50px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .departments-grid {
    grid-template-columns: 1fr;
  }

  .conclusion-box {
    padding: 2.5rem 2rem;
  }

  .conclusion-box blockquote {
    font-size: 1rem;
  }
}

/* ========================
   Phone Confirmation Popup
======================== */
.phone-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 35, 66, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.phone-confirm-overlay.active {
  opacity: 1;
  visibility: visible;
}

.phone-confirm-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.phone-confirm-overlay.active .phone-confirm-popup {
  transform: scale(1) translateY(0);
}

.phone-confirm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.phone-confirm-popup h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.phone-confirm-popup > p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 0.75rem;
}

.phone-confirm-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 2px;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 123, 255, 0.06);
  border: 2px dashed rgba(0, 123, 255, 0.2);
  border-radius: var(--radius-md);
  margin: 0.5rem auto 0.75rem;
  display: inline-block;
}

.phone-confirm-note {
  font-size: 0.82rem !important;
  color: var(--text-gray) !important;
  opacity: 0.7;
  margin-bottom: 1.5rem !important;
}

.phone-confirm-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.phone-confirm-btn {
  flex: 1;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.phone-confirm-retry {
  background: var(--bg-color);
  color: var(--text-gray);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.phone-confirm-retry:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--primary);
}

@media (max-width: 480px) {
  .phone-confirm-actions {
    flex-direction: column;
  }

  .phone-confirm-number {
    font-size: 1.3rem;
  }
}