:root {
  /* Primary Brand Colors */
  --primary-color: #5c599d;
  --primary-dark: #333070;
  --primary-light: #7c78c6;

  /* Secondary Colors */
  --secondary-color: #64748b;
  --secondary-dark: #475569;
  --secondary-light: #94a3b8;

  /* Accent Colors */
  --accent-color: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;

  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-dark: #0f172a;

  /* Text Colors */
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Status Colors */
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --info-color: #3b82f6;

  /* Border Colors */
  --border-color: #e2e8f0;
  --border-dark: #cbd5e1;
}

/* Website Specific Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Header Styles */
.header-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo {
  height: 60px;
  width: auto;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

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

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

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

.download-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  color: var(--text-white);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
  color: var(--text-white);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23cbd5e1" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  z-index: 1;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight {
  color: var(--primary-color);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn.btn-primary {
  border: var(--bs-btn-border-width) solid var(--primary-light);
  background-color: var(--primary-dark);
}

.hero-buttons .btn:hover {
  border: var(--bs-btn-border-width) solid var(--primary-light);
  background-color: var(--primary-light);
}

.hero-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  /* color: var(--primary-color); */
}

.stat-label {
  font-size: 0.9rem;
  /* color: var(--text-secondary); */
}

.hero-image {
  position: relative;
  text-align: center;
}

.app-mockup {
  max-width: 500px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.floating-card {
  position: absolute;
  background: var(--bg-primary);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.card-1 {
  top: 20%;
  right: -3%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  left: -3%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 20%;
  right: -3%;
  animation-delay: 2s;
}

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

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.features-section .swiper-slide {
  background: var(--bg-primary);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.features-section .swiper-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--text-white);
  font-size: 2rem;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.features-swiper {
  padding: 20px 0 60px 0;
  overflow: hidden;
}

.features-swiper .swiper-wrapper {
  align-items: stretch;
}

.features-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.features-section .features-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.features-swiper .swiper-pagination {
  bottom: 20px;
  position: relative;
  margin-top: 30px;
}

.features-swiper .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.3;
  width: 12px;
  height: 12px;
  margin: 0 4px;
}

.features-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.features-swiper .swiper-button-next,
.features-swiper .swiper-button-prev {
  color: var(--primary-color);
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-top: -20px;
}

.features-swiper .swiper-button-next:after,
.features-swiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .features-swiper .swiper-button-next,
  .features-swiper .swiper-button-prev {
    display: none;
  }
  
  .features-swiper {
    padding: 20px 0 40px 0;
  }
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.step-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-image img {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.testimonial-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: var(--accent-color);
  margin-left: 0.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.author-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Download Section */
.download-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-white);
}

.download-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.download-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.download-buttons .download-btn img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
  filter: invert(1);
}

.download-buttons .download-btn:hover img {
  transform: scale(1.05);
}

.download-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.download-stats .stat {
  text-align: center;
}

