/* CSS Variables for consistency */
:root {
  --primary-color: #1976D2;
  --primary-dark: #1565C0;
  --primary-light: #64B5F6;
  --secondary-color: #667eea;
  --text-dark: #2d3748;
  --text-light: #6c757d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
  --border-radius: 10px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--white);
  color: #333;
  line-height: 1.6;
  
}

html {
  scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.logo img {
  max-height: 45px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Navigation Menu */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar ul li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--primary-color);
  background: rgba(25, 118, 210, 0.05);
}

.navbar ul li a:hover::before,
.navbar ul li a.active::before {
  width: 80%;
}

/* Header Buttons */
.header-buttons {
  display: flex;
  gap: 12px;
}

.header-buttons a {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.call-btn {
  background: transparent;
  color: #333;
  border-color: #e0e0e0;
}

.call-btn:hover {
  background: #f5f5f5;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.chat-btn {
  background: var(--primary-color);
  color: var(--white);
  cursor: pointer;
}

.chat-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 200px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li {
  display: block;
  width: 100%;
}

.dropdown li a {
  color: #555;
  padding: 12px 20px;
  border-radius: 0;
  font-weight: 400;
  border: none;
  box-shadow: none;
  display: block;
  transition: var(--transition);
  background: transparent;
}

.dropdown li a::before {
  display: none;
}

.dropdown li a:hover {
  background: rgba(25, 118, 210, 0.05);
  color: var(--primary-color);
  padding-left: 25px;
}

.services-arrow {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.navbar ul li:hover .services-arrow {
  transform: rotate(180deg);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; /* Fixed: was 0% */
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: linear-gradient(135deg, var(--white) 0%, #f8f9ff 100%);
  margin: 5% auto;
  padding: 0;
  border: none;
  width: 450px;
  max-width: 90%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 10px;
  text-align: center;
  position: relative;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.close:hover {
  background-color: rgba(255,255,255,0.2);
}

.modal-body {
  padding: 20px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 12px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: var(--border-radius);
  font-size: 12px;
  transition: var(--transition);
  background: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.error {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #e74c3c;
  background-color: #fdf2f2;
}

.form-group.has-error .error {
  display: block;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 15px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 15px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 20px;
  display: none;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  position: relative;
  padding: 0 20px;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-top: 70px;
  font-weight: 700;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-content h3 {
  font-size: 1rem;
  margin: 20px 0;
  margin-top: -20px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-content h3 span {
  color: var(--primary-light);
}

.features {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.features p {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.features i {
  color: var(--primary-color);
  margin-right: 8px;
}

/* Contact Form */
.contact-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: -15px;
  flex-wrap: wrap;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.contact-form input {
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  outline: none;
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  transition: var(--transition);
}

.contact-form input:focus {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.contact-form button {
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.contact-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(25, 118, 210, 0.3);
}

/* Press Coverage Section */
.press-coverage-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #764ba2 100%);
  padding: 60px 20px;
  text-align: center;
}

.media-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.publication-logo {
  transition: var(--transition);
  opacity: 0.8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
}

.publication-logo:hover {
  opacity: 1;
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.publication-logo img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Achievements Section */
.achievements-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--primary-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.content-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.content-text {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(10px);
}

.content-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4a5568;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.content-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.badge-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 25px 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-light);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: pointer;
}

.badge-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.badge-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.badge-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

/* Wiki Section */
.wiki-section {
  min-height: 80vh;
  background: var(--light-bg);
  padding: 80px 20px;
  display: flex;
  align-items: center;
}

.wiki-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.wiki-content {
  padding-right: 20px;
}

.wiki-subtitle {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.wiki-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.wiki-divider {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin-bottom: 25px;
}

.wiki-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.wiki-list {
  list-style: none;
  margin-bottom: 30px;
}

.wiki-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #495057;
  font-weight: 500;
}

.wiki-icon {
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  flex-shrink: 0;
}

.wiki-icon::after {
  content: '✓';
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.wiki-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* Wiki Form */
.wiki-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-medium);
  border: 1px solid #e9ecef;
}

.wiki-card-header {
  text-align: center;
  margin-bottom: 20px;
}

.wiki-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.wiki-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
}

.wiki-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wiki-input {
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  background: var(--light-bg);
  transition: var(--transition);
}

.wiki-input:focus {
  outline: none;
  border-color: #17a2b8;
  background: white;
  box-shadow: 0 0 0 3px rgba(23,162,184,0.1);
}

.wiki-textarea { 
  min-height: 100px; 
  resize: vertical; 
}

.wiki-button {
  padding: 14px 20px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.wiki-button:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(23,162,184,0.3);
}

/* Process Section */
.process-section {
  padding: 100px 20px;
  background: white;
  position: relative;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.process-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
}

.process-step {
  background: linear-gradient(135deg, #f8f9ff 0%, var(--white) 100%);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  position: relative;
  border: 2px solid #e9ecef;
  transition: all 0.4s ease;
}

.process-step:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(25, 118, 210, 0.15);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.step-icon i {
  font-size: 32px;
  color: var(--primary-color);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.step-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-duration {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

/* Challenges Section */
.challenges-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--text-dark) 0%, #4a5568 100%);
  color: white;
  position: relative;
}

.challenges-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.challenges-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.challenges-header {
  text-align: center;
  margin-bottom: 80px;
}

.challenges-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.challenges-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.challenges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.challenge-card {
  flex: 1 1 320px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.challenge-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.challenge-number {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.challenge-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.challenge-problem {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

.challenge-solution {
  background: rgba(25, 118, 210, 0.2);
  padding: 20px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.solution-label {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.solution-text {
  color: white;
  line-height: 1.6;
}

/* Success Stories Section */
.success-stories-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.stories-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stories-header {
  text-align: center;
  margin-bottom: 80px;
}

.stories-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.stories-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: -5px;
  top: -10px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.author-info h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.results-showcase {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 60px 40px;
  border-radius: var(--border-radius-lg);
  color: white;
  text-align: center;
}

.results-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.result-stat {
  text-align: center;
}

.result-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.result-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* FAQ Section */
.faq-section {
  padding: 100px 20px;
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--light-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
}

.faq-question {
  padding: 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(25, 118, 210, 0.05);
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 30px 30px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Call to Action Section */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite alternate;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.5;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.cta-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.cta-feature i {
  color: var(--primary-light);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 18px 35px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-primary {
  background: white;
  color: var(--primary-color);
}

.cta-primary:hover {
  background: var(--light-bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Footer Styles */
footer {
  background: #000000;
  color: var(--white);
  padding: 40px 20px 10px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

footer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(25, 118, 210, 0.05) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite alternate;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
}

/* Company Info */
.footer-company {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.footer-logo {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-one {
  width: auto;
  height: 100px;
}

.footer-company p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: 300;
}

/* Social Icons */
.footer-social-icons {
  display: flex;
  gap: 12px;
  margin: 15px 0 25px;
}

.footer-social-icons .social-link {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
}

.footer-social-icons .social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(25, 118, 210, 0.3);
}

/* Newsletter */
.newsletter {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.newsletter h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.newsletter > p {
  font-size: 1rem;
  color: #d0d0d0;
  margin: 10px 0;
  line-height: 1.3;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  margin: 15px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 16px 15px;
  border: none;
  outline: none;
  background: white;
  color: #333; /* Fixed: consistent color */
  font-size: 1rem;
}

.newsletter-form input[type="email"]:focus {
  color: #333; /* Fixed: consistent on focus */
}

.newsletter-form input[type="email"]::placeholder {
  color: #bbb;
}

.newsletter-form button {
  padding: 16px 20px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.newsletter-privacy {
  font-size: 0.9rem;
  color: #aaa;
  font-weight: 300;
}

/* Contact Info */
.contact-info {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #e0e0e0;
  transition: var(--transition);
  padding: 8px 0;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  margin-right: 10px;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
}

.contact-item:hover {
  color: var(--white);
  transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.copyright {
  font-size: 0.9rem;
  color: #bdbdbd;
  font-weight: 300;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: var(--transition);
  position: relative;
}

.footer-legal a:hover {
  color: #42a5f5;
}

/* Popup Styles - Optimized */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: var(--transition);
  justify-content: center;
  align-items: center;
}

.popup-overlay.show {
  display: flex;
  opacity: 1;
}

.popup-container {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #764ba2 100%);
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  transform: scale(0.7);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-overlay.show .popup-container {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.popup-header {
  text-align: center;
  padding: 40px 30px 20px;
  color: white;
}

.popup-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.popup-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.popup-subtitle {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 300;
}

.popup-form-container {
  background: white;
  padding: 30px;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group {
  flex: 1;
}

.popup-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 14px;
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
  box-sizing: border-box;
}

.popup-input:focus {
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
  transform: translateY(-1px);
}

.popup-input.error {
  border-color: #ff4444;
  background-color: #fff5f5;
  animation: shake 0.5s ease-in-out;
}

.popup-input.valid {
  border-color: #4caf50;
  background-color: #f5fff5;
}

.popup-textarea {
  min-height: 100px;
  resize: vertical;
}

.popup-submit {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.popup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
}

.btn-loading {
  background: #ccc;
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 8px;
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
  padding: 40px 30px;
  color: var(--primary-color);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #e8f5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #4caf50;
}

.success-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.success-text {
  color: #666;
  font-size: 16px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { opacity: 0.3; transform: scale(1) rotate(0deg); }
  100% { opacity: 0.6; transform: scale(1.1) rotate(180deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .wiki-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
    flex-wrap: wrap;
  }
  
  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    box-shadow: var(--shadow-light);
  }
  
  .navbar ul.show {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content h2 {
    font-size: 1.2rem;
  }
  
  .section-title,
  .process-title,
  .challenges-title,
  .stories-title,
  .faq-title,
  .cta-title {
    font-size: 2rem;
  }
  
  .badges-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    flex-direction: column;
  }
  
  .contact-form input {
    min-width: auto;
  }
  
  .wiki-section {
    padding: 60px 20px;
  }
  
  .wiki-heading {
    font-size: 1.7rem;
  }
  
  .wiki-content {
    padding-right: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .popup-container {
    width: 95%;
    margin: 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .popup-title {
    font-size: 24px;
  }
  
  .popup-header {
    padding: 30px 20px 20px;
  }
  
  .popup-form-container {
    padding: 25px 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .challenges-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }
  
  .hero {
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .press-coverage-section {
    padding: 40px 15px;
  }
  
  .media-showcase-container {
    gap: 20px;
  }
  
  .achievements-section {
    padding: 60px 15px;
  }
  
  .wiki-card {
    padding: 20px;
  }
  
  .popup-container {
    width: 98%;
    margin: 10px;
  }
  
  .popup-title {
    font-size: 20px;
  }
  
  .popup-form-container {
    padding: 20px 15px;
  }
}