/* General Styles */
:root {
  --primary-color: #4f46e5;
  --secondary-color: #10b981;
  --dark-color: #1f2937;
  --light-color: #f9fafb;
  --gray-color: #6b7280;
  --border-color: #e5e7eb;
  --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

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

a {
  text-decoration: none;
  color: var(--primary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #4338ca;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #059669;
  transform: translateY(-2px);
}

.cta-center {
  text-align: center;
  margin-top: 30px;
}

/* How It Works CTA Button Styling */
.how-it-works-preview .cta-center {
  margin-top: 40px;
  padding-top: 20px;
}

.how-it-works-preview .cta-center .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

/* Header Style */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo img {
  height: 52px;
  width: auto;
  transition: all 0.3s ease;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.btn-contact {
  background-color: var(--primary-color);
  color: white !important;
  padding: 8px 16px;
  border-radius: 5px;
}

.btn-contact:hover {
  background-color: #4338ca;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
}

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

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-image {
  flex: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--gray-color);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Value Proposition Cards */
.value-props {
  padding: 80px 0;
  background-color: white;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card p {
  color: var(--gray-color);
}

/* Statistics */
.stats {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
}

.stats .container {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
}

.stat-item {
  padding: 20px;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* How It Works Section */
.how-it-works-preview {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

.step {
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.step p {
  color: var(--gray-color);
}

/* Target Audience Section */
.target-audience {
  padding: 80px 0;
  background-color: white;
}

.audience-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.tab-btn.active {
  border-bottom: 3px solid var(--primary-color);
  color: var(--primary-color);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.tab-image {
  flex: 1;
  min-width: 300px;
}

.tab-image img {
  height: 100%;
  object-fit: cover;
}

.tab-text {
  flex: 1;
  padding: 40px;
  min-width: 300px;
}

.tab-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.tab-text ul {
  margin-bottom: 30px;
}

.tab-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.tab-text ul li:before {
  content: '✓';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Success Stories */
.success-stories-preview {
  padding: 80px 0;
  background-color: #f8fafc;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.story-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.story-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-content {
  padding: 25px;
}

.story-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.story-content p {
  color: var(--gray-color);
  margin-bottom: 15px;
  font-style: italic;
}

.story-author {
  display: block;
  font-weight: 500;
  color: var(--dark-color);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #818cf8 100%);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta .btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.cta .btn-primary:hover {
  background-color: #f3f4f6;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-column p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 15px;
}

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

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: white;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info li i {
  margin-right: 10px;
  color: var(--primary-color);
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #4338ca;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom p {
  opacity: 0.7;
}

.footer-bottom ul {
  display: flex;
}

.footer-bottom ul li {
  margin-left: 20px;
}

.footer-bottom ul li a {
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-bottom ul li a:hover {
  opacity: 1;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* How It Works Page */
.how-it-works {
  padding: 80px 0;
  background-color: white;
}

.process-overview {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.process-overview h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.process-overview p {
  font-size: 1.1rem;
  color: var(--gray-color);
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 80px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:after {
  content: '';
  position: absolute;
  top: 70px;
  bottom: -70px;
  left: 25px;
  width: 2px;
  background-color: var(--primary-color);
  z-index: 1;
}

.process-step:last-child:after {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 30px;
  z-index: 2;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.step-content p {
  margin-bottom: 20px;
  color: var(--gray-color);
}

.step-image {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Technology Infrastructure */
.technology-infrastructure {
  padding: 80px 0;
  background-color: #f8fafc;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.tech-item {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-10px);
}

.tech-item .tech-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

.tech-item .tech-icon i {
  font-size: 3rem;
}

.tech-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

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

@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

/* Demo Video */
.demo-video {
  padding: 80px 0;
  background-color: white;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.video-placeholder {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button i {
  font-size: 2rem;
  color: var(--primary-color);
}

.video-placeholder:hover .play-button {
  background-color: var(--primary-color);
}

.video-placeholder:hover .play-button i {
  color: white;
}

.video-caption {
  color: var(--gray-color);
  font-size: 1.1rem;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: #f8fafc;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
}

.faq-toggle {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* Features Page Styles */
.main-features {
  padding: 80px 0;
  background-color: white;
}

.feature-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.feature-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.feature-intro p {
  font-size: 1.1rem;
  color: var(--gray-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.feature-item {
  display: flex;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  font-size: 2.5rem;
}

.feature-content {
  flex: 1;
  padding: 30px;
}

.feature-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-content p {
  margin-bottom: 20px;
  color: var(--gray-color);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  color: var(--dark-color);
}

.feature-list li:before {
  content: '✓';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* User-Specific Features */
.user-features {
  padding: 80px 0;
  background-color: #f8fafc;
}

.user-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px;
}

.user-feature {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.user-feature:hover {
  transform: translateY(-10px);
}

.user-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.user-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.user-feature p {
  color: var(--gray-color);
}

/* Technical Features */
.technical-features {
  padding: 80px 0;
  background-color: white;
}

.tech-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tech-feature {
  background-color: #f8fafc;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.tech-feature:hover {
  transform: translateY(-10px);
}

.tech-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.tech-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.tech-feature p {
  color: var(--gray-color);
}

/* Feature Comparison */
.feature-comparison {
  padding: 80px 0;
  background-color: #f8fafc;
}

.comparison-table-container {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 500;
}

.comparison-table .fa-check {
  color: var(--secondary-color);
}

.comparison-table .fa-times {
  color: #ef4444;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

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

  .tab-image img {
    width: 100%;
  }

  .process-step {
    flex-direction: column;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .process-step:after {
    display: none;
  }

  .feature-item {
    flex-direction: column;
  }

  .feature-icon {
    flex: 0 0 auto;
    padding: 30px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  .logo {
    margin-bottom: 20px;
  }

  .logo img {
    height: 44px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 10px;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .stats .container {
    flex-direction: column;
  }

  .tab-pane.active {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom ul {
    margin-top: 15px;
    justify-content: center;
  }

  .footer-bottom ul li {
    margin: 0 10px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .logo img {
    height: 38px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .tab-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 5px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px;
  }
}

/* Success Stories Page Styles */
.featured-story {
  padding: 80px 0;
  background-color: white;
}

.featured-story-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.featured-story-image {
  flex: 1;
  min-width: 300px;
}

.featured-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-story-text {
  flex: 1;
  padding: 40px;
  min-width: 300px;
}

.story-category {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.featured-story-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.story-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.5;
  border-left: 3px solid var(--primary-color);
  padding-left: 20px;
}

.featured-story-text p {
  margin-bottom: 20px;
  color: var(--gray-color);
  line-height: 1.7;
}

.story-author {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.story-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.story-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.story-author p {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Success Stories Grid */
.success-stories-grid {
  padding: 80px 0;
  background-color: #f8fafc;
}

.stories-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: transparent;
  border: none;
  padding: 10px 20px;
  margin: 0 10px 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.stories-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.story-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-10px);
}

.story-image {
  height: 200px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.1);
}

.story-content {
  padding: 25px;
}

.story-content h3 {
  font-size: 1.4rem;
  margin: 10px 0 15px;
  color: var(--dark-color);
}

.story-content p {
  color: var(--gray-color);
  margin-bottom: 15px;
  font-style: italic;
}

.story-content .story-author {
  display: block;
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
}

.read-more:hover i {
  transform: translateX(5px);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 5px;
  background-color: white;
  color: var(--dark-color);
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pagination a.active {
  background-color: var(--primary-color);
  color: white;
}

.pagination a:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Testimonials Carousel */
.testimonials {
  padding: 80px 0;
  background-color: white;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  background-color: #f8fafc;
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.testimonial-quote {
  position: relative;
  padding: 20px 40px;
}

.testimonial-quote i.fa-quote-left {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-color);
  opacity: 0.3;
  font-size: 1.5rem;
}

.testimonial-quote i.fa-quote-right {
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--primary-color);
  opacity: 0.3;
  font-size: 1.5rem;
}

.testimonial-quote p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--dark-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark-color);
  text-align: left;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin-bottom: 0;
  text-align: left;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
  background-color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--primary-color);
  color: white;
}

.testimonial-dots {
  display: flex;
  margin: 0 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e5e7eb;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
}

/* Results & Statistics */
.results-stats {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

.stat-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.stat-description {
  color: var(--gray-color);
}

.research-note {
  text-align: center;
  margin-top: 30px;
  color: var(--gray-color);
  font-size: 0.9rem;
  font-style: italic;
}

/* Share Your Story */
.share-story {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #818cf8 100%);
  color: white;
}

.share-story-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.share-story h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.share-story p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.share-story .btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.share-story .btn-primary:hover {
  background-color: #f3f4f6;
}

/* Responsive Styles for Success Stories */
@media (max-width: 992px) {
  .featured-story-content {
    flex-direction: column;
  }

  .featured-story-image {
    width: 100%;
    height: 300px;
  }

  .testimonial-content {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .stories-container {
    grid-template-columns: 1fr;
  }

  .featured-story-text h2 {
    font-size: 1.8rem;
  }

  .story-quote {
    font-size: 1.1rem;
  }

  .testimonial-quote p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .filter-btn {
    margin: 0 5px 10px;
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .story-image {
    height: 180px;
  }

  .story-content {
    padding: 20px;
  }

  .story-content h3 {
    font-size: 1.2rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Contact Page Styles */
.contact-info-section {
  padding: 80px 0;
  background-color: white;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-info-item {
  background-color: #f8fafc;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-10px);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.contact-info-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.contact-info-item p {
  color: var(--gray-color);
  margin-bottom: 5px;
}

/* Contact Form */
.contact-form-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.contact-form-container {
  display: flex;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.contact-form-content {
  flex: 1;
  padding: 40px;
  min-width: 300px;
}

.contact-subtitle {
  color: var(--gray-color);
  margin-bottom: 30px;
}

.contact-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  flex: 1;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form textarea {
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
}

.form-checkbox input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.form-checkbox label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.form-checkbox a {
  color: var(--primary-color);
}

.contact-form button {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: white;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
  .contact-form-container {
    flex-direction: column;
  }

  .contact-image {
    height: 300px;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .contact-form-content {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-info-item h3 {
    font-size: 1.1rem;
  }

  .contact-form label {
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* Hide specific sections */
.value-props,
.stats {
  display: none !important;
}

/* Hide social media buttons in footer */
.social-icons {
  display: none !important;
}

/* Hide contact information section */
.contact-info-section {
  display: none !important;
}

/* Hide FAQ section */
.faq {
  display: none !important;
}

/* Hide Package Comparison section */
.package-comparison {
  display: none !important;
}

.package-comparison {
  background: #f8f9ff;
  padding: 60px 0;
}

/* Modal Styles */
.demo-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease-out;
  overflow: hidden;
}

@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), #6366f1);
  color: white;
  padding: 24px 32px;
  position: relative;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-header p {
  margin: 8px 0 0 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 32px;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-form input {
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.demo-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.demo-form button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-form button:hover {
  background: #4338ca;
  transform: translateY(-1px);
}

.demo-form button:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

/* Video Selection Styles */
.video-selection {
  display: none;
  text-align: center;
}

.video-selection.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-selection h3 {
  margin-bottom: 24px;
  color: var(--dark-color);
  font-size: 1.3rem;
}

.video-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.video-option {
  background: #f8f9ff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--dark-color);
}

.video-option:hover {
  border-color: var(--primary-color);
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15);
}

.video-option i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: block;
}

.video-option h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.video-option p {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin: 0;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
  text-align: center;
  font-weight: 500;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #f5c6cb;
  text-align: center;
  font-weight: 500;
}

/* Video Player Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
  position: relative;
  margin: 2% auto;
  width: 90%;
  max-width: 1000px;
  background: black;
  border-radius: 12px;
  overflow: hidden;
}

.video-modal video {
  width: 100%;
  height: auto;
  display: block;
}

.video-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1002;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .modal-header,
  .modal-body {
    padding: 20px;
  }

  .video-options {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-option {
    padding: 20px 16px;
  }

  .video-option i {
    font-size: 2rem;
  }
}