.download-stats .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.download-stats .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.app-screens {
  height: 100%;
  max-height: 600px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Footer */
.footer-section {
  /* background: var(--bg-dark);
  color: var(--text-white); */
  padding: 3rem 0 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-right: -20px;
  margin-left: -10px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  /* color: var(--accent-color); */
  margin-bottom: 1rem;
  width: 100%;
}

.footer-description {
  color: var(--text-light);
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  /* color: var(--accent-color); */
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.contact-item i {
  /* color: var(--accent-color); */
  width: 20px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  color: var(--text-white);
}

.footer-divider {
  border-color: var(--border-dark);
  margin: 2rem 0 1rem;
}

.footer-copyright {
  color: var(--text-light);
  text-align: center;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    /* flex-direction: column;
    align-items: stretch; */
    margin-bottom: 1.5rem;
    justify-content: center;
  }

  .hero-subtitle {
    margin-bottom: 1.5rem;
  }

  .hero-buttons .btn {
    padding: 0.8rem 1rem;
  }

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

  /* .floating-card {
    position: static;
    margin: 1rem 0;
    justify-content: center;
  } */

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

  .download-stats {
    justify-content: center;
  }

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

  .contact-item,
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

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

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

/* Media Section Styles */
.media-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.media-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Media Grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.media-item {
  background: #ffffff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.media-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5b5a9d, #32317a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.media-item:hover::before {
  transform: scaleX(1);
}

.media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.media-logo {
  margin-bottom: 1rem;
  text-align: center;
}

.media-outlet-logo {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.media-item:hover .media-outlet-logo {
  filter: grayscale(0%);
}

.media-content-text {
  text-align: right;
}

.media-headline {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.media-excerpt {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.media-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #e9ecef;
}

.media-source {
  font-weight: 600;
  color: #5b5a9d;
  font-size: 0.9rem;
}

.media-date {
  color: #6c757d;
  font-size: 0.85rem;
}

/* Media Stats */
.media-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 15px;
  color: white;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  /* margin-bottom: 0.5rem; */
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Press Kit */
.press-kit {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  max-width: 500px;
  margin: 0 auto;
}

.press-kit h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.press-kit p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.press-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.press-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  color: white;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .media-section {
    padding: 60px 0;
  }

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

  .media-subtitle {
    font-size: 1.1rem;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .press-kit {
    padding: 1.5rem;
  }
}

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

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






.media-swiper {
  padding: 20px 0 60px 0;
  overflow: visible;
}

.media-swiper .swiper-slide {
  opacity: 0.3;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.media-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.media-swiper .swiper-slide-next,
.media-swiper .swiper-slide-prev {
  opacity: 0.6;
  transform: scale(0.9);
}

.media-swiper .swiper-pagination {
  bottom: 20px;
}

.media-swiper .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.3;
}

.media-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.media-swiper .swiper-button-next,
.media-swiper .swiper-button-prev {
  color: var(--primary-color);
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.media-swiper .swiper-button-next:after,
.media-swiper .swiper-button-prev:after {
  font-size: 16px;
}

@media (max-width: 768px) {
  .media-swiper .swiper-button-next,
  .media-swiper .swiper-button-prev {
    display: none;
  }
}





/* AI Feature Section */
.ai-feature-section {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.ai-feature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.4;0.1" dur="3s" repeatCount="indefinite"/></circle><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.5;0.1" dur="2.5s" repeatCount="indefinite"/></circle></svg>');
  pointer-events: none;
}

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

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ai-badge i {
  color: #ffd700;
}

.ai-feature-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ai-feature-title .highlight {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-feature-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.ai-features-list {
  margin-bottom: 2.5rem;
  text-align: right;
}

.ai-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ai-feature-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ai-feature-icon i {
  font-size: 1.2rem;
  color: #ffd700;
}

.ai-feature-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ai-feature-text p {
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

.ai-cta-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ai-feature-section .btn-primary,
.ai-feature-section .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.ai-feature-section .btn-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #333;
}

.ai-feature-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  color: #333;
  text-decoration: none;
}

.ai-feature-section .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ai-feature-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* AI Visual */
.ai-feature-visual {
  position: relative;
  text-align: center;
}

.ai-phone-mockup {
  position: relative;
  display: inline-block;
}

.phone-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  border-radius: 50%;
}

.ai-scanning-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(200px); opacity: 0; }
}

.scan-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
}

.scan-dots span {
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.scan-dots span:nth-child(2) {
  animation-delay: 0.3s;
}

.scan-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

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

.ai-floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.ai-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem;
  border-radius: 12px;
  color: #333;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

.ai-card i {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: #667eea;
}

.ai-card small {
  display: block;
  color: #666;
  font-weight: 400;
}

.ai-card-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.ai-card-2 {
  top: 60%;
  left: 5%;
  animation-delay: 1s;
}

.ai-card-3 {
  bottom: 20%;
  right: 5%;
  animation-delay: 2s;
}

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

/* AI Stats Section */
.ai-stats-section {
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.ai-stat-item {
  color: white;
}

.ai-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ai-feature-section {
    padding: 80px 0 40px;
  }

  .ai-feature-title {
    font-size: 2.2rem;
  }

  .ai-feature-subtitle {
    font-size: 1.1rem;
  }

  .ai-cta-buttons {
    justify-content: center;
  }

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

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

  .ai-floating-cards .ai-card {
    font-size: 0.7rem;
    padding: 0.5rem;
  }

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

@media (max-width: 480px) {
  .ai-stats-grid {
    grid-template-columns: 1fr;
  }

  .ai-feature-title {
    font-size: 1.8rem;
  }
}

/* Media Preview Styles */
.media-preview {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.media-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.media-preview:hover .media-preview-image {
  transform: scale(1.05);
}

/* Video Play Overlay */
.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-overlay i {
  color: white;
  font-size: 24px;
  margin-left: 3px;
}

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

.media-modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.media-modal-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.media-modal-video {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.media-modal-close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.media-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

/* Loading Animation */
.media-loading {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .media-preview {
    height: 150px;
  }

  .media-modal-content {
    width: 95%;
    padding: 10px;
  }

  .media-modal-video {
    height: 250px;
  }

  .video-play-overlay {
    width: 50px;
    height: 50px;
  }

  .video-play-overlay i {
    font-size: 20px;
  }
}

/* Ambassadors Section Styles */
.ambassadors-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.ambassadors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.ambassadors-section .container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Ambassador Content */
.ambassador-content {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.ambassador-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.ambassador-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Benefits List */
.ambassador-benefits {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.benefit-item i {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #ffd700;
  min-width: 30px;
}

.benefit-item span {
  font-size: 1rem;
  font-weight: 500;
}

/* Apply Button */
.ambassador-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  border: none;
  cursor: pointer;
}

.ambassador-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
  color: white;
  text-decoration: none;
}

.ambassador-apply-btn i {
  font-size: 1.2rem;
}

/* Ambassador Image */
.ambassador-image {
  text-align: center;
  padding: 20px;
}

.ambassador-image img {
  border-radius: 20px;
  max-height: 575px;
  object-fit: cover;
}

/* Requirements Section */
.ambassador-requirements {
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.requirements-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.requirement-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.requirement-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.requirement-card i {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 20px;
}

.requirement-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.requirement-card p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Ambassador Application Modal */
.ambassador-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.ambassador-modal-content {
  position: relative;
  background: white;
  margin: 2% auto;
  padding: 0;
  width: 90%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: hidden;
}

.ambassador-modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  position: relative;
}

.ambassador-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ambassador-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.ambassador-modal-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}

.ambassador-modal-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin: 10px 0 0 0;
}

.ambassador-form {
  padding: 30px;
  padding-bottom: 140px;
  max-height: 90vh;
  overflow-y: auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  transform: scale(1.2);
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  cursor: pointer;
}

.submit-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Character counter styles */
.char-counter {
  text-align: left;
  margin-top: 5px;
  font-size: 12px;
  color: #7f8c8d;
  direction: ltr;
}

.char-counter span {
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Textarea styles update */
.ambassador-form textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}

.ambassador-form textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Warning styles for character limit */
.char-counter span[style*="color: rgb(231, 76, 60)"],
.char-counter span[style*="color: #e74c3c"] {
  animation: pulse 1s infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  body {
    text-align: center;
  }
  .ambassadors-section {
    padding: 60px 0;
  }

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

  .ambassador-content {
    padding: 20px;
    margin-bottom: 30px;
  }

  .ambassador-title {
    font-size: 1.5rem;
  }

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

  .ambassador-modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .ambassador-modal-header {
    padding: 20px;
  }

  .ambassador-form {
    padding: 20px;
    padding-bottom: 140px;
    text-align: right;
  }

  .benefit-item span {
    font-size: 0.9rem;
    text-align: right;
  }
}


/* B2B Partners Section */
.b2b-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partner-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.partner-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.partner-icon i {
  font-size: 35px;
  color: white;
}

.partner-card h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.partner-card p {
  color: #7f8c8d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.partner-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-benefits li {
  color: #4CAF50;
  margin-bottom: 8px;
  position: relative;
  padding-right: 20px;
}

.partner-benefits li:before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #4CAF50;
  font-weight: bold;
}

.benefit-item {
  text-align: center;
  padding: 20px;
}

.benefit-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4CAF50;
  margin-bottom: 10px;
}

.benefit-text {
  color: #2c3e50;
  font-weight: 600;
}

.cta-button {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background: linear-gradient(135deg, #45a049, #4CAF50);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .b2b-section {
    padding: 60px 0;
  }

  .partner-card {
    margin-bottom: 30px;
  }

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




/* B2B Success Stories Section */
.b2b-success-section {
  padding: 80px 0;
  background: #fff;
}

.success-story-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.success-story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.story-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.partner-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 15px;
  border: 3px solid #4CAF50;
}

.partner-info h5 {
  margin: 0;
  color: #2c3e50;
  font-weight: 700;
}

.partner-info span {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.story-content p {
  color: #34495e;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.story-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(237 157 31);
}

.stat-label {
  font-size: 0.85rem;
  color: #7f8c8d;
}


.stat-number2 {
  color: rgb(255 184 73);
}

.stat-label2 {
  color: #ffffff;
}

/* Partnership Process */
.partnership-process {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0;
}

.process-step {
  text-align: center;
  max-width: 200px;
  flex: 1;
  min-width: 180px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 15px;
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.step-content h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 700;
}

.step-content p {
  color: #7f8c8d;
  line-height: 1.5;
}

.process-arrow {
  color: #4CAF50;
  font-size: 1.5rem;
  margin: 0 10px;
}

/* Partnership Form */
.partnership-form-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partnership-form-card h3 {
  color: #2c3e50;
  font-weight: 700;
}

.partnership-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.partnership-form .form-control:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.submit-btn {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #45a049, #4CAF50);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .partnership-process {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .story-stats {
    flex-direction: column;
    gap: 15px;
  }

  .partnership-form-card {
    padding: 25px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .success-story-card {
    margin-bottom: 20px;
  }

  .story-header {
    flex-direction: column;
    text-align: center;
  }

  .partner-avatar {
    margin: 0 0 10px 0;
  }
}



/* Simple B2B Banner Section */
.b2b-banner-section {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  padding: 60px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.b2b-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

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

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.banner-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.banner-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.feature-item i {
  color: #81C784;
  font-size: 1.1rem;
}

.banner-cta {
  position: relative;
  z-index: 2;
  width: fit-content;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #4CAF50;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 3px solid transparent;
}

.cta-banner-btn:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.cta-banner-btn i {
  font-size: 1.3rem;
}

.cta-note {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .b2b-banner-section {
    padding: 40px 0;
    text-align: center;
  }

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

  .banner-subtitle {
    font-size: 1.1rem;
  }

  .banner-features {
    margin-bottom: 30px;
  }

  .cta-banner-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .banner-cta {
    margin: auto;
  }
}

@media (max-width: 576px) {
  .banner-title {
    font-size: 1.8rem;
  }

  .banner-subtitle {
    font-size: 1rem;
  }

  .feature-item {
    font-size: 0.95rem;
  }

  .cta-banner-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}



.banner-features {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.target-audience {
  flex: 1;
}

.audience-title {
  color: #81C784;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  position: relative;
  padding-right: 20px;
  opacity: 0.95;
}

.audience-list li::before {
  content: '•';
  color: #81C784;
  font-weight: bold;
  position: absolute;
  right: 0;
  font-size: 1.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .banner-features {
    flex-direction: column;
    gap: 25px;
  }

  .audience-title {
    font-size: 1rem;
  }

  .audience-list li {
    font-size: 0.9rem;
    padding: 6px 0;
  }

  .features-column {
    align-items: center;
    margin: auto;
  }
}

.target-audience {
  margin-bottom: 20px;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.audience-list li {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.audience-list li:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .audience-list {
    justify-content: center;
  }

  .audience-list li {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

@media (max-width: 576px) {
  .audience-list li {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
}




/* Partnership Form Modal Styles */
.partnership-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.partnership-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.partnership-form-container {
  background: white;
  border-radius: 15px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(50px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.partnership-modal-overlay.show .partnership-form-container {
  transform: translateY(0);
}

.partnership-form-container .form-header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 20px;
}

.partnership-form-container .form-header h3 {
  color: #3e5e27;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.partnership-form-container .form-header p {
  color: #666;
  margin: 0;
  font-size: 14px;
}

.partnership-form {
  direction: rtl;
}

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

.partnership-form .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.partnership-form .form-group {
  margin-bottom: 20px;
}

.partnership-form .form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.partnership-form .form-group input,
.partnership-form .form-group select,
.partnership-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.partnership-form .form-group input:focus,
.partnership-form .form-group select:focus,
.partnership-form .form-group textarea:focus {
  outline: none;
  border-color: #2c5aa0;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.partnership-form .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.partnership-form .form-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.partnership-form .submit-btn {
  /* background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%); */
  background: linear-gradient(135deg, #4CAF50 0%, #3c5322 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.partnership-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

.partnership-form .submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.partnership-form .cancel-btn {
  background: transparent;
  color: #666;
  border: 2px solid #e0e0e0;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.partnership-form .cancel-btn:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .partnership-modal-overlay {
    padding: 10px;
  }

  .partnership-form-container {
    padding: 20px;
    max-height: 95vh;
  }

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

  .partnership-form .form-row .form-group {
    margin-bottom: 20px;
  }

  .partnership-form .form-actions {
    flex-direction: column;
  }

  .partnership-form .submit-btn,
  .partnership-form .cancel-btn {
    width: 100%;
    justify-content: center;
  }
}
