* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
   font-family: 'Source Sans 3', sans-serif;
}

.header {
  height: 100px;
  background-color: #00ACED;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #00ACED;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.shrink {
  height: 70px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header.shrink .logo {
  width: 250px;
  height: 45px;
}

.header.shrink .nav a {
  font-size: 14px;
}

.header.shrink .contact-btn {
  width: 140px;
  height: 36px;
  font-size: 13px;
}

.header-content {
  width: 100%;
  max-width: 100;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 80px;
}

.logo {
  width: 301px;
  height: 54px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 24px;
  flex-grow: 1;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a:focus,
.nav a.active {
  color: #808183;
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: black;
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus::after,
.nav a.active::after {
  width: 100%;
}

.contact-btn {
  width: 163px;
  height: 44px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 20px; 
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 100px 70px;
  box-sizing: border-box;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: white;
  max-width: 1200px;
  width: 100%;
  padding: 0;
  margin: 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Add overlay for better text readability */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
}

.impact-section {
  padding: 60px 80px;
  margin: 0 auto;
}

.impact-heading {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.impact-paragraph {
  width:1280px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #5F5F5F;
}



.impact-subheading {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
}

/* Card List Styles */
.card-text-box {
  padding: 0 20px;
  max-width: 343px;
  height: 236px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.card-text-box p {
  font-size: 14px !important;
  margin-bottom: 15px;
  margin-left: -16px;
  max-width: 100%;
  color: #5F5F5F;
}

.product-card ul {
  list-style-type: none;
  padding-left: 5px;
  margin: 15px 0;
}

.product-card li {
  width: 340px;
  height: 239;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px; /* This creates 15px gap between bullet points */
  line-height: normal; /* Reset line height to normal */
  font-weight: bold;
  font-size: 14px;
  margin-left: -16px;
  color: #5F5F5F;
}

.product-card li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #5F5F5F;
  font-weight: bold;
  margin-right: 8px;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  padding: 0 80px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.product-card {
  width: 383px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.card-image-wrapper {
  position: relative;
  width: 409px;
  height: 291px;
  margin-left: -13px;
}

.card-image {
  width: 409px;
  height: 291px;
  object-fit: cover;
  display: block;

}

.card-banner {
  position: absolute;
  bottom: 0;
  left: 13px;
  width: 383px;
  height: 76px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  padding-left: 15px;

}

.card-banner span {
  font-size: 20px;
  color: #000;
  font-weight: bold;
}

.card-text-box {
  width: 383px;
  height: 275px;
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  margin: 10px auto 20px;
  padding: 0 15px;
}

.card-text-box ul {
  padding: 0;
  margin-top: 10px;
  list-style: none;
}

.card-text-box li {
  margin-bottom: 6px;
}

.card-text-box li::before {
  content: "/";
  color: #00ACED;
  margin-right: 0px;
  font-weight: 900;
  font-size: 1.1em;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Shared heading style */
.section-heading {
  font-size: 38px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Shared heading style */
.section-heading {
  font-size: 38px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Shared heading style */
.section-heading {
  font-size: 38px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.section-heading {
  font-size: 38px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Why Us Section */
.why-us-section {
  padding: 60px 40px;
}

.why-us-list {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  font-size: 18px;
  line-height: 2;
  margin-left: 0 auto; /* shift visually to the left */
  text-align: left;
  color: #5F5F5F;
}

.why-us-list li::before {
  content: "/";
  color: #00ACED;
  font-weight: 900;
  margin-right: 8px;
}

/* The Road Ahead Section */
.road-ahead-section {
  padding-left: 80px;
  padding-right: 80px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto 75px;
}

.road-text {
  text-align: left;
  transform: translateX(-20px); /* shift left slightly */
  font-size: 18px;
}

.road-text p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #5F5F5F;
}


/* Social Media Section */
.social-section {
  text-align: center;
  margin: 0 0 75px 0; /* top right bottom left */
  margin-bottom: 30px;
}

.social-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
  }

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  color: #000;
}

.social-icons img {
  width: 52px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 4px;
}

.social-heading {
  font-size: 16px;
  font-weight: 500;
  width: 458px;
  height: 28px;
  margin: 0 auto 20px auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}

.social-icon img {
  width: 52px;
  height: 76px;
  object-fit: contain;
}

.footer-accurate {
  width: 100%;
  height: 305px;
  background-color: #d9d9d9;
  margin: 0 auto;
  font-family: 'Source Sans 3', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 40px;
  box-sizing: border-box;
}

.footer-cols-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 41px;
  padding-left: 400px; /* Start at 507px from the left */
  padding-right: 126px; /* End at 126px from the right */
  box-sizing: border-box;
}

.footer-col {
  font-size: 19px;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}

.footer-col a {
  color: black;
  text-decoration: none !important;
  display: block;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.footer-col a:hover,
.footer-col a:focus {
  color: #808183;
}

.footer-heading {
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-note {
  font-size: 16px;
  padding: 0 100px 30px;
}

.company {
  left: 300px;
}

.company + .footer-col {
  left: calc(300px + 180px);
}

.company + .footer-col + .footer-col {
  left: calc(300px + 180px * 2);
}

.service {
  right: 200px;
}

.footer-heading {
  font-weight: 600;
}

.footer-note {
  text-align: center;
  font-size: 14px;
  color: #000;
  line-height: 1.5;
  padding-bottom: 20px;
}

/* Position columns using exact spacing */
.company {
  left: 400px;
}

.company + .footer-col {
  left: calc(400px + 109px + 30px); 
}

.company + .footer-col + .footer-col {
  left: calc(400px + 109px * 2 + 30 px * 2);
}

.service {
  right: 126px;
}


/* Footer note styles */
.footer-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 60px; /* Controls side spacing */
}

.footer-note .copyright-left {
  text-align: left;
  height: auto;
  padding-left: 40px; /* Shift it a bit left */
  margin-bottom: -30px;
}

.footer-note .info-right {
  text-align: right;
  padding-right: 60px;
  margin-bottom: 26px;
}

.footer-note .info-right a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  height: 20px;
  line-height: 20px;
  margin: 0 3px;
  position: relative;
  transition: all 0.3s ease;
}

.footer-note .info-right a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: width 0.3s ease, transform 0.3s ease;
  transform-origin: left;
}

.footer-note .info-right a:hover::after {
  width: 100%;
  transform: scaleX(1);
}

/* Specific styles for Textile and Leather links */
.footer-note .info-right a[href="pymag.html"]::after,
.footer-note .info-right a[href="curtin.html"]::after {
  background-color: #000;
}

.footer-note .info-right a[href="pymag.html"]:hover::after,
.footer-note .info-right a[href="curtin.html"]:hover::after {
  width: 100%;
  transform: scaleX(1);
}



.social-icon img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon img:hover {
  transform: scale(1.1) translateY(-4px);
  /*box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);*/
}

/* === FOR 1280px === */
/* For screens wider than 2000px 
@media (min-width: 2001px) {
  .product-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .product-card {
    width: calc(33.333% - 20px); /* 3 cards per row with gap 
    margin: 0 0 30px 0;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  
  .card-image-wrapper {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  
  .card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .card-banner {
    width: 100%;
    left: 0;
  }
  
  .card-text-box {
    width: 100%;
    height: auto;
    padding: 15px;
    max-width: none;
  }
  
  .product-card ul {
    padding-left: 15px;
  }
  
  .product-card li {
    width: 100%;
    margin-left: 0;
  }
  
  .impact-paragraph {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 40px;
  }
}*/

@media (max-width: 1280px) {
  .header-content,
  .intro-section,
  .industries,
  .sustainability-section,
  .inspiring-section {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .banner-video {
    width: 100% !important;
  }



  .card-image-wrapper {
    width: 360px;
    height: 350px;
  }

  .card-image {
    width: 360px;
    height: 350px;
  }

  .card-banner {
    width: 330px;
  }

  .card-text-box {
    width: 330px;
    max-width: 330px;
  }

  .card-text-box p {
    margin-left: 0px;
  }

  .card-text-box ul {
    margin-left: 20px;
  }

  .impact-paragraph {
    padding-left: 0px;
    padding-right: 20px;
    box-sizing: border-box;
    width: auto;
  }

  .why-us-section {
    padding: 60px 40px;
  }

  .road-ahead-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (min-width: 2000px) {
  .hero h1
 {
    font-size: 79px;
    width: 1900px;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.nav a {
  text-decoration: none;
  color: black;
  font-size: 30px;
  font-weight: 600;
}

.logo
 {
    width: 401px;
    height: 54px;
    object-fit: contain;
    margin-left: 92px;
}

.impact-heading {
  font-size: 53px;;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.impact-paragraph {
  width: 1900px;
  font-size: 27px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.impact-paragraph {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto 30px;
  padding: 0 40px;
}

.impact-subheading {
  text-align: center;
  font-size: 52px;
  font-weight: bold;
  align-items: center;
  margin-top: 30px;
}

.contact-btn {
  width: 197px;
  height: 56px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 58px;
}

.section-heading {
  font-size: 58px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.why-us-list {
  list-style: none;
  padding-left: 0;
  max-width: 1800px;
  font-size: 28px;
  line-height: 1.6;
  margin: 0 auto;
  text-align: left;
}

.section-heading {
  font-size: 52px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.road-text p {
  font-size: 27px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.social-title {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 20px;
}

.social-icon img {
  width: 68px;
  height: 98px;
  object-fit: contain;
}

.social-icons div {
  font-size: 22px;
}
.footer-cols-wrapper {
  padding-left: 200px;
  padding-right: 100px;
  gap: 40px;
  justify-content: space-evenly;
}

.footer-heading {
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-col {
  font-size: 20px;
  gap: 10px;
  min-width: 160px;
}

.footer-note .info-right a {
  text-decoration: none;
  color: black;
  font-size: 15px;
  height: 20px;
  line-height: 20px;
  margin: 0 3px;
  position: relative;
  transition: all 0.3s ease;
}

.footer-note .info-right a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: width 0.3s ease, transform 0.3s ease;
  transform-origin: left;
}

.footer-note .info-right a:hover::after {
  width: 100%;
  transform: scaleX(1);
}

.footer-note .info-right a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: width 0.3s ease, transform 0.3s ease;
  transform-origin: left;
}

.footer-note .info-right a:hover::after {
  width: 100%;
  transform: scaleX(1);
}

@media (min-width: 2000px) {
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    padding: 0 40px;
    margin: 0 40px;
  }
  .product-card {
    margin: 0;
    width: auto;
  }
  .logo {
    width: 301px;
    height: 54px;
    object-fit: contain;
}

.nav a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0 5px;
}

.header-content {
  width: 100%;
  max-width: 2000px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
}

.contact-btn {
  width: 163px;
  height: 44px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 20px;
}
.nav {
  display: flex;
  gap: 24px;
  flex-grow: 1;
  margin-left: -60px;
  justify-content: center;
}
}


/* Ensure 3 cards per row on large screens */
@media (min-width: 1600px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
  }
}

/* Optimized for 1920px */
@media (min-width: 1920px) {
  .product-grid {
    max-width: 1900px;
    padding: 0 100px;
    gap: 40px;
  }
  
  .product-card {
    max-width: 583px;
    width: 100%;
  }
  
  .card-image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 509/391;
    margin-left: 0;
  }
  
  .img.card-image {
    width: 509px;
    height: 391px;
  }
  .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card-banner {
    width: calc(100% - 26px);
    left: 13px;
    height: 90px;
  }
  
  .card-banner span {
    font-size: 24px;
  }
  
  .card-text-box {
    padding: 25px;
    min-height: 300px;
  }
  
  .card-text-box p,
  .card-text-box li {
    font-size: 15px !important;
    line-height: 1.6;
  }
}

/* Optimized for 2560px (2K/QHD) */
@media (min-width: 2560px) {
  .product-grid {
    max-width: 2200px;
    padding: 0 180px;
    gap: 40px;
    margin-left: 150px;
  }
  
  .product-card {
    max-width: 600px;
  }
  
  .card-image-wrapper {
    height: 360px;
  }
  
  .card-banner {
    height: 90px;
  }
  
  .card-banner span {
    font-size: 26px;
  }
  
  .card-text-box {
    padding: 20px;
  }
  
  .card-text-box p,
  .card-text-box li {
    font-size: 16px !important;
    line-height: 1.6;
  }
}

.product-card {
  width: 100%;
  max-width: 483px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.card-image-wrapper {
  position: relative;
  width: 509px;
  height: 291px;
  margin-left: -13px;
}

.card-image {
  width: 509px;
  height: 291px;
  object-fit: cover;
  display: block;

}

.card-banner {
  position: absolute;
  bottom: 0;
  left: 13px;
  width: 483px;
  height: 76px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  padding-left: 15px;

}

.card-banner span {
  font-size: 20px;
  color: #000;
  font-weight: bold;
}

.card-text-box {
  width: 483px;
  height: 325px;
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  margin-right: 125px;
  padding: 0 15px;
}

.card-text-box ul {
  padding: 0;
  margin-top: 10px;
  list-style: none;
}

.card-text-box li {
  margin-bottom: 6px;
}

.product-card li {
  width: 440px;
}

.card-text-box li::before {
  content: "/";
  color: #0095ff;
  margin-right: 0px;
  font-weight: bold;
  font-size: 1.1em;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.road-ahead-section {
  padding-left: 180px;
  padding-right: 180px;
}

}