.reinvent-section {
    position: relative;
    height: 90vh;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    overflow: hidden;
}
/* Background video */
.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay for readability */
.reinvent-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
}

/* Text above video */
.text-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

/* Mobile fix */
@media (max-width: 768px) {
    .reinvent-section {
        padding: 40px 20px;
        height: 60vh;
    }
}

.text-container {
  display: flex;
  width: 100%;
  justify-content: space-between; /* Align heading to left and paragraph to right */
  align-items: flex-start; /* Aligns items to the top */
}

.headline {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 900;
  max-width: 50%; /* Restrict heading to 50% width */
  text-align: left;
}

.highlight {
  color: #000;
}

.arrow {
  color: #000000;
  font-weight: bold;
}

.description {
  font-size: 2rem;
  line-height: 1.8;
  max-width: 50%; /* Restrict description to 50% width */
  text-align: left; /* Aligns paragraph text to the right */
  margin-left: 20px;
}

.cta {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 3rem;
  margin-top: 10px;
}

.cta span {
  color: #000000;
  font-weight: bold;
}
/* Responsiveness for Mobile (Below 768px) */
@media (max-width: 768px) {
  .reinvent-section {
    padding: 40px;
    height: auto;
  }

  .text-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .headline,
  .description {
    max-width: 100%;
    font-size: 3rem; /* Decrease font size for smaller screens */
  }

  .headline {
    font-size: 3.5rem;
  }

  .description {
    font-size: 1.6rem;
    margin-left: 0;
    margin-top: 20px;
  }

  .cta {
    font-size: 2rem;
    margin-top: 20px;
  }
}
/*----------------------------------------------------- end------------------------------------------- */

.container-one {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding: 60px 80px;
}

.box {
  flex: 1 1 calc(25% - 20px);
  padding: 30px;
  min-height: 400px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
}

.box-logo {
  width: 40px;
  height: auto;
  margin-bottom: 15px;
}

.blue-box {
  background-color: #000000;
  color: #fff;
}

.blue-box h2,
.blue-box p {
  color: white;
}

.white-box {
  background-color: #f5f5f5;
  color: #333333;
}

.white-box h3,
.white-box p,
.white-box a {
  color: #333333;
}

.white-box a {
  margin-top: auto;
  font-size: 1.6rem;
  text-decoration: none;
}

.blue-box h2 {
  font-size: 2.6rem;
}

.white-box h3 {
  font-size: 2.3rem;
}

.white-box p,
.blue-box p {
  font-size: 1.6rem;
  margin-top: 10px;
}

.container-two .content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 40px 80px;
}

.container-two .image {
  flex: 1 1 400px;
  position: relative;
}

.container-two .image img {
  width: 100%;
  border-radius: 12px;
}

.container-two .overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #000000;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
}

.container-two .text {
  flex: 1 1 400px;
}

