body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #000000;
  background-color: #89CFF0;
  /* Light blue background */
}

header {
  background-color: #89CFF0;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #0099FF;
  /* Bright blue border */
}
.logo img {
  height: 50px;
  /* Adjust height as needed */
  width: auto;
  /* Maintain aspect ratio */
}


header .logo h1 {
  margin: 0;
  color: #0099FF;
  /* Bright blue text */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #000000;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

nav ul li a:hover {
  background-color: #0099FF;
  color: #89CFF0;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #0099FF, #89CFF0);
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.cta-button {
  background-color: #ffffff;
  color: #4539c4;
  padding: 0.8rem 1.5rem;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
}

.content {
  padding: 2rem;
}

.content h2,
.content h3 {
  color: #0099FF;
}

/* Footer Styles */

footer {
  background-color: #89CFF0;
  /* Light blue */
  color: #000000;
  font-family: Arial, sans-serif;
  padding: 20px 0;
}

.footer-top {
  background-color: #0099FF;
  /* Bright blue */
  color: #000000;
  text-align: center;
  padding: 10px 0;
}

.contact-info p {
  margin: 5px 0;
  font-size: 14px;
}

.contact-info a {
  color: #000000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  max-width: 120px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  gap: 20px;
}

.links-section {
  margin-right: 20px;
}

.links-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000000;
  /* Text color */
}

.links-section ul {
  list-style: none;
  padding: 0;
}

.links-section ul li {
  margin-bottom: 5px;
}

.links-section ul li a {
  color: #000000;
  /* Link text color */
  text-decoration: none;
  font-size: 14px;
}

.links-section ul li a:hover {
  text-decoration: underline;
}

.social-media {
  margin-top: 10px;
}

.social-media a img {
  max-width: 24px;
  margin: 0 5px;
}

.footer-copyright {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: #000000;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  /* Adds spacing to both sides */
}

.links-section:first-child {
  margin-left: 20px;
  /* Adds spacing to the left of "Our Company" */
}

.links-section:last-child {
  margin-right: 20px;
  /* Adds spacing to the right of "Core Products" */
}

/* General body styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #89CFF0;
  /* Light blue */
  color: #000000;
  /* Black text */
}

/* Container styling */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Intro section styling */
.intro-section {
  background-color: #5c69e6;
  /* Muted blue */
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.intro-section h1 {
  font-size: 2.5rem;
  color: #000000;
  /* Black text */
  margin-bottom: 10px;
}

.intro-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #000000;
  /* Black text for contrast */
}

.intro-section ul {
  list-style-type: none;
  padding: 0;
}

.intro-section li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Cards section styling */
.cards-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background-color: #ffffff;
  /* White card background */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 60px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.5rem;
  color: #0099FF;
  /* Bright blue text */
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  color: #000000;
  /* Black text for readability */
  line-height: 1.6;
}

/* Responsive styling */
@media (max-width: 768px) {
  .intro-section h1 {
    font-size: 2rem;
  }

  .intro-section p,
  .intro-section li {
    font-size: 1rem;
  }
}

/* Service item styling */
.service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #000000;
}

.service-item img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  background-color: #ffffff;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-item .service-content {
  flex: 1;
  text-align: left;
}

.service-item .service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.service-item .service-content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Reverse layout for alternating services */
.service-item.reverse {
  flex-direction: row-reverse;
}

/* Background colors for each section */
.service-cloud {
  background-color: #5c69e6;
  /* Muted blue */
}

.service-SMS {
  background-color: #0099FF;
  /* Bright blue */
}

.service-WA {
  background-color: #5c69e6;
  /* Muted blue */
}

.service-click2call {
  background-color: #0099FF;
  /* Bright blue */
}

.service-ivr {
  background-color: #5c69e6;
}

.service-obd {
  background-color: #0099FF;
}

/* Responsive design */
@media (max-width: 768px) {
  .service-item {
    display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
  }

  .service-item.reverse {
    flex-direction: column;
  }

  .service-item img {
    margin-bottom: 20px;
  }

  .service-item .service-content {
    text-align: center;
  }
}
