body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f9f9f9;
    color: #222;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-header {
    background: #003049;
     position: sticky;
    top: 0;
    z-index: 1000;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 0;
    gap : 50px;
}

.header-phone {
    margin-left: auto;
    font-size: 1.1em;
    font-weight: bold;
}

.header-phone a {
    color: #eaeaea;
    text-decoration: none;
    padding: 0.5em 1em;
}
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
    width: 100%;
    background: #003049;
    padding: 0 16px;
}
.main-nav > *{
  margin: 0 0.5em;
}

.main-nav a, .main-nav .dropbtn {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 18px 12px;
    display: block;
}

.main-nav .dropdown {
    position: relative;
    display: inline-block;
}

.main-nav .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.12);
    z-index: 1;
}

.main-nav .dropdown-content a {
    color: #003049;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: normal;
}

.main-nav .dropdown-content a:hover {
    background-color: #f1f1f1;
}

.main-nav .dropdown:hover .dropdown-content {
    display: block;
}

.main-nav .dropdown:hover .dropbtn {
    color: #fcbf49;
}
.logo {
    max-height: 60px;
    height: 60px;
    border-radius: 16px;
}
.site-header nav a {
    color: #fff;
    margin-left: 24px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.2s;
}
.site-header nav a:hover {
    color: #fcbf49;
}
.hero-side-by-side {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 48px 0;
}

.hero-side-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  object-fit: contain;
  background: #fff;
}

.hero-side-text {
  flex: 1;
  min-width: 260px;
  background: none; /* Remove background image */
  color: #003049;
  padding: 48px 32px;
  border-radius: 16px;
  position: relative;
  background: #fff; /* Optional: white background for text */
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
  .hero-side-by-side {
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
  }
  .hero-side-image {
    width: 100%;
  }
}
.hero {
    background: #eaeaea;
    padding: 48px 0 32px 0;
    line-height: 2;
}
.hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-text {
    flex: 1 1 320px;
}
.hero-img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.hero h1 {
    color: #003049;
    margin-bottom: 16px;
    font-size: 2.2em;
}
.btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 32px;
    background: #003049;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background 0.2s;
}
.btn:hover {
    background: #fcbf49;
    color: #fff;
}
.services {
    background: #fff;
    padding: 48px 0 32px 0;
}
.services-flex {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    flex-wrap: wrap;
}
.services-img {
    width: 100%;
    max-width: 340px;
    border-radius: 8px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.services ul {
    margin: 0;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    font-size: 1.1em;
}
.services ul a {
  text-decoration: none;
}
.services ul a:hover {
  text-decoration: underline;
  text-decoration-color: #fcbf49;
}
.service-icon {
  width: 100px;
  height: 100px;
  vertical-align: middle;
  margin-right: 8px; 
}
a:hover .service-text {
  color: #fcbf49; 
  transition: color 0.2s;
}
.services-grid {
  flex: 1 1 0px;  
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 32px 24px;
  max-width: 700px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.services-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  padding: 12px;
  border-radius: 8px;
}
.services-grid a:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  background: #f9f9f9;
}
.services-grid .service-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
}
.services-grid .service-text {
  font-size: 1.1em;
  font-weight: bold;
  transition: color 0.2s;
}
.services-grid a:hover .service-text {
  color: #fcbf49;
}
.wire-rope-sizes {
    background: #eaeaea;
    padding: 36px 0 24px 0;
    text-align: center;
}
.sizes-list {
    display: flex;
    justify-content: center;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
    font-size: 1.2em;
    font-weight: bold;
}
.contact-info {
    background: #fff;
    padding: 48px 0 32px 0;
}
.contact-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.contact-img {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap; /* Prevents wrapping to keep all in one row */
}

.contact-details,
.contact-map,
.end-image {
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 350px;
}

