/* Font families are now loaded in the HTML head */

html,
body {
  height: 100%;
  font-family: 'League Spartan', sans-serif;
}

body {
  background-color: #f7f9fb;
  font-size: 14px;
  display: flex;
  flex-direction: column;
}

.navbar {
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin-left: 1rem;
}

.navbar-nav .nav-link {
  font-size: 1.15rem;
  margin-right: 1rem;
  margin-top: .25rem;
}

.navbar-nav .btn-signin {
  background-color: transparent;
  color: #007bff;
  padding: 4px 25px;
  border: 1px solid #007bff;
  border-radius: 0px;
  transition: background-color 0.3s, color 0.3s;
  margin-right: 2rem;
  margin-top: .50rem;
  padding-top: 0.3rem;
}

.navbar-nav .btn-signin:hover {
  background-color: #007bff;
  color: #ffffff;
}

.landing-section {
  padding: 5rem 0 2rem;
  background-color: #f8f9fb;
}

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

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #111827;
  letter-spacing: -0.03em;
}

.text-primary-heading {
  color: #1e88e5;
  font-weight: 700;
}

.hero-description p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* Prevent line breaks for turnitin text */
.turnitin-wrapper {
  white-space: nowrap;
  display: inline-block;
}

.hero-stats {
  margin: 2rem 0;
}

.stat-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

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

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #456de7;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta {
  margin-top: 2rem;
}

.cta-button {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #1e88e5;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.cta-button:hover {
  background-color: #1976d2;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
  text-decoration: none;
}

.main-graphic {
  max-width: 100%;
  height: auto;
}

.dashboard-graphic {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.fa-3x {
  color: #007bff;
  font-size: 3.5rem;
}

p {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 300;
}

.mt-5 {
  margin-top: 6rem !important;
}

.features-section {
  padding: 3rem 0;
  background-color: #f7f9fb;
}

.features-section {
  padding-left: 60px; /* Align with the feature titles */
  padding-right: 60px; /* Ensure same padding on both sides */
}

.features-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #333333;
  margin-bottom: 2rem;
  padding-left: 0; /* Remove extra padding */
}

.feature-box {
  display: flex;
  align-items: flex-start; /* Align items to the start */
  margin-bottom: 2rem;
  padding-left: 0px; /* Adjusted for better alignment */
}

.feature-box .icon-container {
  width: 60px; /* Fixed width for better alignment */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px; /* Move icons slightly to the left */
  flex-shrink: 0; /* Prevent shrinking */
  margin-top: auto;
  margin-bottom: auto;
}

.feature-box i {
  font-size: 2rem;
  color: #000; /* Make the icons black */
}

.feature-box div {
  flex-grow: 1; /* Ensure the text container grows to fill space */
}

.feature-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
  margin-top: 0;
  margin-bottom: 0.5rem; /* Consistent spacing */
}

.feature-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #666666;
  margin-top: 0; /* Remove top margin for consistency */
}

.turnitin-logo {
  height: 1em; /* This ensures the logo is the same height as the text it is inline with */
  vertical-align: middle; /* This aligns it with the middle of the text */
}

