:root {
  --primary-color: #032bca;
  --secondary-color: #2f3640;
  --text-color: #f5f6fa;
  --background-color: #f5f6fa;
  --card-background: #2c3440;
  --container-width: 1100px;
}

/* General Styling */
body {
  font-family: "Arial", sans-serif; /* Choose a professional and readable font */
  margin: 0;
  background-color: #f4f7f6; /* A light, soft background color */
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px; /* Limits content width for better readability */
  margin: 0 auto;
}
.main-header {
  background-color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Header and Navigation */
header {
  color: var(--text-color);
  background-color: #ffffff; /* White header for a clean look */
  /* Subtle shadow for depth */
  padding: 15px 0;
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}

nav {
  margin-right: 15px;
  align-items: center;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #2c3e50; /* Darker color for the brand name */
}

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

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

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
}

nav ul li a:hover {
  color: #3498db; /* Highlight on hover */
}

/* Hero Section */
.hero {
  /* background-image: url("../images/zatu_admin_background.png"); */
  background-color: var(--primary-color);
  background-size: 45%;
  background-position-x: left;
  background-repeat: no-repeat;
  /* A vibrant blue for the hero section */
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;

  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  /* Overlay to ensure text readability over the image */
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color); /* Semi-transparent dark overlay */
  z-index: 0;
}

.hero h1,
.hero p,
.hero .cta-button {
  position: relative;
  z-index: 1; /* Ensures text and button are above the overlay */
}

.hero h1 {
  font-size: 3.5em;
}

.hero p {
  margin-bottom: 40px;
}

.cta-button {



  border: 1px solid white;
  border-radius: 20px;
  padding: 7px;
  text-decoration: none;
  background-color: transparent; /* A contrasting green for the CTA */
  color: #ffffff;
  font-weight: bold;
}

.cta-button:hover {
    cursor: pointer;

 /* animation-duration: 500ms;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-name: pulse;
  animation-duration: 1500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; */
  
  background-color: var(--secondary-color);
}

/* Section Styling */
section {
  padding: 60px 20px;
  text-align: center;
}

section:nth-child(even) {
  /* Alternating background colors for sections */
  background-color: #ecf0f1; /* Light gray for even sections */
}

h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #2c3e50;
}

/* Feature and Solution Grids */
.feature-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(280px, 1fr)
  ); /* Responsive grid columns */
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item,
.solution-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover,
.solution-item:hover {
  transform: translateY(-5px); /* Lift on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.feature-item h3,
.solution-item h3 {
  font-size: 1.5em;
  margin-top: 0;
  color: var(--primary-color);
}

/* Pricing Table */
.pricing-table {
  display: flex;
  gap: 30px;
  flex-wrap: wrap; /* Allows pricing cards to wrap on smaller screens */
}

.plan-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.plan-card h3 {
  font-size: 2em;
  color: #2c3e50;
  margin-top: 0;
}

.plan-card .price {
  font-size: 2.5em;
  font-weight: bold;
  color: #3498db;
  margin: 20px 0;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.plan-card ul li {
  margin-bottom: 10px;
  color: #666;
}

.plan-card .cta-button {
  background-color: #3498db;
}

.plan-card .cta-button:hover {
  background-color: #2980b9;
}

/* Testimonials Carousel (Basic Structure - requires JavaScript for full functionality) */
.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden; /* Hide overflowing testimonials */
}

.testimonial-item {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0 10px; /* Add some spacing between testimonials if multiple are visible */
  text-align: center;
}

.testimonial-item p {
  font-style: italic;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-item .client-name {
  font-weight: bold;
  color: #2c3e50;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.footer-content ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.footer-content ul li a {
  text-decoration: none;
  color: #ffffff;
}

.footer-content ul li a:hover {
  color: #3498db;
}

/* Responsive Adjustments (Media Queries) */
@media (max-width: 768px) {
  nav {
    flex-direction: column; /* Stack navigation items vertically on small screens */
  }

  nav ul {
    margin-top: 15px;
  }

  nav ul li {
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 2.5em;
  }

  .hero p {
  }

  .feature-grid,
  .solution-grid,
  .pricing-table {
    grid-template-columns: 1fr; /* Stack elements vertically on smaller screens */
  }

  .plan-card {
    width: 100%; /* Make pricing cards full width */
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  from {
    transform: scale(0.2);
  }

  to {
    transaform: scale(1);
  }
}
