.hardware-section {
  padding: 60px 10%;
  background-color: #f4f6fa;
}

.hardware-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hardware-wrapper.reverse {
  flex-direction: row-reverse;
}

.hardware-image {
  flex: 1 1 45%;
}

.hardware-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hardware-text {
  flex: 1 1 45%;
  text-align: left;
}

.hardware-text.right-align {
  text-align: right;
}

.hardware-text h2 {
  font-size: 2em;
  color: #002e5b; /* Blue heading */
  margin-bottom: 15px;
}

.hardware-text p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #002e5b;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #00509e;
}
.hardware-purchase-section {
  padding: 60px 10%;
  background-color: #f4f6fa;
}

.hardware-purchase-wrapper {
  display: flex;
  flex-direction: row-reverse; /* Image on left, text on right */
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hardware-purchase-image {
  flex: 1 1 45%;
}

.hardware-purchase-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hardware-purchase-text {
  flex: 1 1 45%;
  text-align: right; /* Align paragraph and heading to right */
}

.hardware-purchase-text h2 {
  font-size: 2em;
  color: #002e5b; /* Matching your site's blue heading color */
  margin-bottom: 15px;
}

.hardware-purchase-text p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #002e5b;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #00509e;
}
.hardware-grid-section {
  padding: 60px 10%;
  background-color: #f4f6fa;
  text-align: center;
}

.grid-heading {
  font-size: 2em;
  color: #002e5b;
  margin-bottom: 40px;
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
}

.grid-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
}

.grid-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.grid-item h3 {
  font-size: 1.1em;
  color: #002e5b;
}
.hardware-purchase-fixed {
  padding: 60px 10%;
  background-color: #f4f6fa;
}

.purchase-container {
  display: flex;
  flex-direction: row; /* Ensure image is on the left */
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.purchase-image-box {
  flex: 1 1 45%;
}

.purchase-image-box img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.purchase-text-box {
  flex: 1 1 45%;
  text-align: right;
}

.purchase-text-box h2 {
  font-size: 2em;
  color: #002e5b;
  margin-bottom: 15px;
}

.purchase-text-box p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
.networking-section {
  padding: 60px 10%;
  background-color: #f4f6fa;
}

.networking-content {
  margin-bottom: 50px;
}

.networking-content h2 {
  font-size: 2em;
  color: #002e5b;
  margin-bottom: 15px;
}

.networking-content p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.networking-content .btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #002e5b;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.networking-content .btn:hover {
  background-color: #00509e;
}
.software-section {
  padding: 60px 10%;
  background-color: #f4f6fa;
}

.software-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.software-wrapper.reverse {
  flex-direction: row-reverse;
}

.software-text {
  flex: 1 1 45%;
  text-align: left;
}

.software-wrapper.reverse .software-text {
  text-align: left; /* keep text left aligned for both layouts */
}

.software-text h2 {
  font-size: 2em;
  color: #002e5b;
  margin-bottom: 15px;
}

.software-text p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #002e5b;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #00509e;
}

.software-image {
  flex: 1 1 45%;
}

.software-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* ===== Antivirus Page Styling ===== */

.antivirus-intro {
  padding: 60px 10%;
  background-color: #f4f6fa;
}

.antivirus-intro h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #002e5b;
}

.antivirus-intro p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
}

/* Brand Sections */
.av-brands {
  padding: 60px 10%;
  background-color: #ffffff;
}

.av-brands article {
  margin-bottom: 50px;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
}

.av-brands h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #002e5b;
}

.av-brands p {
  font-size: 1.05em;
  line-height: 1.8;
  color: #444;
}

/* === Image floated LEFT, text left‑aligned === */
.img-left {
  float: left;          /* put image on the left side */
  margin: 0 30px 10px 0;/* space on the right so text doesn’t touch */
  width: 40%;
  max-width: 280px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Mobile fallback: stack image on top, centered */
@media (max-width: 768px) {
  .img-left {
    float: none;
    display: block;
    margin: 20px auto;
    width: 60%;
  }
}


  .antivirus-intro,
  .av-brands {
    padding: 40px 6%;
  }

  .antivirus-intro h2,
  .av-brands h3 {
    font-size: 1.6em;
    text-align: center;
  }


/* Contact Us Button Style */
.contact-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #002e5b;
  color: #fff;
  font-size: 1em;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #0052a3;
}
/* ===== Firewall Page Styling ===== */

.firewall-info, .firewall-brand {
  padding: 60px 10%;
  background-color: #f4f6fa;
}

.firewall-info h2, .firewall-brand h3 {
  font-size: 2em;
  color: #002e5b;
  margin-bottom: 20px;
}

.firewall-info p, .firewall-brand p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
}

/* Right-aligned image */
.img-right {
  float: right;
  margin-left: 30px;
  margin-bottom: 10px;
  width: 40%;
  max-width: 280px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Contact Us button */
.contact-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #002e5b;
  color: #fff;
  font-size: 1em;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #0052a3;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .img-right {
    float: none;
    display: block;
    margin: 20px auto;
    width: 60%;
  }

  .firewall-info, .firewall-brand {
    padding: 40px 6%;
  }

  .firewall-info h2, .firewall-brand h3 {
    text-align: center;
    font-size: 1.6em;
  }
}
/* ===== AMC Page Styling ===== */
.amc-section {
  padding: 60px 10%;
  background-color: #f4f6fa;
  overflow: hidden;
  margin-bottom: 50px;
}

.amc-section h2,
.amc-section h3 {
  font-size: 2em;
  color: #002e5b;
  margin-bottom: 20px;
}

.amc-section p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
}

.img-right {
  float: right;
  margin: 0 0 10px 30px;
  width: 40%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}

.contact-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background-color: #002e5b;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color .3s ease;
  font-size: 1em;
}

.contact-btn:hover {
  background-color: #0052a3;
}

@media (max-width: 768px) {
  .img-right {
    float: none;
    display: block;
    margin: 20px auto;
    width: 70%;
  }

  .amc-section {
    padding: 40px 6%;
  }

  .amc-section h2,
  .amc-section h3 {
    text-align: center;
    font-size: 1.6em;
  }
}