.end-image {
  display: flex;
  flex-direction: column; /* Images side by side */
  align-items: center;
  gap: 18px;
}
.end-img {
  width: 100%;
  max-width: 180px; /* or whatever looks good */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: block;
}
.contact-map iframe,
.contact-img {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.end-image img:nth-child(2) {
  background: #003049;
  padding: 16px;
  border-radius: 8px;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .end-image {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1000px) {
  .contact-row {
    flex-direction: column;
    align-items: center;
  }
  .contact-details,
  .contact-map,
  .contact-image {
    max-width: 100%;
  }
}
.location-map {
  margin: 32px 0;
  text-align: center;
}
.location-map iframe {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 100%;
}
.site-footer {
    background: #003049;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    margin-top: 0;
    font-size: 1em;
}
@media (max-width: 900px) {
    .hero-flex, .services-flex, .contact-flex {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .header-flex {
        flex-direction: column;
        gap: 12px;
    }
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropbtn {
    cursor: pointer;
    padding-right: 8px;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #003049;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.12);
    z-index: 1;
}
.dropdown-content a {
    color: #003049;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: normal;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    color: #fcbf49;
}

.about-info h2{
    text-align: center;
}
.about-info p {
    line-height: 2;
}
.about-flex {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.about-text {
  flex: 1 1 0;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 16px; /* space between images */
}

.about-img {
  max-width: 350px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Responsive: stack text and images on small screens */
@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-images {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-img {
    margin-top: 16px;
    max-width: 90vw;
  }
}
.contact-info address {
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block; /* keeps it inline with the label if needed */
}
.product-grid-section {
  padding: 40px 0;
}

/* Product Grid Styles */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}

.product-card h3 {
  margin: 10px 0 12px 0;
  font-size: 1.1em;
  color: #003049;
}

.product-btn {
  margin-top: auto;
  display: inline-block;
  padding: 8px 20px;
  background: #003049;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background 0.2s;
}

.product-btn:hover {
  background: #fcbf49;
}

/* Responsive: stack grid on small screens */
@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .product-card img {
    width: 60px;
    height: 60px;
  }
}
.services-grid-section {
  padding: 48px 0 32px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); /* Match product grid */
  gap: 32px;
  margin-top: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff; /* Match product card */
  border-radius: 10px; /* Match product card */
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); /* Match product card */
  padding: 24px 16px; /* Match product card */
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s; /* Match product card */
}

.service-card img {
  width: 90px;         /* Match product card */
  height: 90px;        /* Match product card */
  object-fit: contain; /* Match product card */
  margin-bottom: 12px; /* Match product card */
  display: block;
  border-radius: 8px;
  background: #fff;
}

.service-card h3 {
  margin: 10px 0 12px 0; /* Match product card */
  font-size: 1.1em;
  color: #003049;
}
.service-btn {
  margin-top: auto;
  display: inline-block;
  padding: 8px 20px;
  background: #003049;
  color: #fff !important; /* Match product-btn */
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;      /* Match .product-btn */
  font-size: 1em;
  transition: background 0.2s;
}

.service-btn:hover {
  background: #fcbf49 !important; /* Match product-btn:hover */
  color: #003049;        /* Match .product-btn:hover */
}
.proof-load-test {
  background-image: url('../img/load-testing.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh; /* or set to the image's height */
}
.highlight-cta {
  color: #eaeaea;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 22px 28px;
  border-radius: 18px;
  margin: 32px 0;
  font-size: 1.35em;
  box-shadow: 0;
  letter-spacing: 2px;
  text-shadow:
    0 2px 8px rgba(0,0,0,0.45),
    0 1px 0 #003049,
    0 0px 2px #003049;
  display: inline-block;
  max-width: 100%;
}
.side-by-side-item {
  display: flex;
  min-height: 350px;
}

.side-img-bg {
  flex: 1 1 340px;
  min-width: 250px;
  min-height: 350px;
  color: #eaeaea;
  background-image: url('../img/Proof-Load-Test2.jpg');
  background-color: #fff;
  background: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px 0 0 10px;
}
.side-img-2-bg {
  flex: 1 1 340px;
  min-width: 250px;
  min-height: 350px;
  color: #003049;
  background-image: url('../img/wire-rope.jpeg');
  background-color: #fff;
  background: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px 0 0 10px;
}

.side-text {
  flex: 2 1 320px;
  background: #fff;
  padding: 40px 32px;
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .side-by-side-item {
    flex-direction: column;
  }
  .side-img-bg, .side-text {
    border-radius: 10px;
    min-width: 0;
  }
}
.side-text-flex {
  background-color: #eaeaea;  
  display: flex;
  align-items: center;
  /* Remove gap if you want the cert-row to control spacing */
}

.side-text-content {
  background-color: #eaeaea;
  flex: 1;
}

.cert-row {
  display: flex;
  align-items: center;
  gap: 16px; /* space between text and image */
  margin-top: 16px;
}

.cert-row span {
  font-weight: bold;
  font-size: 1.1em;
  color: #003049;
}

.side-img-content {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin: 0;
}

@media (max-width: 700px) {
  .cert-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/* Distributor Grid Styles */
.distributor-grid-section {
  padding: 40px 0;
}

.distributor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-items: center;
  align-items: start;
}

.distributor-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 24px 12px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.distributor-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.distributor-card span {
  display: block;
  font-weight: 600;
  color: #003049;
  font-size: 1.1em;
}
.special-links a,
.special-links a:visited {
  color: #0000EE; /* Default browser blue */
  text-decoration: underline;
}
.footer-links a,
.footer-links a:visited {
  color: #d62828;
}
.text-grid-section {
  padding: 40px 0;
}

.text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.text-grid-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 32px 24px;
}

@media (max-width: 800px) {
  .text-grid {
    grid-template-columns: 1fr;
  }
}
.text-grid-section {
  background-image: url('../img/workers.jpeg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
}
.text-grid-2-section {
  background-image: url('../img/fp-splash2.jpg');
  background-size: cover; /* or 'cover' if you want to fill the area */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff; /* or any color to fill the empty space */
  padding: 40px 0;
}
.text-grid-item {
  /* Optional for readability: use a semi-transparent white */
  background: rgba(255,255,255,0.8); 
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 32px 24px;
}
.accordion-section {
  margin: 40px 0;
}

.accordion {
  max-width: 700px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-title {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.15em;
  padding: 18px 16px;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #003049;
  transition: background 0.2s;
}

.accordion-title:hover {
  background: #f3f3f3;
}

.accordion-content {
  display: none;
  padding: 0 16px 16px 16px;
  background: #fafafa;
  color: #222;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .plus {
  transform: rotate(45deg);
}
.plus {
  font-size: 1.5em;
  transition: transform 0.2s;
}
.image-text-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.side-img {
  width: 120px;
  height: auto;
  border-radius: 8px;
}
.side-text {
  flex: 1;
}
.xposure-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 32px auto;
}

.xposure-features-grid > div {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  vertical-align: top;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-size: 1.1em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.xposure-features-grid strong {
  display: block;
  font-size: 1.2em;
  color: #003049;
  margin-bottom: 8px;
}

/* Responsive: stack to 1 column on small screens */
@media (max-width: 700px) {
  .xposure-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive: stack on mobile */
@media (max-width: 700px) {
  .image-text-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .side-img {
    width: 100%;
    max-width: 250px;
  }
}

/*Moblile Styles */
/* General container padding for mobile */
@media (max-width: 700px) {
  .container,
  .container.header-flex,
  .container.hero-flex,
  .container.contact-row {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-text {
    padding: 16px 0;
    text-align: center;
  }

  .about-images {
    max-width: 100%;
    height: auto;
    margin: 0 auto 16px auto;
    display: block;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .main-nav a,
  .main-nav .dropbtn {
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: left;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    width: 100%;
  }

  .contact-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-details,
  .contact-map,
  .contact-image {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .contact-map iframe {
    width: 100% !important;
    height: 220px !important;
  }

  .site-header {
    position: static;
  }
}
img,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
body {
  font-size: 16px;
  line-height: 1.6;
}

.btn, .main-nav a, .dropbtn {
  font-size: 1.1em;
  padding: 12px 18px;
}
@media (max-width: 700px) {
  .contact-map iframe {
    width: 100% !important;
    height: 220px !important;
  }
}
@media (min-width: 701px) {
  .contact-map iframe {
    width: 300px;
    height: 300px;
  }
}