.container-two .text h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.container-two .text p {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.container-two .text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.container-two .text ul li {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.button {
  display: inline-block;
  background-color: #000000;
  color: white;
  padding: 10px 20px;
  font-size: 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #333333;
}

/* Responsive Fixes */
@media screen and (max-width: 1024px) {
  .box {
    flex: 1 1 calc(45% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .container-one,
  .container-two .content {
    padding: 20px;
    flex-direction: column;
  }

  .box {
    flex: 1 1 100%;
    width: 100%;
  }

  .container-two .image,
  .container-two .text {
    flex: 1 1 100%;
  }
}

/*----------------------------------------------- end -----------------------------------------*/
.container-two {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}

.content {
  background-color: #f5f5f5;
  display: flex;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

.container-two .image {
  flex: 1;
  position: relative;
}

.container-two .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0; /* Removed border-radius */
}

.container-two .overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: #000000;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  color: white;
  font-weight: bold;
  border-radius: 0; /* Removed border-radius */
}

.text {
  flex: 1;
  padding: 40px;
  color: #000000;
}

.text h2 {
  color: #000000;
  font-size: 36px;
  margin-bottom: 20px;
}

.text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.list {
  margin-bottom: 40px;
}

.list li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 10px;
  list-style-type: none;
}

.list li::before {
  content: "✔";
  color: #000000;
  margin-right: 10px;
}

.button {
  background-color: #000000;
  color: white;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s;
  border-radius: 0; /* Removed border-radius */
}

.button:hover {
  background-color: #333333;
}

/* Media Queries for Responsiveness */

@media (max-width: 1024px) {
  .container-two {
    height: auto;
    padding: 20px;
  }

  .content {
    flex-direction: column;
  }

  .text {
    padding: 20px;
  }

  .text h2 {
    font-size: 28px;
  }

  .text p {
    font-size: 16px;
  }

  .button {
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .text {
    padding: 15px;
  }

  .text h2 {
    font-size: 24px;
  }

  .text p {
    font-size: 14px;
  }

  .button {
    padding: 10px 15px;
    font-size: 14px;
  }

  .overlay {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .text {
    padding: 10px;
  }

  .text h2 {
    font-size: 20px;
  }

  .text p {
    font-size: 12px;
  }

  .button {
    padding: 8px 12px;
    font-size: 12px;
  }

  .overlay {
    font-size: 16px;
    padding: 8px 16px;
  }
}

/*---------------------------------------------------- end -----------------------------------------------*/
.container-three {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 40px;
padding: 0 80px; /* Added padding here */
}

.card {
background-color: #f5f5f5;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
width: 23%; /* Adjusts to 4 cards per row on larger screens */
padding: 30px;
transition: transform 0.3s ease;
margin-bottom: 30px;
display: flex; /* Added flex for vertical alignment */
flex-direction: column; /* Added flex for vertical alignment */
justify-content: space-between; /* Distribute space */
}

.card:hover {
transform: translateY(-10px);
}

.icon img {
width: 60px;
height: 60px;
margin-bottom: 20px;
}

.card .card__icon {
        color: #000000;
        font-size: 4rem; /* text-4xl */
        margin-bottom: 1rem; /* mb-4 */
      }
     

.card h3 {
color: #000000;
font-size: 22px;
margin-bottom: 15px;
}

.card p {
color: #333333;
font-size: 16px;
margin-bottom: 20px;
flex-grow: 1; /* Allows paragraph to take available space */
}

.card a {
color: #000000;
text-decoration: none;
font-weight: bold;
font-size: 16px;
margin-top: auto; /* Pushes the link to the bottom */
}

a:hover {
text-decoration: underline;
}
/* Styles for medium screens */
@media (max-width: 1024px) {
.card {
width: 30%; /* 3 cards per row */
}
.container-three {
padding: 0 40px; /* Adjusted padding */
}
}

/* Styles for small screens */
@media (max-width: 768px) {
.card {
width: 47.6%; /* 2 cards per row */
min-height: 35vh; /* Changed height to min-height */
}
.container-three {
padding: 0 20px; /* Adjusted padding */
}
}

/* Styles for extra small screens */
@media (max-width: 480px) {
.card {
width: 100%; /* 1 card per row */
padding: 30px;
min-height: 40vh; /* Changed height to min-height */
}

.container-three {
padding: 0 20px; /* Adjusted padding */
}
}
/*-------------------------------------------- end--------------------------------------------- */
.hero-section {
  background: linear-gradient(
    to bottom,
    #f5f5f5,
    #e0e0e0
  ); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000000;
  position: relative;
  padding: 20px; /* Added padding for smaller screens */
}

.content-one {
  max-width: 800px; /* Set a max width for better text alignment */
  padding: 0 20px; /* Added padding for content */
}

.content-one h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.content-one h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: bold;
}

.content-one h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: normal;
}

.cta-button {
  padding: 15px 30px;
  background-color: #000000;
  color: white;
  text-decoration: none;

  font-size: 18px;
  transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.cta-button:hover {
  background-color: #333333;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .content-one h1 {
    font-size: 40px;
  }
  .container-five {
    padding: 20px;
  }

  .content-one h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .content-one h1 {
    font-size: 32px;
  }

  .content-one h2 {
    font-size: 24px;
  }

  .cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .content-one h1 {
    font-size: 28px;
  }

  .content-one h2 {
    font-size: 20px;
  }

  .content-one h4 {
    font-size: 20px;
  }

  .cta-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}
