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

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

/* 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;
}
}

/* Base card layout for all screens */
.product-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 26px;
padding: 0 80px;
margin: 0 auto;
}

.product-card {
width: 383px;
flex: 0 1 383px;
}

.card-image-wrapper {
width: 409px;
margin-left: -13px;
}

.card-image {
width: 409px;
}

.card-banner {
width: 383px;
}

.card-text-box {
width: 383px;
height: 275px;
}

/* 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;
  
}
}

/* 1280px screen adjustments */
@media screen and (max-width: 1280px) {
.header-content {
  max-width: 1280px;
  padding-left: 40px;
}

.banner-text {
  width: 850px;
  bottom: 80px;
  left: 50px;
  font-size: 40px;
}

.impact-paragraph {
  width: 1000px;
}

.product-grid {
  padding: 0 40px;
}
}

/* 1024px screen adjustments */
@media screen and (max-width: 1024px) {
.header-content {
  max-width: 1024px;
  padding-left: 30px;
}

.banner-text {
  width: 700px;
  bottom: 60px;
  left: 30px;
  font-size: 36px;
}

.impact-paragraph {
  width: 800px;
}

.product-grid {
  padding: 0 30px;
}
}

.header {
  height: 100px;
  background-color: #FFF455;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #FFF455;
  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; 
}

.banner-container {
  width: 100vw; /* Full screen width */
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: inline-block; /* or block, depending on layout */
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  position: absolute;
  bottom: 100px; /* space from bottom */
  left: 70px;  /* space from left */
  height: 68px;
  width: 988px;
  color: white;
  font-size: 48px;
  font-weight: 600;
}

.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;
max-width: 339px;
height: 236px;
overflow: hidden;
position: relative;
}

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

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

.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: #0095ff;
margin-right: 6px;
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);
}

/* 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; /* 80px gap on both sides */
}

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

/* Reset all list styles */
ul, ol, li {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Specific list item styles */
.why-us-list li,
.product-card li,
.card-text-box li,
ul li,
ol li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-left: 0 !important;
}

/* Remove any pseudo-elements that might add content */
.why-us-list li::before,
.product-card li::before,
.card-text-box li::before,
ul li::before,
ol li::before {
  content: none !important;
  display: none !important;
}

.list-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}



/* 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::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: #808183;
transition: width 0.3s ease;
}

.footer-col a:hover::after,
.footer-col a:focus::after {
width: 100%;
}

.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);
}



.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);*/
}

@media screen and (max-width: 1280px) {
  .header-content {
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .banner-text {
    width: 780px;
    font-size: 42px;
    left: 40px;
    bottom: 80px;
  }

  .impact-section {
    padding: 60px 40px;
  }

  .impact-paragraph {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto 20px auto;
  }

  .product-grid {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 40px;
    margin: 0 40px;
    gap: 26px;
  }

  .product-card {
    margin: 0;
    width: 355px;
  }

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

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

  .card-banner {
    width: 330px;
  }

  .card-text-box {
    width: 355px;
    height: auto;
  }

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

  
@media screen and (min-width: 2000px) {
  .header-content,
  .impact-section,
  .why-us-section,
  .road-ahead-section,
  .footer-accurate {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 100px;
  }

  .banner-container {
    width: 100%;
    max-width: 2400px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
  }

  .banner-img {
    width: 100%;
    height: 700px; /* or use auto for proportional height */
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }
  .banner-img {
    width: 100%;
    max-width: 2560px;
    height: 700px; /* or use auto for proportional height */
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }

  .banner-text {
    font-size: 60px;
    width: 1200px;
    left: 120px;
    bottom: 100px;
  }

  .impact-paragraph {
    max-width: 1600px;
    font-size: 20px;
    line-height: 1.8;
    margin: 0 auto 30px auto;
  }

  .product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px; /* gap between cards */
    padding: 0 80px;
    max-width: 2400px;
    margin: 0 auto;
    justify-content: space-between;
  }

  .product-card {
    width: calc((100% - 2 * 60px) / 3); /* 3 columns with 60px gaps */
    flex: 0 0 calc((100% - 2 * 60px) / 3);
  }

  .card-image-wrapper,
  .card-image,
  .card-banner,
  .card-text-box {
    width: 100% !important; /* Match card width */
  }

  .card-image-wrapper {
    height: 420px;
  }

  .card-image {
    height: 420px;
    object-fit: cover;
  }

  .card-banner {
    height: 100px;
    padding-left: 30px;
  }

  .card-banner span {
    font-size: 26px;
  }

  .card-text-box {
    height: auto;
    font-size: 18px;
    padding: 20px;
    line-height: 1.8;
  }

  .card-text-box li {
    font-size: 16px;
  }
}
  .footer-cols-wrapper {
    padding-right: 200px;
    gap: 60px;
  }

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

  .footer-note .copyright-left,
  .footer-note .info-right {
    font-size: 16px;
    padding: 0;
  }
}

@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: 60px;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
}

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

.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: 31px;
line-height: 1.6;
margin: 0 auto;
text-align: left;
}

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

.road-text p {
font-size: 33px;
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);
}
.impact-paragraph {
width: 100%;
max-width: 1900px;
margin: 0 auto 30px;
padding: 0 40px;
}

.impact-paragraph {
width: 1800px;
font-size: 36px;
line-height: 1.6;
margin-bottom: 20px;
margin-left: 10px;
margin-right: 0px;
padding-right: 0px;
}

@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;
}

.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: 44px;
font-weight: 400;
margin-bottom: 20px;
font-family: Arial, sans-serif;
}

.social-icon img {
width: 82px;  
height: 106px;
object-fit: contain;
}


.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: 18px;
height: 20px;
line-height: 20px;
margin: 0 3px;
}



@media (min-width: 2000px) {
.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;
}

}

}


/* Optimized for 1920px */
@media (min-width: 1920px) {
.product-grid {
  max-width: 1800px;
  padding: 0 100px;
  gap: 35px;
}

.product-card {
  max-width: 483px;
  width: 100%;
}

.card-image-wrapper {
  height: 380px;
}

.card-banner {
  height: 90px;
}

.card-banner span {
  font-size: 24px;
}

.card-text-box {
  padding: 20px;
  min-height: 280px;
}

.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;
}

.card-text-box li::before {
content: "/";
color: #0095ff;
margin-right: 6px;
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);
}

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

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

.social-icons div {
font-size: 22px;
}

}
