/* Custom Styles for Female LAM Website */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Header Styles */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #007bff !important;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.toggle-wrap {
  width: 25px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.toggle-bar {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.toggle-bar::before,
.toggle-bar::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.toggle-bar::before {
  top: -8px;
}

.toggle-bar::after {
  bottom: -8px;
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* .hero-image svg {
  max-width: 100%;
  height: auto;
} */

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 400px; 
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* @media (max-width: 576px) {
  .service-mockup img {
    margin-left: auto;
    margin-right: 0;
    display: block;
  }
} */

/* Statistics Section */
.stats-section {
  background: #fff;
  padding: 80px 0;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* Why Choose Section */
.why-choose-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 3rem;
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.5rem;
}

.feature-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Training Section */
.training-section {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  padding: 80px 0;
  color: #fff;
}

.training-stats {
  margin-top: 30px;
}

.stat-item h4 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.training-image svg {
  max-width: 100%;
  height: auto;
}

/* Services Section */
.services-section {
  background: #fff;
  padding: 80px 0;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #007bff;
  box-shadow: 0 20px 40px rgba(0,123,255,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #fff;
  font-size: 2rem;
}

.service-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-card .btn {
  width: 100%;
}

/* Requirements Section */
.requirements-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.requirements-list {
  list-style: none;
  padding: 0;
}

.requirements-list li {
  padding: 15px 0;
  font-size: 1.1rem;
  color: #333;
  border-bottom: 1px solid #e9ecef;
}

.requirements-list li i {
  color: #28a745;
  margin-right: 15px;
  font-size: 1.2rem;
}

.cta-card {
  background: #007bff;
  color: #fff;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
}

.cta-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-card p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* How It Works Section */
.how-it-works-section {
  background: #fff;
  padding: 80px 0;
}

.step-card {
  position: relative;
  padding: 40px 20px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 20px;
  color: #007bff;
  font-size: 2rem;
  border: 3px solid #007bff;
}

.step-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.step-card p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.testimonial-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stars {
  margin-bottom: 20px;
}

.stars i {
  color: #ffc107;
  margin: 0 2px;
}

.testimonial-card p {
  font-style: italic;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.customer-info h6 {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.customer-info small {
  color: #999;
}

/* Mobile App Section */
.mobile-app-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 0;
}

.mobile-app-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-app-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.mobile-app-section h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.app-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.app-btn {
  background: #fff;
  color: #007bff;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  color: #007bff;
}

.mobile-mockup svg {
  max-width: 100%;
  height: auto;
}

/* Footer Styles */
.footer-section {
  background: #1a1a1a !important;
  color: #fff;
}

.footer-logo {
  height: 40px;
}

.footer-widget h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 15px;
  color: #ccc;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: #007bff;
  margin-right: 10px;
  width: 20px;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #333;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #007bff;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .app-buttons {
    flex-direction: column;
  }
  
  .app-btn {
    justify-content: center;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .stats-section,
  .why-choose-section,
  .services-section,
  .how-it-works-section,
  .testimonials-section,
  .mobile-app-section {
    padding: 60px 0;
  }
  
  .training-section,
  .requirements-section {
    padding: 60px 0;
  }
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,123,255,0.3);
}

/* Get Started Button in Header */
.get-started-btn {
  color: #fff !important;
}

.get-started-btn:hover {
  color: #000 !important;
  background: #fff !important;
  border: 2px solid #007bff !important;
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-primary {
  color: #007bff !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.shadow {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.rounded-lg {
  border-radius: 15px !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0056b3;
}

/* Page-specific Styles */

/* About Page Styles */
.about-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.mission-section,
.training-process-section {
  background: #fff;
}

.challenge-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.challenge-icon {
  width: 60px;
  height: 60px;
  background: #dc3545;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.3rem;
}

.criteria-list {
  list-style: none;
  padding: 0;
}

.criteria-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.training-modules .module-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.quote-icon {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-author h6 {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

/* Features Page Styles */
.features-hero-section,
.how-it-works-hero-section,
.faq-hero-section,
.contact-hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
}

.features-hero-section .page-title,
.how-it-works-hero-section .page-title,
.faq-hero-section .page-title,
.contact-hero-section .page-title {
  color: #fff;
}

.core-features-section {
  background: #fff;
}

.service-mockup svg,
.provider-mockup svg,
.design-showcase svg {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.service-list,
.provider-benefits,
.design-list {
  list-style: none;
  padding: 0;
}

.service-list li,
.provider-benefits li,
.design-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.feature-highlight {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 15px;
  font-size: 1.2rem;
}

.highlight-content h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.highlight-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* How It Works Page Styles */
.process-step,
.provider-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.process-icon,
.provider-step-number {
  width: 50px;
  height: 50px;
  background: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 15px;
  flex-shrink: 0;
  font-weight: 700;
}

.process-content,
.provider-step-content {
  flex: 1;
}

.process-content h5,
.provider-step-content h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.process-content p,
.provider-step-content p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.benefit-list li i {
  margin-right: 10px;
  width: 20px;
}

.app-feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.app-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.app-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.4rem;
}

.cta-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
}

/* FAQ Page Styles */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-button {
  background: #fff;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 20px 25px;
  color: #333;
}

.accordion-button:not(.collapsed) {
  background: #007bff;
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 25px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.contact-cta-section {
  background: #f8f9fa;
}

/* Contact Page Styles */
.contact-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.5rem;
}

.contact-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.contact-form-wrapper {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.support-channel {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.support-channel:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.support-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.4rem;
}

.partnership-item {
  display: flex;
  align-items: flex-start;
}

.partnership-item h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.partnership-item p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.partnership-cta {
  background: #007bff;
  color: #fff;
  padding: 40px 30px;
  border-radius: 15px;
}

.partnership-cta h4 {
  color: #fff;
  margin-bottom: 15px;
}

.partnership-cta p {
  opacity: 0.9;
  margin-bottom: 25px;
}

.contact-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Form Styles */
.form-control,
.form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

/* Active Navigation State */
.nav-link.active {
  color: #007bff !important;
  font-weight: 600;
}
