/* Provider Loop Website Styles */

/* Global Styles */
:root {
  /* Primary colors based on extracted images */
  --primary-blue: #0066cc;
  --light-blue: #4d94ff;
  --medium-blue: #0052a3;
  --green: #4caf50;
  --purple: #9c27b0;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  --text-color: #333333;
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--medium-blue);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--medium-blue);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--light-gray);
  color: var(--primary-blue);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

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

.logo img {
  height: 50px;
}

nav ul {
  display: flex;
  list-style: none;
}

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

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-gray);
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background-color: var(--light-gray);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background-color: var(--white);
}

.stats-heading {
  text-align: center;
  margin-bottom: 50px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

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

.stat-text {
  font-size: 1.1rem;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.features-heading {
  text-align: center;
  margin-bottom: 50px;
}

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

.feature-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  border-radius: 50%;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-blue);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonials-heading {
  text-align: center;
  margin-bottom: 50px;
}

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

.testimonial-item {
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--light-gray);
  border-left: 5px solid var(--primary-blue);
  border-radius: 0 8px 8px 0;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: 700;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-color: var(--light-gray);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
}

/* About Page Styles */
.about-hero {
  padding: 150px 0 80px;
  background-color: var(--light-gray);
  text-align: center;
}

.company-history {
  padding: 80px 0;
  background-color: var(--white);
}

.mission-vision {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.mission-vision-container {
  display: flex;
  gap: 30px;
}

.mission, .vision {
  flex: 1;
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.team {
  padding: 80px 0;
  background-color: var(--white);
}

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

.team-member {
  display: flex;
  flex-direction: column;
  background-color: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
}

.team-photo {
  width: 100%; /* Ensure the container takes full width */
  height: 250px; /* Fixed height for all team photos */
  background-color: var(--medium-gray);
  overflow: hidden; /* Hide parts of image that don't fit */
}

.team-member-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Scale image to cover, cropping if necessary */
    object-position: center; /* Center the image within the container */
}

.team-info {
  padding: 20px;
  display: flex; /* Added for bio alignment */
  flex-direction: column; /* Added for bio alignment */
  flex-grow: 1; /* Allow info to take remaining space */
}

.team-info h3 {
  margin-bottom: 5px;
}

.team-info h4 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 500;
}

/* Solution Page Styles */
.solution-hero {
  padding: 150px 0 80px;
  background-color: var(--light-gray);
  text-align: center;
}

.solution-overview {
  padding: 80px 0;
  background-color: var(--white);
}

.platform {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.platform-diagram {
  max-width: 100%;
  height: auto;
  margin: 40px 0;
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
}

.comparison {
  padding: 80px 0;
  background-color: var(--white);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.comparison-table th, .comparison-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid var(--medium-gray);
}

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

.comparison-table tr:nth-child(even) {
  background-color: var(--light-gray);
}

.workflow {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.workflow-steps {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  position: relative;
}

.workflow-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background-color: var(--medium-gray);
  z-index: 1;
}

.workflow-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

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

/* Services Page Styles */
.services-hero {
  padding: 150px 0 80px;
  background-color: var(--light-gray);
  text-align: center;
}

.service-tiers {
  padding: 80px 0;
  background-color: var(--white);
}

.tiers-container {
  display: flex;
  gap: 30px;
  margin: 40px 0;
}

.tier {
  flex: 1;
  padding: 40px;
  background-color: var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tier-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--medium-gray);
  margin-bottom: 20px;
}

.tier-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 20px 0 5px;
  text-align: center;
}

.tier-period {
  text-align: center;
  margin-bottom: 30px;
  color: var(--dark-gray);
}

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

.tier-feature {
  padding: 10px 0;
  border-bottom: 1px solid var(--medium-gray);
}

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

.business-models {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.model {
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

.model-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-gray);
  border-radius: 50%;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-icon i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.implementation {
  padding: 80px 0;
  background-color: var(--white);
}

.timeline {
  display: flex;
  margin: 40px 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background-color: var(--medium-gray);
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

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

.faq {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--medium-gray);
}

.faq-question {
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
}

.faq-answer {
  padding-left: 20px;
}

/* Results Page Styles */
.results-hero {
  padding: 150px 0 80px;
  background-color: var(--light-gray);
  text-align: center;
}

.case-studies {
  padding: 80px 0;
  background-color: var(--white);
}

.case-study {
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.case-study-header {
  margin-bottom: 20px;
}

.case-study-results {
  display: flex;
  gap: 30px;
  margin: 20px 0;
}

.case-result {
  flex: 1;
  text-align: center;
}

.result-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

/* Education Page Styles */
.education-hero {
  padding: 150px 0 80px;
  background-color: var(--light-gray);
  text-align: center;
}

.resources {
  padding: 80px 0;
  background-color: var(--white);
}

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

.resource-item {
  background-color: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.resource-image {
  height: 200px;
  background-color: var(--medium-gray);
}

.resource-info {
  padding: 20px;
}

.resource-info h3 {
  margin-bottom: 10px;
}

.resource-download {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-blue);
  font-weight: 500;
}

.resource-download i {
  margin-right: 5px;
}

.animations {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.animation-container {
  max-width: 800px;
  margin: 40px auto;
  background-color: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Contact Page Styles */
.contact-hero {
  padding: 150px 0 80px;
  background-color: var(--light-gray);
  text-align: center;
}

.contact-form-section {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-method {
  margin-bottom: 30px;
}

.contact-method h3 {
  margin-bottom: 10px;
}

.contact-method p {
  margin-bottom: 5px;
}

.contact-form {
  flex: 2;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

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

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

.footer-section h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

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

.footer-links a {
  color: var(--medium-gray);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .mission-vision-container {
    flex-direction: column;
  }
  
  .tiers-container {
    flex-direction: column;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .workflow-steps, .timeline {
    flex-direction: column;
    gap: 30px;
  }
  
  .workflow-steps::before, .timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }
  
  nav ul {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
  }
  
  nav ul li {
    margin-left: 0;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .stat-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    width: 100%;
  }
}

