* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

header {
  background: #333;
  color: #fff;
  padding: 10px 0;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
  padding: 20px 40px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.site-title {
  font-size: 1.8rem;
  margin: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background-color: #045b80;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 15px 20px;
  }
  .navbar {
    flex-direction: column;
    gap: 16px;
  }
  .site-title {
    font-size: 1.2rem;
  }

  .nav-links {
    align-items: center;
    justify-content: center;
  }
}

.hero-slider {
  padding: 60px 0;
  text-align: center;
  background-color: #045b80;
  color: white;
  margin-bottom: 40px;
}

.hero-slider h1 {
  font-size: 3rem;
}

.plugin1 {
  margin: 50px;
}

.available-plugin-section .heading {
  text-align: center;
  margin-bottom: 40px;
}

.available-plugin-section .heading h2 {
  font-size: 2rem;
  color: #045b80;
  font-weight: 700;
  border-bottom: 2px solid #045b80;
  display: inline-block;
  padding-bottom: 8px;
}

.product-list {
  padding: 20px;
  width: 80%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0px auto;
}

.product {
  width: 47%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 10px;
  padding: 20px 20px 40px 20px;
  text-align: center;
  transition: transform 0.2s;
}

.product:hover {
  transform: scale(1.05);
}

.product a {
  background: #045b80;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
}

.product img {
  width: 100%;
  border-radius: 5px;
  height: 16rem;
  object-fit: cover;
}

.product a:hover {
  background: #048bc4;
}

.image-section {
  width: 80%;
  display: flex;
  flex-direction: row;
  margin: 0px auto;
  margin-top: 20px;
}

.image-section img {
  width: 48%;
  margin: 0px 10px;
  border-radius: 5px;
}

.bottom-section {
  width: 80%;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  padding: 0px 10px;
  justify-content: space-between;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.details-section {
  width: 60%;
  padding: 20px;
}

.details-section p {
  color: #666;
  font-size: 0.95rem;
  font-family: Arial, Helvetica, sans-serif;
}

.payment-section p {
  font-weight: bold;
  color: #2d2d2d;
}

.payment-section {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  padding: 40px;
}
.make-payment-btn a {
  background: #045b80;
  color: white;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.make-payment-btn a:hover {
  background: #048bc4;
}

.About-us {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: transparent;
  border-radius: 16px;
}
.About-us .about-img {
  flex: 1 1 438px;
  display: flex;
  justify-content: center;
  align-items: end;
}

.About-us .about-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.About-us div:nth-child(2) {
  flex: 1 1 500px;
}

.About-us h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #1f2937;
  font-weight: 700;
}

.About-us p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .product-list {
    width: 90%;
  }
  .product {
    width: 100%;
  }
  .About-us {
    flex-direction: column;
    text-align: center;
    padding: 40px 16px;
  }

  .About-us h1 {
    font-size: 1.8rem;
  }

  .About-us p {
    font-size: 1rem;
  }
  .image-section {
    flex-direction: column;
  }
  .image-section img {
    width: 100%;
    margin: 10px 0;
  }
  .bottom-section {
    flex-direction: column;
  }
  .bottom-section .details-section {
    width: 100%;
    padding: 10px;
  }
  .bottom-section .payment-section {
    width: 100%;
    padding: 10px;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
  }
}

@media (max-width: 500px) {
  .product-list {
    width: 100%;
  }
  .product {
    width: 100%;
    padding: 5px;
  }
  .product img {
    height: 10rem;
  }
  .available-plugin-section .heading h2 {
    font-size: 1.5rem;
  }
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  position: relative;
  bottom: 0;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-columns .column {
  flex: 1;
  padding: 10px;
  min-width: 200px;
  text-align: left;
}

.footer-columns h2 {
  margin-bottom: 10px;
  color: #048bc4;
}

.footer-columns h3 {
  margin-bottom: 10px;
  color: #048bc4;
}

.footer-columns ul {
  list-style-type: none;
  padding: 0;
}

.footer-columns ul li {
  margin: 5px 0;
}

.footer-columns a {
  color: #fff;
  text-decoration: none;
}

.footer-columns a:hover {
  text-decoration: underline;
}