.turnitin-text {
  color: #1e88e5; /* Blue color for the 'turnitin' text - matches the heading */
  text-transform: lowercase; /* Ensures text is all lowercase */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.trademark {
  color: inherit; /* Inherits the color from the parent text */
  font-family: 'Poppins', sans-serif;
  vertical-align: super;
  font-size: 0.7em;
  margin-left: 1px;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.1rem;
  }
  
  .hero-description p {
    font-size: 1rem;
    max-width: 90%;
  }
  
  .stat-grid {
    gap: 2rem;
  }
  
  .stat-value {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .landing-section {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2.7rem;
  }
  
  .hero-description p {
    font-size: 0.95rem;
    max-width: 95%;
  }
  
  .stat-grid {
    gap: 1.5rem;
  }
  
  .stat-value {
    font-size: 1.6rem;
  }
  
  .cta-button {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.1rem;
  }
  
  .stat-grid {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  
  .stat-value {
    font-size: 1.4rem;
    margin: 0;
  }
  
  .stat-label {
    font-size: 0.8rem;
    margin: 0;
  }
}

.how-it-works {
  padding-top: 2rem;
  --bs-primary: #4f46e5;
  --bs-secondary: #6b7280;
  --bs-light: #fff;
  --bs-dark: #111827;
  --bs-primary-light: #e0e7ff;
  --bs-secondary-light: #9ca3af;
  --bs-light-dark: #cbd5e1;
}

.how-it-works h2 {
  font-weight: 700;
  font-size: 2.5rem !important;
  color: #333333;
  margin-bottom: 1rem !important;
}

.how-it-works h3 {
  font-weight: 600 !important;
  font-size: 2.5rem;
  color: #333333;
  margin-bottom: 1rem !important;
}


@media (min-width: 1200px) {
  .how-it-works h2 {
    font-size: 3rem;
  }
  .how-it-works h3 {
    font-size: 2.5rem;
  }
}

.how-it-works .rounded-pill {
  border-radius: 9999px;
}

.how-it-works .fs-5 {
  font-size: 1.25rem;
}

.how-it-works .fw-bold {
  font-weight: 700;
}

.how-it-works .bg-white {
  background-color: #fff;
}

.how-it-works .border {
  border: 1px solid #e5e7eb;
}

.how-it-works .border-primary-light {
  border-color: #4f46e5; /* Ensure this matches the primary color */
}

.how-it-works .position-relative {
  position: relative;
}

.how-it-works .text-center {
  text-align: center;
}

.how-it-works .align-items-center {
  align-items: center;
}

.how-it-works .justify-content-center {
  justify-content: center;
}

.how-it-works .overflow-hidden {
  overflow: hidden;
}

.how-it-works .container {
  width: 100%;
  padding-right: calc(1.5rem * 0.5);
  padding-left: calc(1.5rem * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .how-it-works .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .how-it-works .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .how-it-works .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .how-it-works .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .how-it-works .container {
    max-width: 1320px;
  }
}

.how-it-works .mb-3 {
  margin-bottom: 1rem;
}

.how-it-works .mb-8 {
  margin-bottom: 2rem;
}

.how-it-works .mb-12 {
  margin-bottom: 3rem;
}

.how-it-works .mt-6 {
  margin-top: 1.5rem !important;
}

.how-it-works .px-0 {
  padding-right: 0;
  padding-left: 0;
}

.how-it-works .px-10 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
  margin-top: 0; /* Reduce the space above the paragraph */
  font-size: 17px; /* Make the paragraph text smaller */
}

.how-it-works .py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.how-it-works .py-sm-24 {
  padding-top: 6rem !important;
  padding-bottom: 3rem !important;
}

.how-it-works .pb-md-32 {
  padding-bottom: 2rem !important;
}

.how-it-works .mb-24 {
  margin-bottom: 3rem !important;
}

.how-it-works .bg-light-dark {
  background-color: #e2e8f0;
}

.how-it-works .bg-opacity-50 {
  opacity: 0.5;
}

.how-it-works .fs-6 {
  font-size: calc(1.2563rem + 0.0756vw) !important;
  margin-top: -1rem !important; /* Reduce the space above the heading */
  margin-bottom: 0.25rem !important; /* Optional: Reduce the space below the heading */
}

.how-it-works .fs-9 {
  font-size: 0.875rem !important;
}

.how-it-works .fw-semibold {
  font-weight: 600 !important;
}

.how-it-works .text-primary {
  color: #4f46e5 !important;
}

.how-it-works .text-uppercase {
  text-transform: uppercase !important;
}

.how-it-works .text-secondary {
  color: #6b7280 !important;
}

/* Spacing adjustments for How It Works section */
.how-it-works .py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.how-it-works .mb-16 {
  margin-bottom: 2rem !important;
}
