/* Reset default margin and padding */
/* CSS Variables */
:root {
  --primary-color: #008000;
  --secondary-color: #006400;
}

/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f4f8;
  color: #333;
  line-height: 1.6;
}

/* Header Styles */
header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

.clock {
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Navigation Styles */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0 15px;
}

nav a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* Container Styles */
.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

/* Intro and Services Sections */
.intro, .services, .cta-section {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.intro h2, .cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.intro p {
  font-size: 1.1rem;
}

.services {
  background: linear-gradient(270deg, #ffffff, #e6f7ff, #ffffff);
  background-size: 400% 400%;
  animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.services h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333;
}

.services ul {
  list-style-type: none;
  padding-left: 20px;
}

.services ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.services ul li::before {
  content: "✓";
  color: var(--primary-color);
  margin-right: 8px;
}

/* CTA Button Styles */
.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
  text-align: center;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Footer Styles */
footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer p {
  margin: 5px 0;
}

.footer-link {
  color: white;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Social Media Links */
.social-media {
  margin-top: 10px;
}

.social-media a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.social-media a:hover {
  text-decoration: underline;
}

/* Back-to-Top Button */
#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.3s;
}

#back-to-top:hover {
  background-color: var(--secondary-color);
}


  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .clock {
    font-size: 0.6rem;
  }

  .container {
    padding: 0 10px;
  }

  .intro p, .services ul li, .cta-section p {
    font-size: 1rem;
  }

  .intro h2, .services h2, .cta-section h2 {
    font-size: 1.8rem;
  }

  .services h3 {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 8px 15px;
    font-size: 1rem;
  }

  nav a {
    font-size: 1rem;
    padding: 0 10px;
  }
}

.social-media a, .footer-link, .cta-button, nav a {
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

/* Active nav link */
nav a.active {
  text-decoration: underline;
  font-weight: bold;
  opacity: 1;
}

/* Nav separator - use CSS instead of | character */
nav a + a::before {
  content: "|";
  margin-right: 15px;
  font-weight: normal;
  opacity: 0.6;
}

/* Responsive tables */
.pricing-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  min-width: 500px;
  table-layout: auto;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #ddd !important;
  padding: 10px 14px !important;
  text-align: left;
}

.pricing-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.pricing-table tbody tr:hover {
  background-color: #f1f8f1;
}

.pricing-table thead {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.pricing-table thead th {
  border-color: rgba(255,255,255,0.3) !important;
}
/* Trusted By Section */
.trusted-by {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.trusted-by h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--primary-color);
  text-align: center;
}

.trusted-by-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trusted-by-card {
  border: 1px solid #e0e0e0;
  border-top: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 20px;
  background: #fafafa;
}

.trusted-by-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.trusted-by-sector {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.trusted-by-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Industries Section */
.industries {
  background: linear-gradient(270deg, #ffffff, #e6f7ff, #ffffff);
  background-size: 400% 400%;
  animation: gradientAnimation 10s ease infinite;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.industries h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--primary-color);
  text-align: center;
}

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

.industry-card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.industry-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.industry-card h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.industry-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .trusted-by-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .trusted-by h2,
  .industries h2 {
    font-size: 1.6rem;
  }
}


.free-resource {
  background: linear-gradient(135deg, #006400 0%, #008000 60%, #228B22 100%);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 4px 12px rgba(0, 100, 0, 0.25);
  color: white;
}

.free-resource-icon {
  font-size: 3rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.free-resource-content h2 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 10px;
}

.free-resource-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  line-height: 1.6;
}

.free-resource-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.free-resource-content ul li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
  padding-left: 4px;
}

.free-resource-content ul li::before {
  content: "✓";
  color: #90EE90;
  margin-right: 8px;
  font-weight: bold;
}

.free-resource .cta-button {
  background-color: white;
  color: #006400;
  font-weight: bold;
  border: 2px solid white;
  padding: 12px 24px;
  font-size: 1rem;
  display: inline-block;
}

.free-resource .cta-button:hover {
  background-color: #90EE90;
  color: #004d00;
  border-color: #90EE90;
  opacity: 1;
}

@media (max-width: 768px) {
  .free-resource {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
  .free-resource-icon {
    font-size: 2rem;
  }
  .free-resource-content h2 {
    font-size: 1.3rem;
  }
}
