body {
  margin: 0;
  padding: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  box-sizing: border-box;
}

button {
  border: none !important;
}

.main {
  width: 100vw;
}

.enquireNow {
  background-color: #c30010;
  width: 150px;
  height: 50px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  font-size: 13.3px;
  border: none;
  outline: none;
}
.enquireNow:hover {
  background-color: #000000;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}

.social-media-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  position: relative;
  background: #ffebe2;
  background-image: url("../ASSETS/EASTERN MARKETING.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  gap: 10px;
  flex-grow: 1;
  padding-top: 20px;
}

.curved-section {
  position: absolute;
  bottom: -140px;
  left: 0;
  width: 100%;
  height: 450px;
  z-index: 1;
  pointer-events: none;
  max-height: 35%;
}

@media (max-width: 768px) {
  .social-media-container {
    height: fit-content;
  }

  .content {
    padding-bottom: 0px;
  }
  .curved-section {
    bottom: -200px;
  }
}

/* Logo and Description Section */
.logo-and-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.description {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.description h2,
.description p {
  color: black;
}

.description h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  padding: 0 10px;
}

.description p {
  font-size: 18px;
  font-weight: 600;
}

/* Post and Form Layout */
.post-and-form {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  width: 100%;
}

/* Posts Container */
.posts {
  height: 400px;
  width: 40%;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: transform 0.4s ease-in-out;
}

/* Larger Post */
.posts .larger-post {
  height: 100%;
  width: 50%;
  overflow: hidden;
}

.posts .larger-post img {
  overflow: hidden;
  height: 100%;
  width: 100%;
  mix-blend-mode: multiply;
  /* object-fit: cover; */
}

.posts .smaller-posts {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.posts .smaller-posts .smaller-posts-1,
.posts .smaller-posts .smaller-posts-2 {
  display: flex;
  width: 100%;
  justify-content: space-between;
  height: 50%;
}

.posts .smaller-posts img {
  width: calc((100% - 10px) / 2);
  height: 100%;
  border-radius: 8px;
}

.posts {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .posts {
    display: none;
  }

  .post-and-form {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .description h2 {
    font-size: 20px;
  }

  .description p {
    display: none;
  }
}

/* Form Section */
.form-container {
  background-color: white;
  border-radius: 8px;
  width: 40%;
  max-width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  z-index: 5;
  flex-direction: column;
}

.form-container h2 {
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.custom-recaptcha {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: #1e1e1e;
  color: white;
  border-radius: 5px;
  width: fit-content;
  cursor: pointer;
  user-select: none;
  margin-top: 10px;
  border: 1px solid #444;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.checkbox {
  width: 20px;
  height: 20px;
  background: black;
  border: 2px solid white;
  position: relative;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.checkbox.loading {
  background: url("https://i.gifer.com/VAyR.gif") center/cover no-repeat;
}

.checkbox.checked {
  background: transparent;
  font-size: 20px;
  font-weight: bold;
  color: #00c853;
  text-align: center;
  line-height: 20px;
}

.checkbox.checked::before {
  content: "✔";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.recaptcha-text {
  flex: 1;
}

.recaptcha-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  opacity: 0.8;
}

.recaptcha-logo img {
  width: 30px;
  height: 30px;
}

form button:disabled {
  background: gray;
  cursor: not-allowed;
}

.form-container.animate {
  animation: formMotion 1s ease-in-out forwards;
}

.form.hidden {
  opacity: 0;
}

@keyframes formMotion {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  25% {
    transform: translateX(20px);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-20px);
    opacity: 0.75;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

label {
  margin-top: 10px;
  font-size: 11px;
}

input,
select {
  padding: 10px;
  border: 0.5px solid black;
  font-size: 12px;
  width: 100%;
  margin-top: 5px;
}

form button {
  margin-top: 15px;
  background-color: black;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
}

form button:hover {
  background-color: #333;
}

@media (max-width: 900px) {
  .form-container {
    width: 95%;
    max-width: 95%;
  }
}

/* googlr rating */
.google-rating {
  display: none;
}

@media (max-width: 500px) {
  .google-rating {
    margin-top: 130px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0px 10px;
    align-items: center;
  }

  .google-rating .description h2 {
    font-size: 14px;
  }
}

.google-rating .description {
  margin: 0;
  text-align: center;
}

.google-rating .description h2 {
  font-size: 18px;
}

@media (max-width: 500px) {
  .google-rating .description h2 {
    font-size: 14px;
  }
}

.logo-and-rating {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.google-logo {
  width: 84px;
  height: 84px;
}

.google-logo img {
  width: 100%;
  height: 100%;
}

.gold-stars i {
  color: green;
}

.google-rating p {
  font-size: 12px;
}

/* Google Reviews Section */
.google-reviews {
  width: 98%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Review Container - Centered & Fixed Width */
.reviews-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Single Review Box */
.google-review {
  width: 100%;
  min-width: 100%;
  padding: 15px;
  border-radius: 8px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Customer Details */
.customer-details {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Profile Logo (Initial Letter) */
.name-logo {
  background: pink;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.name-logo h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

/* Customer Name & Review Time */
.name-and-year {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.name-and-year h2 {
  font-size: 16px;
  color: #154fc1;
  font-weight: 600;
}

.name-and-year p {
  font-size: 13px;
  color: #777;
}

/* Star Ratings */
.customer-review i {
  color: gold;
  font-size: 18px;
}

/* Review Text */
.review-text {
  font-size: 15px;
  color: #444;
  max-height: 100px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Scrollbar Styling */
.review-text::-webkit-scrollbar {
  width: 4px;
}

.review-text::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}

/* stats container */

.stats-container {
  width: 80%;
  margin-top: 130px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stats-box {
  border-radius: 8px;
  text-align: center;
  padding: 20px 20px 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background-color: black;
  width: 100%;
}

.stats-box h2 {
  font-size: 46px;
}

.stats-box p {
  font-size: 19px;
}

@media (max-width: 500px) {
  .stats-container {
    width: 95%;
    margin-top: 50px;
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-box {
    min-width: 100%;
    min-height: 153px;
  }
}

@media (max-width: 700px) {
  .stats-container {
    width: 95%;
    /* margin-top: 50px; */
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-box {
    width: 100%;
  }
  .stats-box h2 {
    font-size: 33px;
  }

  .stats-box p {
    font-size: 13px;
  }
}

/* growth partners */
.growth-partners {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  gap: 50px;
  width: 100%;
  padding: 20px;
  align-items: center;
  background: #4b4f58;
}

.growth-description {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.growth-description h2,
h3 {
  font-size: 40px;
  font-weight: 700;
  color: white;
}

.growth-description h3 {
  color: #fdc4c4;
}
.growth-partner-brands {
  width: 95%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.growth-partner-brands img {
  background: #000;
  height: 100%;
  width: 180px;
  object-fit: cover;
}

.growth-partner-brands_row1,
.growth-partner-brands_row2 {
  display: flex;
  height: 180px;
  block-size: var(--marquee-item-height);
  position: relative;
  overflow-x: hidden;
  mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 5%,
    hsl(0 0% 0% / 1) 95%,
    hsl(0 0% 0% / 0)
  );
  --marquee-item-width: 180px;
  --marquee-item-height: 130px;
  --marquee-duration: 30s;
  --marquee-items: 16;
  --marquee-gap: 0px;
}

/* Common styles for items */
.row1_items,
.row2_items {
  --marquee-item-offset: max(
    calc(
      (var(--marquee-item-width) + var(--marquee-gap)) * var(--marquee-items)
    ),
    calc(100% + var(--marquee-item-width) + var(--marquee-gap))
  );
  --marquee-delay: calc(
    var(--marquee-duration) / var(--marquee-items) *
      (var(--marquee-items) - var(--marquee-item-index)) * -1
  );
  position: absolute;
  inset-inline-start: var(--marquee-item-offset);
  transform: translateX(-50%);
}

.row1_items,
.row2_items {
  animation: goLeft linear var(--marquee-duration) var(--marquee-delay, 0s)
    infinite;
  animation-play-state: paused;
}

/* You can add more image like these 8 in a row*/
.growth-partner-brands_row1 .row1_items:nth-of-type(1) {
  --marquee-item-index: 1;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(2) {
  --marquee-item-index: 2;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(3) {
  --marquee-item-index: 3;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(4) {
  --marquee-item-index: 4;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(5) {
  --marquee-item-index: 5;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(6) {
  --marquee-item-index: 6;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(7) {
  --marquee-item-index: 7;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(8) {
  --marquee-item-index: 8;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(9) {
  --marquee-item-index: 9;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(10) {
  --marquee-item-index: 10;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(11) {
  --marquee-item-index: 11;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(12) {
  --marquee-item-index: 12;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(13) {
  --marquee-item-index: 13;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(14) {
  --marquee-item-index: 14;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(15) {
  --marquee-item-index: 15;
}
.growth-partner-brands_row1 .row1_items:nth-of-type(16) {
  --marquee-item-index: 16;
}

.growth-partner-brands_row2 .row2_items:nth-of-type(1) {
  --marquee-item-index: 1;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(2) {
  --marquee-item-index: 2;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(3) {
  --marquee-item-index: 3;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(4) {
  --marquee-item-index: 4;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(5) {
  --marquee-item-index: 5;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(6) {
  --marquee-item-index: 6;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(7) {
  --marquee-item-index: 7;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(8) {
  --marquee-item-index: 8;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(9) {
  --marquee-item-index: 9;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(10) {
  --marquee-item-index: 10;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(11) {
  --marquee-item-index: 11;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(12) {
  --marquee-item-index: 12;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(13) {
  --marquee-item-index: 13;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(14) {
  --marquee-item-index: 14;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(15) {
  --marquee-item-index: 15;
}
.growth-partner-brands_row2 .row2_items:nth-of-type(16) {
  --marquee-item-index: 16;
}

@keyframes goLeft {
  to {
    inset-inline-start: calc(var(--marquee-item-width) * -1);
  }
}

/* result section */
.result {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
  width: 100%;
  padding-top: 20px;
}

.result h2 {
  font-size: 40px;
  font-weight: 700;
}

.feature-containers {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-box {
  width: 260px;
  height: 230px;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  gap: 5px;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.feature-box img {
  width: 72px;
  height: 72px;
}

.feature-box h3 {
  font-size: 16px;
}

.feature-box p {
  font-size: 12px;
}

.orange {
  background-color: #ff7628;
}

@media (max-width: 1350px) {
  .feature-containers {
    width: 100%;
  }
  .feature-box {
    width: 40%;
  }
}

@media (max-width: 630px) {
  .growth-description h2 {
    font-size: 24px;
  }

  .growth-description h3 {
    font-size: 30px;
  }

  .result h2 {
    font-size: 26px;
  }

  .feature-box {
    width: 90%;
  }
}

@media (max-width: 500px) {
  .growth-description h2 {
    font-size: 20px;
  }
  .growth-description h3 {
    font-size: 20px;
  }

  .result h2 {
    font-size: 20px;
  }
}

.work {
  width: 90%;
  margin-top: 60px;
  text-align: center;
}

.work h2 {
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .work h2 {
    font-size: 26px;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

:root {
  --color-bg-accent: #ff7628;
  --image-size: 150px;
  --gap: 10px;
  --duration: 30s;
  --scroll-start: 0;
  --scroll-end: calc(-100% + var(--gap));
}

.work-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 20px;
  mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 1),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 1)
  );
}

.work-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

.work-container--reverse .work-group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

.work-container img,
.work-static-images img {
  width: var(--image-size);
  height: var(--image-size);
  object-fit: cover;
  border-radius: 0.5rem;
}

.work-static-images {
  display: flex;
  gap: var(--gap);
  margin-top: 20px;
  justify-content: center;
  overflow: hidden;
}

.work-static-images img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media (max-width: 1024px) {
  .work-static-images img {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 500px) {
  .work-static-images img {
    width: 120px;
    height: 120px;
  }
  .work-static-images {
    gap: 10px;
  }

  .work {
    width: 98%;
  }
}

.work button {
  margin-top: 10px;
  border-radius: 50px;
  padding: 8px 16px;
  color: white;
  background: red;
  font-size: 18px;
}

/* industries */
/* .industries-work {
  text-align: center;
  margin-top: 60px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.industries-work button {
  margin-top: 10px;
  border-radius: 50px;
  padding: 8px 16px;
  color: white;
  background: red;
  font-size: 18px;
}

.industries-work h2 {
  font-size: 36px;
}

.industries {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  text-align: center;
}

@media (max-width: 1024px) {
  .industries {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .industries-work {
    width: 95%;
  }

  .industries-work h2 {
    font-size: 26px;
  }
  .industries {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}

@media (max-width: 450px) {
  .industries-work h2 {
    font-size: 20px;
  }
}

.industry-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.industry-box img {
  width: 100%;
  max-height: 170px;
  object-fit: cover;
  border-radius: 5px;
}

.industry-box h2 {
  font-size: 18px;
  margin-top: 10px;
  color: #333;
}

@media (max-width: 450px) {
  .industries {
    gap: 5px;
    width: 95%;
    padding: 5px;
  }
  .industry-box {
    width: 100px;
  }
  .industry-box h2 {
    font-size: 10px;
  }
} */

.services-container01 {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.services-grid01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 100%;
}

/* Target all service boxes */
[class^="service-box"] {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  width: calc(16.666% - 17px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  margin-bottom: 20px;
  flex-grow: 0;
  flex-shrink: 0;
}

/* Alternate background colors */
[class^="service-box"]:nth-child(odd) {
  background-color: #ff7628;
  color: white;
}

[class^="service-box"]:nth-child(odd) h3 {
  color: white;
}

[class^="service-box"]:nth-child(even) {
  background-color: white;
}

[class^="service-box"]:nth-child(even) h3 {
  color: #ff7628;
}

[class^="service-box"]:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Service icons styling */
[class^="service-icon"] {
  margin: 0 auto 15px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s ease;
}

[class^="service-icon"] img {
  max-width: 25px;
  max-height: 25px;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 576px) {
  [class^="service-icon"] {
    height: 35px;
    width: 35px;
    padding: 8px;
    margin: 0 auto 5px;
  }

  [class^="service-icon"] img {
    max-width: 20px;
    max-height: 20px;
  }
}

/* Adjust icon colors based on box background */
[class^="service-box"]:nth-child(odd) [class^="service-icon"] {
  background-color: rgba(255, 255, 255, 0.2);
}

[class^="service-box"]:nth-child(even) [class^="service-icon"] {
  background-color: #ff7628;
}

[class^="service-box"] h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  [class^="service-box"] {
    width: calc(16.666% - 17px); /* Still 6 columns for laptops */
  }
}

@media (max-width: 992px) {
  [class^="service-box"] {
    width: calc(16.666% - 17px); /* Still 6 columns for small laptops */
    padding: 20px 10px;
  }

  [class^="service-icon"] {
    height: 50px;
    width: 50px;
  }
}

@media (max-width: 768px) {
  [class^="service-box"] {
    width: calc(25% - 15px); /* 4 columns per row for tablets */
  }
}

@media (max-width: 576px) {
  [class^="service-box"] {
    width: calc(33.333% - 10px); /* 3 columns per row for mobile */
    height: calc(33.333vw - 10px); /* Make height equal to width for square */
    min-width: unset;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  [class^="service-icon"] {
    height: 40%;
    width: 40%;
    padding: 8px;
    margin: 0 auto 5px;
  }

  [class^="service-box"] h3 {
    font-size: 12px;
    margin-bottom: 0;
  }

  .services-grid01 {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  [class^="service-box"] {
    width: calc(33.333% - 10px); /* Maintain 3 columns for smaller screens */
    padding: 5px;
  }

  [class^="service-icon"] {
    height: 45%;
    width: 45%;
    padding: 6px;
  }
}

/* why us */

.why-us {
  text-align: center;
  padding-bottom: 10px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.why-us button {
  border-radius: 50px;
  padding: 8px 16px;
  color: white;
  background: red;
  font-size: 18px;
}

.why-us h2 {
  font-size: 36px;
}

.why-us-reason {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  text-align: center;
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
}

@media (max-width: 1224px) {
  .why-us {
    width: 90%;
  }
  .why-us-reason {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .why-us {
    width: 90%;
  }

  .why-us-reason {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    max-width: 500px;
    margin: 0 auto;
  }
}

.why-us-box {
  background: #f9f9f9;
  padding: 15px;
  background: #4b4f58;
  color: white;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 250px;
}

/* @media (max-width: 768px) {
  .why-us-box{
    width: ;
  }
} */

.why-us-box:hover {
  background-color: #ff7628;
  cursor: pointer;
}

.why-us-box img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 5px;
}

.why-us-box h2 {
  font-size: 14px;
  margin-top: 10px;
  color: white;
  font-weight: 600px;
}

/* platforms  use */

.platform-container {
  margin-top: 60px;
  text-align: center;
  padding: 30px 0px 60px 0px;
  width: 100%;
  display: flex;
  background: #4b4f58;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.platform-container h2 {
  font-size: 36px;
  color: white;
  font-weight: 700;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  gap: 20px;
  justify-content: center;
  text-align: center;
  width: 70%;
}

.platform {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.platform i {
  font-size: 36px;
  color: #333;
}

@media (max-width: 800px) {
  .platforms {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 70%;
  }
}

/* start to finish */
.start-to-finish {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 10px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.start-to-finish button {
  border-radius: 50px;
  padding: 8px 16px;
  color: white;
  background: red;
  font-size: 18px;
}

.start-to-finish h2 {
  font-size: 36px;
}

.start-to-finish-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1224px) {
  .start-to-finish {
    width: 90%;
  }

  .start-to-finish-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .start-to-finish {
    width: 95%;
  }

  .start-to-finish-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin: 0 auto;
  }
}

.start-to-finish-box {
  background: #f9f9f9;
  padding: 15px;
  background: #4b4f58;
  color: white;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
}

@media (max-width: 500px) {
  .start-to-finish-container {
    width: 100%;
    gap: 5px;
  }
  .start-to-finish-box {
    width: 100px;
    max-width: 100%;
    padding: 5px;
  }
}

.start-to-finish-box:hover {
  background-color: #ff7628;
}

.start-to-finish-box img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 5px;
}

.start-to-finish-box h2 {
  font-size: 14px;
  margin-top: 10px;
  color: white;
  font-weight: 600px;
}

/* frequently asked questions */
.asked-Questions {
  text-align: center;
  width: 90%;
  margin-top: 60px;
  padding-bottom: 20px;
}

.asked-Questions h2 {
  font-size: 36px;
}

.questions-and-answers {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, auto);
  text-align: left;
  width: 100%;
  margin: auto;
}

.question-answer {
  padding: 15px;
  border-bottom: 1px solid black;
  transition: all 0.3s ease-in-out;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.question p {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.question i {
  font-size: 18px;
  transition: transform 0.3s ease-in-out;
}

.answer {
  font-size: 14px;
  margin-top: 10px;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

@media (max-width: 1024px) {
  .questions-and-answers {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
  }
}

@media (max-width: 768px) {
  .asked-Questions {
    width: 95%;
  }
  .questions-and-answers {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* conversations */
.conversations {
  z-index: 10;
  margin-top: 60px;
  margin-bottom: 60px;
  width: 85%;
  background-color: #ff7628;
  padding: 20px 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.conversations h1 {
  font-size: 44px;
  color: white;
  font-weight: 700px;
}

@media (max-width: 1290px) {
  .conversations h1 {
    font-size: 36px;
  }
  .conversations h4 {
    font-size: 32px;
  }
}

.conversations h4 {
  font-size: 35px;
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
}

.conversations .form-bottom {
  background-color: white;
  border-radius: 8px;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  z-index: 5;
  flex-direction: column;
}

@keyframes moveForm {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(20px);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}

.form-bottom {
  transition: transform 1s ease-in-out;
}

.form-bottom.animate {
  animation: moveForm 1.5s ease-in-out;
}

.industries-container{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: larger;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .conversations h1 {
    font-size: 26px;
  }

  .conversations h4 {
    font-size: 26px;
  }
}

@media (max-width: 800px) {
  .conversations {
    padding: 10px;
    width: 95%;
    border-radius: 8px;
  }
  .conversations h1 {
    font-size: 16px;
  }

  .conversations h4 {
    font-size: 14px;
  }
}
/* Footer */
/* 

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  background: #333;
  color: white;
  margin-top: -80px;
  text-align: center;
  padding-top: 100px;
  height: 100%;
  z-index: 1;
}

.footer-content {
  display: flex;
  background: #333;
  border: none;
  justify-content: space-between;
  width: 80%;
  align-items: flex-end;
  padding-bottom: 20px;
}

.company {
  width: 35%;
  color: white;
  border: none;
}

.footer-logo {
  height: 80px;
  margin-bottom: 10px;
  border: none;
}

.footer-logo img {
  height: 100%;
  object-fit: contain;
}

.description {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}

.company-social-media {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.company-social-media i {
  font-size: 22px;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

.company-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 30%;
  align-items: flex-end;
  font-size: 16px;
  color: white;
}

.company-contacts div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-contacts i {
  font-size: 20px;
  color: white;
}

.copyRight {
  background: #000;
  width: 100%;
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
  color: white;
}

@media (max-width: 800px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    text-align: center;
  }

  .company {
    width: 100%;
  }

  .description {
    font-size: 14px;
    max-width: 90%;
    margin: 0 auto;
  }

  .company-contacts {
    align-items: center;
    font-size: 14px;
    width: 100%;
  }
} */

.cursor {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.fa-square-facebook {
  color: #1877f2 !important;
}

.fa-square-twitter,
.fa-twitter {
  color: #1da1f2 !important;
}

.fa-youtube {
  color: #ff0000 !important;
}

.fa-instagram {
  color: #e4405f !important;
}

.fa-pinterest {
  color: #e60023 !important;
}

.fa-telegram {
  color: #0088cc !important;
}

.fa-linkedin {
  color: #0077b5 !important;
}

.fa-whatsapp {
  color: #25d366 !important;
}

.whatsapp-container {
  background: rgba(0, 128, 0, 0.8);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}

.whatsapp-container i {
  color: white;
  font-size: 40px;
}
