:root {
  --primary: #1d3d74;
  --contrast: #ea222a;
  --back-contrast: #f8a71e;
  --gray-color: #818285;
  --light-contrast: #c4cedf;

  --container-width: 85vw;
  --container-width-min: 70vw;

  /* Font Sizes  */
  --font-xtra-large: 45px;
  --font-large: 24px;
  --font-medium: 20px;
  --font-small: 16px;
}

@media screen and (max-width: 400px) {
  :root {
    --primary: #1d3d74;
    --contrast: #ea222a;
    --back-contrast: #f8a71e;
    --gray-color: #818285;
    --light-contrast: #c4cedf;
    --container-width: 100vw;
    --container-width-min: 100vw;
    /* Font Sizes  */
    --font-xtra-large: 35px;
    --font-large: 24px;
    --font-medium: 20px;
    --font-small: 16px;
  }
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  /* background-color: var(--back-contrast); */
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  min-height: 100vh;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.bottom-of-navbar {
  display: none;
}

.navbar {
  padding: 15px 0px;
  position: sticky;
  top: 0;
  letter-spacing: 0.4px;
  font-weight: 500;
  color: var(--gray-color);
  background-color: #fff;
  z-index: 3;
}

.navbar>ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: auto;

  a {
    width: 50%;
  }
}

.navbar>ul>li {
  position: relative;
  text-transform: uppercase;
}

.navbar>ul>li:last-child {
  display: none;
}

.navbar .sublinks {
  width: 200px;
  display: none;
  position: absolute;
  color: black;
  font-size: 13px;
  margin: auto;
  background-color: #fff;
  padding: 20px;
  font-weight: normal !important;
  line-height: 32px;
  transition: display ease-in 2s;
}

.navbar .sublinks>ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 0;
  margin: 0;
  border-top: 2px solid var(--primary);
}

.sublinks>ul>li {
  width: 100%;
  padding: 5px;
}

.sublinks>ul>li:hover {
  cursor: pointer;
  background: #e1e1e1;
}

.navbar>ul>li:hover>div.sublinks {
  display: block;
}

.sublinks>ul>li {
  text-align: left;
}

.navbar>ul>li:first-child {
  flex: 3;
  text-align: left;
}

.navbar>ul>li {
  flex: 1;
  text-align: center;
  font-size: var(--font-small);
}

.navbar>ul>li>span {
  cursor: pointer;
}

.navbar>ul>li.active>span {
  color: var(--primary);
  font-weight: 600;
}

.navbar>ul>li:hover>span {
  color: var(--primary);
}

.navbar .logo>img {
  height: 40px;
}

.carousel {
  position: relative;
  height: 750px;
  overflow: hidden;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.about-carousal {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;

  .carousel-content {
    display: flex;
    width: 100%;

    h1 {
      font-size: 5rem;
    }
  }
}

.carousel::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background: linear-gradient(to right, rgb(0 0 70 / 38%), rgb(28 69 224 / 11%));
}

.carousel>.carousel-content {
  max-width: var(--container-width-min);
  padding-block: 20px;
  margin: auto;
  display: flex;
  flex-direction: column;
  height: inherit;
  justify-content: center;
  align-items: start;
  z-index: 2;
  position: relative;
  color: white;
}

.carousel>.carousel-content>div:first-child {
  padding-block-end: 160px;
  font-size: 24px;
}

.carousel>.carousel-content>div:nth-child(2) {
  padding-block-end: 160px;
  font-size: 36px;
}

/* Video Intro Section  */

.video-intro {
  max-height: 100%;
}

.video-intro>ul {
  display: flex;

  flex-direction: row;
}

.video-intro>ul>li {
  flex: 1;
  max-width: 50%;
  background-color: #fff;
}

.video-intro>ul>li>img {
  width: 100%;
  height: 100%;
}

.video-intro>ul>li:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
  color: #fff;
  height: inherit;
  padding-inline: 40px;
}

.video-intro>ul>li>div>h4 {
  font-size: 30px;
}

.video-intro>ul>li:last-child>div>ul {
  display: flex;
  flex-direction: row;
  padding-block: 30px;
  font-size: 16px;
  line-height: 25px;
}

.video-intro>ul>li:last-child>div>ul>li>h5 {
  font-size: 18px;
  padding-block-end: 20px;
  font-weight: normal;
}

.journey-intro {
  /* max-width: var(--container-width); */
  margin: auto;
  background-color: #fff;

  div h2 {
    font-size: 30px;
    letter-spacing: 2px;
    text-align: start;
    color: #1d3d74;
  }
}

.journey-intro>ul {
  display: flex;
  flex-direction: row;
  gap: 70px;
  align-items: center;
  justify-content: center;
  height: inherit;
}

.journey-intro>ul>li {
  flex: 1;
  height: fit-content;
  padding-left: 70px;
}

.journey-intro>ul>li:last-child {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.journey-intro>ul>li>img {
  width: 30vw;
  border-radius: 5px;
}

.journey-intro div {
  display: flex;
  flex-direction: column;
  /* background-color: blue; */
  padding-top: 40px;
  justify-content: center;
  align-items: center;
  height: inherit;
}

.journey-intro div>h1 {
  font-size: var(--font-xtra-large);
  text-transform: uppercase;
  padding-block: 20px 50px;
  text-align: center;
}

.journey-content {
  text-align: justify;
}

.journey-content>p:nth-child(odd) {
  font-weight: normal;
  font-size: var(--font-small);
}

.journey-content>p:nth-child(even) {
  font-weight: bold;
  padding-block: 20px 10px;
  font-size: var(--font-medium);
}

.about-journey-content>div>p {
  font-size: 15px;
  text-align: justify;
  padding-top: 1vw;
}

.journey-content {
  text-align: justify;
}

.about-intro {
  width: 90%;
  border-radius: 10px;
  background-color: #f4f4f4;
  display: flex;
  margin: 0 auto;
  position: relative;
  top: -150px;
  z-index: 2;
  flex-direction: column;
  padding: 30px;
  gap: 50px;
  justify-content: flex-end;
  align-items: center;

  .content {
    /* background-color: red; */
    display: flex;
    gap: 10px;
    flex-direction: row;

    .contentimg {
      display: flex;
      align-items: center;

      img {
        width: 90%;
      }
    }
  }

  h1 {
    font-size: 30px;
    color: #1d3d74;
  }

  div {
    display: flex;
    flex-direction: column;
    /* background-color: yellow; */
    gap: 10px;
    justify-content: center;

    p {
      font-size: 16px;
      line-height: 25px;
      /* width: 50%; */
      /* text-align: right; */
    }
  }
}

.Aboutsgmr {
  max-height: 350px;
}

.about-journey {
  height: fit-content;
  display: flex;
  padding: 40px 50px;
  flex-direction: column-reverse;
  box-sizing: border-box;
  /* background-color: #0057ee; */
  justify-content: flex-start;

  ul {
    box-sizing: border-box;
    gap: 0;
    justify-content: space-between;

    li {
      width: 80%;
      padding-left: 0;

      /* background-color: red; */
      .about-journey-content {
        padding: 30px 0;
        width: 95%;
        align-items: flex-start;

        h1 {
          font-size: 30px;
          /* background-color: yellow; */
          padding-block: 0;
          color: #1d3d74;
        }

        div {
          height: fit-content;
          padding-top: 20px;
        }
      }
    }

    li:last-child {
      width: 50%;
      height: inherit;
      display: flex;
      /* background-color: black; */
      align-items: center;
      justify-content: center;

      img {
        width: 100%;
        height: 20%;
      }
    }
  }
}

.our-management {
  /* height: 80vh; */
  margin: auto;
  padding-block: 40px;
  color: #fff;
  text-align: center;
  background-size: 100vw 100%;
  background-position: center;
  position: relative;
}

.our-management::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(to right,
      rgb(0, 0, 70, 0.4),
      rgb(28, 181, 224, 0.6));
  height: 100%;
  width: 100%;
  z-index: 1;
}

.our-management-content {
  align-items: center;
  padding: 20px;
  max-width: var(--container-width-min);
  margin: auto;
  z-index: 2;
  color: #fff;
  position: relative;
}

.our-management-content>ul {
  display: flex;

  margin-block: 40px;
  align-items: center;
}

.our-management-content>ul>li {
  flex: 1;
}

.our-management-content>ul>li:first-child>ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.our-management-content>ul>li:first-child>ul>li {
  width: calc(100% / 2);
  padding: 5px;
}

.our-team-card {
  background-color: white;
  color: #000;
  padding: 15px 30px;
  border-radius: 20px;
  min-height: 35vh;

  h3 {
    color: #1d3d74;
    font-weight: 500;
    font-size: 25px;
  }

  h4 {
    color: #1d3d74;
    font-weight: normal;
  }
}

.ceo-image {
  height: 300px;
  width: 400px;
  border-radius: 20px;
}

.home-box-Link {
  /* padding-top: 2vw; */
  /* background: #1d3d74; */
  margin-top: 1rem;
  font-size: 18px;
  padding: 0px 10px;
  color: #1d3d74;
  /* border-radius: 10px; */
  border-left: solid 2px #1d3d74;
}

.home-box-Link:hover {
  color: #505eff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  border-left: 8px solid #0057ee;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
  /* font-weight: bold; */
}

/* jhhvhvvvhvhvvhgvhvvhvhvhvhvhvjhvjhvhjvhjvvhvvghhvvhvhgv */

.research-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Vision-icon {
  width: 50px;
}

.company-info {
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.info-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 10px;
  min-height: 55vh;
  box-shadow: 0px 0px 13px -1px #1d3d7483 inset;

  h1 {
    background-color: #0057ee40;
    padding: 25px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30%;
  }

  h2 {
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    color: #1d3d74;
  }

  p {
    width: 90%;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .company-info {
    flex-direction: column;
  }

  .about-carousal {
    & .carousel-content {
      h1 {
        font-size: 3rem;
      }
    }
  }

  .Aboutsgmr {
    max-height: 80vh;
  }

  .info-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
    min-height: 55vh;
    box-shadow: 0px 0px 13px -1px #1d3d7483 inset;
  }

  .about-intro {
    .content {
      /* background-color: red; */
      display: flex;
      flex-direction: column;
      gap: 10px;
      /* flex-direction: row; */
    }
  }

  .about-intro {
    h1 {
      font-size: 25px;
      color: #1d3d74;
    }
  }

  .about-intro {
    & div {
      p {
        font-size: 15px;
        line-height: 25px;
        /* width: 50%; */
        /* text-align: right; */
      }
    }
  }

  .about-intro {
    & .content {
      & .contentimg {
        img {
          width: 90%;
          display: none;
        }
      }
    }
  }

  .info-section {
    width: 100%;
  }

  .our-team-card>h3 {
    display: flex;
    text-align: center;
  }

  .about-journey {
    height: fit-content;
    display: flex;
    padding: 0px 0px;
    flex-direction: column-reverse;
    box-sizing: border-box;
    /* background-color: #0057ee; */
    justify-content: flex-start;
  }

  .about-journey {
    & ul {
      & li {
        .about-journey-content {
          padding: 0px 0;
          width: 100%;
          align-items: flex-start;
        }
      }
    }
  }

  .about-journey {
    & ul {
      li {
        width: 100%;
        padding-left: 0;
        /* background-color: red; */
      }
    }
  }

  .about-journey {
    & ul {
      & li {
        & .about-journey-content {
          div {
            height: fit-content;
            padding-top: 0px;
          }
        }
      }
    }
  }

  .about-journey {
    & ul {
      & li:last-child {
        img {
          width: 100%;
          height: 20%;
          display: none;
        }
      }
    }
  }

  .our-management-content>ul>li:first-child>ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .our-team-card {
    background-color: white;
    color: #000;
    padding: 15px 30px;
    border-radius: 20px;
    width: 100%;
    min-height: 35vh;
  }

  .our-management-content-2 {
    display: flex;
    flex-direction: column;
    text-align: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .our-management-content>ul>li:first-child>ul>li {
    width: 100%;
    padding: 5px;
  }
}

/* jhhvhvvvhvhvvhgvhvvhvhvhvhvhvjhvjhvhjvhjvvhvvghhvvhvhgv */

.journey-content a {
  color: #1d3d74;
  text-transform: uppercase;
  margin: 50px 20px;
  padding: 5px;
  border-left: 5px solid var(--primary);
  text-decoration: none;
  font-size: var(--font-medium);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Services Option here  */
.services {
  box-sizing: border-box;
  padding: 5vw 70px;
  margin: 0 auto;
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services>.heading {
  text-align: center;
}

.services>.heading>h1 {
  font-size: var(--font-xtra-large);
  /* padding-block: 20px; */
  text-transform: uppercase;
  background-color: #fff;
  color: #1d3d74;
  font-weight: 600;
}

.services>.heading>p {
  font-size: var(--font-medium);
  max-width: 500px;
  margin: auto;
  text-align: center;
}

.services ul {
  margin-block: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px 90px;
}

.services ul>li {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 20px;
}

.services ul>li>div {
  padding: 30px 40px;
  border-radius: 20px;
  display: flex;
  height: 400px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
  box-shadow: 0px 0px 13px -1px #1d3d7483 inset;
}

.video-intro-content>ul>li {
  text-align: justify;
}

.services .title {
  font-size: var(--font-large);
  margin-block: 20px;
  color: #1d3d74;
  font-weight: bold;
}

.services .description {
  text-align: justify;
  width: 90%;
  font-size: 16px;
  line-height: 25px;
}

.icon-box {
  padding: 15px;
  border-radius: 10px;
  background-color: #1d3d742d;
  font-size: 40px;
  color: #1d3d74;
}

.services svg:first-child {
  fill: var(--primary);
}

.services svg:nth-child(2) {
  fill: var(--contrast);
}

.services svg:nth-child(3) {
  fill: var(--back-contrast);
}

.services svg:nth-child(4) {
  fill: limegreen;
}

.products {
  padding-top: 1vw;
  background-size: 700px;
  transform: translateX(180deg);
  background-position: right;
  background-repeat: no-repeat !important;
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: inherit;
}

.products-kite {
  display: flex;
  flex-direction: row;
  justify-content: start;
  /* max-width: var(--container-width); */
  /* margin: auto; */
  /* margin-top: 100px; */
}

.products-kite>ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 90%;
  margin: 100px auto;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
}

.products-kite>ul>li {
  display: flex;
  width: 40%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(100, 100, 111, 0.7) 0px 7px 29px 0px;
  border-radius: 10px;
  margin: 5px;
}

.products-kite>ul>li:nth-child(odd) {
  min-height: 300px;
  /* width: 400px; */
  background-color: var(--primary);
  color: #fff;

  a {
    /* background-color: red; */
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 10px;
    border-left: 3px solid white;
  }

  a:hover {
    background-color: #c4cedf89;
  }
}

.products-kite>ul>li:nth-child(even) {
  min-height: 300px;
  /* width: 400px; */
  background-color: #fff;
  color: var(--primary);

  a {
    /* background-color: red; */
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 10px;
    border-left: 3px solid #1d3d74;
  }

  a:hover {
    background-color: #f4f4f4;
  }
}

.products div>h1 {
  font-size: 30px;
  letter-spacing: 1px;
  color: #1d3d74;
  text-transform: uppercase;
  padding-block: 20px 50px;
  text-align: center;
}

.product-content>p:nth-child(2) {
  /* font-weight: 500; */
  font-size: var(--font-medium);
  margin-block-end: 20px;
  letter-spacing: 1px;
  text-align: justify;
}

.product-content>p:nth-child(3) {
  font-size: var(--font-medium);
  text-align: justify;
  letter-spacing: 1px;
}

.product-content a {
  color: black;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #c4cedf;
  border-left: 5px solid var(--primary);
  text-decoration: none;
  font-size: var(--font-medium);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.products>ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: inherit;
  max-width: var(--container-width);
  margin: auto;
}

.products>ul>li {
  flex: 1;
  height: 80vh;
}

.cta {
  margin-block-start: 20px;
  background-color: var(--light-contrast);
  padding-block: 60px;
}

.cta>ul {
  max-width: var(--container-width);
  margin: auto;
  padding-block: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.cta>ul:first-child>li {
  margin-inline: 10px;
}

.cta button {
  background-color: var(--primary);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-size: var(--font-small);
}

.cta ul:nth-child(2) {
  width: inherit;
  background-color: var(--primary);
  color: #fff;
  max-width: var(--container-width-min);
  border-radius: 20px;
  margin-top: 20px;
  padding: 0px;
}

.cta>ul:nth-child(2)>li {
  flex: 1;
  min-width: inherit;
}

.cta>ul:nth-child(2)>li:nth-child(2)>img {
  width: 100%;
  height: auto;
  border-radius: 0px 10px 10px 0px;
}

.cta>ul:nth-child(2)>li:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {


  width: 100%;
  background-color: #eceaea;
  padding: 30px 30px;

  .copyright {
    font-size: 12px;
    margin-top: 30px;
  }

  ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    .title-footer {
      display: flex;
      height: 100%;
      flex-direction: column;

      ul {
        margin: 20px 0;
        display: flex;
        gap: 0;

        li {
          font-size: 30px;
          display: flex;
          flex-direction: row;
          gap: 15px;
          color: #1d3d74;
        }
      }

      h1 {
        color: #1d3d74;
      }
    }

    .footer-item {
      height: 100%;
      color: #1d3d74;
      display: flex;
      flex-direction: column;
      gap: 20px;

      h4 {
        font-size: 25px;
      }

      ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        justify-content: flex-start;
        color: #000;
      }
    }

    .footer-address {
      display: flex;
      flex-direction: column;
      gap: 20px;

      h4 {
        font-size: 25px;
        color: #1d3d74;
      }


      div {
        display: flex;
        flex-direction: column;
        gap: 20px;

        p {
          font-size: 16px;
          display: flex;
          flex-direction: row;
          gap: 10px;
          justify-content: center;
          align-items: center;



          strong {
            color: #1d3d74;
          }

        }
      }
    }

  .footer-contact>p{
    display: flex;
    align-items: center;
  }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 20px;

      h4 {
        font-size: 25px;
        color: #1d3d74;
      }

      div {
        display: flex;
        flex-direction: column;
        gap: 10px;

        p {
          font-size: 16px;
          display: flex;
          flex-direction: row;

          gap: 10px;

          align-items: center;

          strong {
            color: #1d3d74;
          }
        }
      }
    }
  }
}



.copyright-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}



.header-section {
  height: 60vh;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 44px;
}



.header-section::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: linear-gradient(to right, rgb(0 0 70 / 38%), rgb(28 69 224 / 11%));
  color: #fff;
  z-index: 1;
}



.header-content {
  position: relative;
  width: var(--container-width);
  margin: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  height: 40vh;
}


.header-section h1 {
  text-transform: uppercase;
  font-size: 80px;
  color: #fff;
}

.header-section p {
  color: #fff;
  font-size: 30px;
  letter-spacing: 2px;
}

/* Vision Section CSS */
.vision {
  margin-top: 3vh;
}

.vision>ul {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  display: flex;
  max-width: 80vw;
  height: 83vh;
  margin: auto;
  flex-direction: row;
  justify-content: center;
  border-radius: 20px;
  background-size: 40% 83vh;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.vision>ul::before {
  content: "";
  position: absolute;
  background: linear-gradient(to right,
      rgb(41, 72, 255, 0.1),
      rgb(57, 106, 252));
  height: 200px;
  width: 100px;
  border-radius: 20px 0px 0px 20px;
  top: 0;
  left: 0px;
  height: 100%;
  width: 40%;
  z-index: -1;
}

.our-management-content-2 {
  display: flex;
  flex-direction: row;
  text-align: justify;
}

.Globalpre>ul>li>p {
  padding-bottom: 10px;
  display: list-item;
  /* list-style-type: circle; */
}

.Globalpre {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
}

.vision>ul>li {
  flex: 1;
}

.vision>ul>li:nth-child(odd) {
  flex: 1;
  padding-inline: 40px;
}

.vision>ul>li:first-child>img {
  width: 100%;
  border-radius: 20px 0px 0px 20px;
  max-height: 83vh;
  z-index: 2;
}

.vision>ul>li:nth-child(2)>ul,
.vision>ul>li:nth-child(3)>ul {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 0px;
  margin: 0px;
}

.vision>ul>li:nth-child(3)>ul {
  font-size: 1vw;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: start;
  padding: 0px;
  margin: 0px;
}

.vision>ul>li:nth-child(2)>ul img {
  height: 50px;
}

.core_strengths {
  padding-left: 3vw;
  padding-top: 0.5vw;
}

.Core_Strengths {
  padding: 1vw;
}

.vision>ul>li:nth-child(2)>ul>li {}

.vis-card {
  text-align: justify;
  width: 500px;
  min-height: 100px;
}

.vis-card>h4 {
  margin-block: 10px;
  font-size: 30px;
}

.vis-card.vision>h4 {
  color: #ff451ce3;
}

.vis-card.value>h4 {
  color: #505eff;
}

.vis-card.mission>h4 {
  color: var(--contrast);
}

.table-component {
  max-width: var(--container-width-min);
  margin: auto;
  display: flex;
  justify-content: center;
}

table {
  width: 100%;
  margin-block: 50px;
}

table,
tr,
td,
th {
  /* border: 1px solid gray; */
  border-collapse: collapse;
  padding: 10px;
}

td.category {
  color: #1d3d74;
  background-color: #d5d4d4;
  padding: 10px;
  text-align: center;
}

th {
  color: white;
  background-color: var(--primary);
  text-align: left;
  padding: 20px 2px;

  font-size: 20px;
}

th,
.address {
  max-width: var(--container-width);
  margin: auto;
  margin-bottom: 30px;
}

.address>ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}

.address>ul>li {
  flex: 0 0 50%;
  padding: 10px;
  box-sizing: border-box;
  /* border: #1d3d74 1px solid; */
  border-radius: 10px;
  box-shadow: 0px 0px 13px -1px #1d3d7483 inset;
}

.address>ul>li>div {
  /* border: 1px solid green; */
  padding: 20px;
  width: inherit;
}

.address-card {
  padding: 10px;
}

.address-icon {
  padding-right: 1vw;
}

.address-card>h4 {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  color: #1d3d74;
  /* align-items: center; */
}

.address-card .country {
  font-size: 15px;
  color: var(--primary);
  padding: 0px;
  margin: auto;
}

.address>h3 {
  font-size: 30px;
  text-transform: uppercase;
  margin-block: 20px;
  color: #1d3d74;
}

.address-card .email {
  color: var(--primary);
}

.address-card .phone {
  color: var(--contrast);
  margin-bottom: 10px;
}

.address-card .address {
  font-size: var(--font-small);
  letter-spacing: 0.5px;
  margin-block: 2px;
}

.rnd {
  background-color: #f4f4f4;
  padding: 30px;
  width: 80%;
  margin: 0 auto;
  position: relative;
  top: -200px;
  z-index: 2;
  border-radius: 10px;
  /* max-height:190vh; */

  ul {
    display: flex;
    flex-direction: column;
    gap: 30px;

    li {
      display: flex;
      flex-direction: column;
      gap: 15px;

      p {
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 30px;
      }
    }
  }
}

.research-img {
  width: 100%;
  border-radius: 10px;
}

.contact-form {
  ul {
    display: flex;
    padding: 5vh 5vw;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

    li {
      width: 50%;
      display: flex;
      height: 90vh;
      /* background-color: red; */
      align-items: center;
      justify-content: center;
      background-size: cover;

      img {
        width: 80%;
      }

      form {
        background-color: #a9aeec4b;
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        border-radius: 10px;

        h1 {
          color: #1d3d74;
        }

        input {
          padding: 20px;
          border-radius: 10px;
          background-color: #c4cedf;
        }

        button {
          padding: 15px 50px;
          color: white;
          font-weight: bold;
          text-transform: uppercase;
          background-color: #1d3d74;
          border-radius: 10px;
          border: none;
          outline: none;
          letter-spacing: 1px;
        }
      }
    }
  }
}

.form-contact {
  box-sizing: border-box;

  ul {
    width: 99vw;
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;

    li {
      width: calc(100% / 2);
      box-sizing: border-box;

      form {
        padding: 20px;
        display: flex;
        flex-direction: column;
        background-color: #a9aeec4b;
        gap: 10px;
        border-radius: 10px;
        justify-content: center;
        box-sizing: border-box;
        align-items: center;

        h3 {
          font-size: 30px;
          text-transform: uppercase;
          color: #1d3d74;
        }

        input {
          background-color: #c4cedf;
          padding: 20px;
          border-radius: 10px;
        }

        button {
          padding: 15px 30px;
          color: white;
          font-weight: bold;
          text-transform: uppercase;
          background-color: #1d3d74;
          border-radius: 10px;
          border: none;
          outline: none;
          letter-spacing: 1px;
          width: 90%;
        }
      }
    }
  }
}

/* .form-contact > form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */

/* form {
  display: flex;
  padding-inline: 20px;
  padding-block: 30px;
  flex-direction: column;
  align-self: center;
  justify-content: center;
}
.form div {
  height: inherit;
} */
.map {
  height: 100%;
}

iframe {
  width: 100%;
  min-height: 550px;
  border-radius: 10px;
  /* height: 440px; */
}

.input {
  border-radius: 0px;
  vertical-align: middle;
  display: block;
  width: 90%;
  color: #999999;
  padding: 10px 20px;
  font-weight: normal;
  background-color: #fff;
  text-transform: inherit;
  border: 1px solid #e1eeff;
  font-size: 14px;
  outline: none;
  line-height: inherit;
  margin-block: 10px;
}

.Globalpre>h2 {
  padding: 2vw;
  color: #1d3d74;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 35px;
}

.Globalpre>ul {
  padding-left: 2vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 2vw;
  font-size: 16px;
  /* text-align: justify; */
  /* padding-right: 2vw; */
}

.country-map {
  margin: 20px 0px;
}

.Globalpre>.country-map>ul {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 18px;
  border-radius: 10px;
  background: linear-gradient(to right,
      rgb(0, 0, 70, 0.4),
      rgb(28, 181, 224, 0.6));

  .county-name {
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 2vw;

    li {
      width: 27%;
      padding: 15px 20px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0px 0px 13px -1px #1d3d7483 inset;


    }

    /* background-color: #000; */
  }

  li {
    width: 50%;
    /* padding: 20px; */

    h2 {
      color: #1d3d74;
      font-size: 25px;
      letter-spacing: 1px;
      font-weight: 500;
      text-transform: uppercase;
    }

    img {
      width: 100%;
      border-radius: 10px;
    }
  }
}

.Globalpre>ul>li>p {
  padding-bottom: 10px;
  display: list-item;
  letter-spacing: 1px;
  /* list-style-type: circle; */

  strong {
    color: #1d3d74;
  }
}

.county-name-2 {
  padding-top: 2vw;
  padding-right: 30vw;
}

.county-name-2>h2 {
  color: #f8a71e;
}

.county-name-2>ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4vw;
}

.county-name>h2 {
  color: #1d3d74;
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

.form-btn {
  padding: 10px 20px;
}

.form-btn {
  outline: none;
  border: none;
  display: block;
  width: 100%;
  margin: auto;
  margin-top: 20px;
  background-color: var(--primary);
  color: #fff;
  font-weight: normal;
  border-radius: 20px;
  text-align: center;
}

.media {
  max-width: var(--container-width);
  margin: auto;
  padding: 30px;
}

.media>ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.media>ul>li {
  align-items: center;
  flex: 0 0 30%;
}

.media-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  min-height: 300px;
}

.media-card>.media-content {
  height: 150px;
  padding: 30px;
}

.media-card>h1 {
  font-size: var(--font-medium);
}

.media-card>p {
  font-size: var(--font-small);
}

.cta-text {
  font-size: 24px;
  text-align: center;
  text-align: justify;
  margin-inline: 10px;
}

.cta>ul:nth-child(2)>ul>li:first-child {
  padding: 20px;
}

.gallary-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  padding: 30px 0px;


  h1 {
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1d3d74;
    font-weight: bold;

  }

  .gallary-cards {
    width: 90%;
    /* background-color: blue; */
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    padding: 20px 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 10px;
    gap: 2vw;


    .gallary-card {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #c4cedf;
      padding: 20px 20px;
      border-radius: 20px;
      box-shadow: 0px 0px 13px -1px #1d3d7483 inset;


      width: 30%;

      img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0px 0px 13px -1px #1d3d7483 inset;
      }
    }

  }
}

/* Mobile Screen Css  */

@media (max-width: 768px) {

  .gallary-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    padding: 30px 0px;
  }

  .gallary-container {
    .gallary-cards {
      width: 100%;
      /* background-color: blue; */
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      padding: 20px 20px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      border-radius: 10px;
      gap: 2vh;
    }
  }

  .gallary-container {
    & .gallary-cards {
      .gallary-card {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #c4cedf;
        padding: 20px 20px;
        border-radius: 20px;
        box-shadow: 0px 0px 13px -1px #1d3d7483 inset;
        width: 100%;
      }
    }
  }

  .Globalpre>ul>li>p {
    padding-bottom: 10px;
    display: list-item;
    letter-spacing: 1px;
    line-height: 25px;

  }

  .Globalpre>.country-map>ul {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 18px;
    border-radius: 10px;
    background: linear-gradient(to right, rgb(0, 0, 70, 0.4), rgb(28, 181, 224, 0.6));
  }

  .Globalpre>.country-map>ul {
    li {
      width: 100%;
      /* padding: 20px; */
    }
  }

  .Globalpre>.country-map>ul {
    .county-name {
      padding: 10px;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      width: 100%;
      gap: 2vw;
    }
  }

  .Globalpre>.country-map>ul {
    & li {
      h2 {
        color: #1d3d74;
        font-size: 16px;
        letter-spacing: 1px;
        font-weight: 500;
        text-transform: uppercase;
      }
    }
  }

  .Globalpre>.country-map>ul {
    & .county-name {
      li {
        width: 100%;
        padding: 15px 20px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0px 0px 13px -1px #1d3d7483 inset;
      }
    }
  }

  .rnd {
    background-color: #f4f4f4;
    padding: 30px;
    width: 95%;
    margin: 0 auto;
    position: relative;
    top: -200px;
    z-index: 2;
    border-radius: 10px;
    /* max-height: 190vh; */
  }

  .products {
    padding-top: 1vw;
    background-size: 0px;
    transform: translateX(180deg);
    background-position: center;
    /* opacity: 0.5; */
    background-repeat: no-repeat !important;
  }

  .products>ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-bottom: 10vw 0;
    height: inherit;
    max-width: var(--container-width);
    margin: auto;
  }

  .product-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: center;
    width: 100vw;
    padding-top: 70%;
    /* position: relative; */
    align-items: center;
    background: white;
    /* z-index: 176; */
    /* height: inherit; */
  }

  .products div>h1 {
    font-size: 25px;
    width: 100vw;
    letter-spacing: 1px;
    color: #1d3d74;
    text-transform: uppercase;
    padding-block: 0px 15px;
    text-align: center;
  }

  .product-content>p:nth-child(2) {
    /* font-weight: 500; */
    font-size: var(--font-medium);
    margin-block-end: 20px;
    letter-spacing: 1px;
    text-align: justify;
  }

  .product-content>p:nth-child(3) {
    font-size: var(--font-medium);
    text-align: justify;
    letter-spacing: 1px;
  }

  .products-kite>ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-top: 287px;
    gap: 10px;
    /* height: 120%; */
    flex-wrap: wrap;
    /* z-index: -1; */
    align-items: center;
    /* margin-top: 30px; */
    /* position: relative; */
    top: 180px;
  }

  .products-kite>ul>li:nth-child(odd) {
    min-height: 100px;
    /* width: 400px; */
    background-color: var(--primary);
    color: #fff;
  }

  .products-kite>ul>li {
    display: flex;
    width: 95%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(100, 100, 111, 0.7) 0px 7px 29px 0px;
    border-radius: 10px;
    margin: 5px;
  }

  .products-kite>ul>li:nth-child(even) {
    min-height: 100px;
    /* width: 400px; */
    background-color: #fff;
    color: var(--primary);
  }

  .form-contact {
    ul {
      width: 100%;
      display: flex;
      margin: 0 auto;
      flex-direction: column;
      gap: 10px;
      justify-content: space-between;
      padding: 10px;
      box-sizing: border-box;

      li {
        width: 100%;
      }
    }
  }

  th,
  .address {
    max-width: var(--container-width);
    margin: auto;
    margin-bottom: 30px;
    padding: 10px;
  }

  .navbar {
    background-color: #333;
    width: 100vw;

    position: relative;
    padding: 10px 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    position: sticky !important;
    top: 0;
  }

  .navbar .logo>img {
    height: 40px;
  }

  .navbar>ul>li {
    display: none;
  }

  .navbar>ul>li:first-child,
  .navbar>ul>li:last-child {
    display: block;
  }

  .navbar>ul>li:last-child {
    text-align: right;
  }

  .navbar>ul>li>svg {
    height: 30px;
    width: 30px;
  }

  .navbar-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Hamburger icon */
  .hamburger-icon {
    width: 30px;
    height: 30px;
    color: white;
    background-color: transparent;
    /* No background */
    border: none;
    /* No border */
    outline: none;
    /* No outline */
    cursor: pointer;
  }

  /* Remove default browser focus and active states for hamburger icon */
  .hamburger-icon:focus,
  .hamburger-icon:active {
    background-color: transparent;
    /* No background on click or focus */
    outline: none;
    /* Remove any outline when focused */
  }

  /* Mobile Menu Styles */
  .mobile-menu {
    background-color: #222;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .our-management-content-2 {
    display: flex;
    flex-direction: column;
    text-align: justify;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu li {
    padding: 10px;
    border-bottom: 1px solid #444;
  }

  .mobile-menu .nav-name {
    color: white;
    font-size: 18px;
    cursor: pointer;
  }

  .mobile-menu .nav-sublinks {
    padding-left: 20px;
    display: none;
  }

  .mobile-menu .nav-sublinks li {
    padding: 10px 0;
    font-size: 16px;
  }

  .mobile-menu .nav-sublinks li a {
    color: #ddd;
    text-decoration: none;
  }

  .mobile-menu .nav-sublinks li a:hover {
    color: #fff;
    /* Change color on hover */
  }

  /* Show the sublinks when a menu is open */
  .navbar-menu li .sublinks,
  .mobile-menu li .nav-sublinks {
    display: block;
  }

  .mobile-menu .nav-name:hover {
    color: white;
    /* Change color on hover for main dropdown items */
  }

  /* Color change for selected option in the dropdown */
  .mobile-menu li a:visited,
  .mobile-menu li a:active {
    color: white;
    /* Selected item color */
  }

  /* Style for open/closed menus */
  .mobile-menu ul {
    padding: 10px 0;
  }

  .mobile-menu .nav-name {
    font-size: 20px;
    font-weight: bold;
  }

  .mobile-menu .nav-sublinks {
    display: none;
    /* Initially hidden */
  }

  /* When a menu is clicked, display its sublinks */
  .mobile-menu .nav-sublinks.open {
    display: block;
  }

  .journey-intro>ul {
    display: flex;
    flex-direction: column;
    /* background: red; */
    gap: 0px;
    align-items: center;
    padding: 20px;
    justify-content: center;
    height: inherit;

    li {
      padding: 0;
      height: 100%;
    }
  }

  .journey-content a {
    color: #1d3d74;
    width: 100%;
    margin: 20px 0px;
    padding: 5px;
    border-left: 5px solid var(--primary);
    text-decoration: none;
    font-size: var(--font-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
  }

  .journey-intro>ul>li>img {
    width: 100%;
    border-radius: 5px;
  }

  .video-intro>ul {
    display: flex;
    flex-direction: column-reverse;
  }

  .video-intro>ul>li {
    /* flex: 1; */
    max-width: 100%;
    background-color: #fff;
  }

  .video-intro>ul>li:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: #fff;
    height: inherit;
    padding-inline: 20px;
  }

  .services>.heading>h1 {
    /* font-size: var(--font-xtra-large); */
    /* padding-block: 20px; */
    text-transform: uppercase;
    background-color: #fff;
    color: #1d3d74;
    font-size: 30px;
    width: 100%;
    font-weight: 600;
  }

  .services {
    box-sizing: border-box;
    padding: 10vw 20px;
    /* margin: 0 auto; */
    background-color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .services ul {
    margin-block: 20px;
    display: flex;
    flex-direction: column;
    padding: 0 0;
    gap: 20px;

    li {
      padding: 0;
    }
  }

  .services ul>li>div {
    padding: 20px 0px;
    border-radius: 20px;
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
    box-shadow: 0px 0px 13px -1px #1d3d7483 inset;
  }

  .services .title {
    font-size: var(--font-large);
    margin-block: 20px;
    color: #1d3d74;
    text-align: center;
    font-weight: bold;
  }

  .video-intro>ul>li>div>h4 {
    font-size: 30px;
    margin-top: 20px;
  }

  .carousel {
    background-size: cover;
    background-position: center;
    height: 300px;
  }

  .carousel-content {
    text-align: center;
    padding: 20px;
  }

  .carousel-content h1 {
    font-size: 1.9rem;
  }

  .line1 {
    font-size: 1rem;
  }

  .carousel>.carousel-content>div:nth-child(2) {
    padding-block-end: 0px;
    font-size: 36px;
    display: flex;
    justify-content: center;
  }

  .carousel>.carousel-content>div:first-child {
    padding-block-end: 0px;
    font-size: 24px;
    display: flex;
    justify-content: center;
  }

  .carousel>.carousel-content {
    max-width: var(--container-width-min);
    padding-block: 20px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: inherit;
    justify-content: center;
    align-items: start;
    z-index: 2;
    position: relative;
    color: white;
  }

  footer {
    padding: 30px;

    ul {
      display: flex;
      flex-direction: column;
      gap: 15px;

      .title-footer {
        h1 {
          font-size: 30px;
        }

        ul {
          flex-direction: row;
          gap: 10px;
        }
      }

      .footer-item {
        height: 100%;
        color: #1d3d74;
        display: flex;
        flex-direction: column;
        gap: 10px;

        ul {
          gap: 5px;
        }
      }

      .footer-address {
        display: flex;
        flex-direction: column;
        gap: 10px;

        ul {
          gap: 5px;
        }
      }

      .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;

        div {
          gap: 5px;
        }
      }
    }
  }

  .header-section h1 {
    text-transform: uppercase;
    font-size: 35px;
    color: #fff;
  }

  .header-section p {
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
  }

  .header-content {
    position: relative;
    width: var(--container-width);
    margin: auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: 15vh;
    padding: 20px;
  }

  .contact-form {
    & ul {
      li {
        width: 100%;
        display: flex;
        height: 100%;
        /* gap: 38px; */
        /* background-color: red; */
        align-items: center;
        justify-content: center;
        background-size: cover;
      }
    }
  }

  .contact-form {
    ul {
      display: flex;
      gap: 20px;
      padding: 5vh 5vw;
      margin: 0 auto;
      flex-direction: column;
      justify-content: space-around;
      align-items: center;
    }
  }
}

/* General Table Styles */
.api-intermediates-table {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}

.api-intermediates-table table {
  width: 80%;
  border-collapse: collapse;
  font-size: 16px;
}

.api-intermediates-table th {
  padding: 10px;

  /* border: 1px solid #ddd; */
}

.api-intermediates-table th td {
  background-color: #1d3d74;
  color: white;
  font-weight: bold;
}

.category-cell {
  background-color: #c4cedf;
  /* font-weight: bold; */
  text-transform: uppercase;
  color: #1d3d74;
  text-align: center;
}

.product-row:nth-child(even) {
  background-color: #f9f9f9;
}

.product-row:nth-child(odd) {
  background-color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .api-intermediates-table table {
    font-size: 14px;
    border: 1px solid gray;
  }

  .api-intermediates-table th,
  .api-intermediates-table td {
    padding: 8px;
  }

  .api-intermediates-table {
    margin: 10px 0;
  }

  .api-intermediates-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .api-intermediates-table th {
    display: none;
  }

  .api-intermediates-table tr {
    display: block;
    margin-bottom: 10px;
    border: none;
    border: 1px solid gray;
  }

  .api-intermediates-table td:before {
    content: attr(data-label);
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
    color: #333;
  }

  .s-no::before {
    content: "S No:";
  }

  .product-name::before {
    content: "Category & Products:";
  }

  .product-grade::before {
    content: "Pharmacopeial Grade:";
  }

  .cas-no::before {
    content: "CAS No:";
  }
}

/* Global styles for mobile responsiveness */
/* @media only screen and (max-width: 767px) {
  .carousel {
    background-size: cover;
    background-position: center;
    height: 300px; 
  }

  .carousel-content {
    text-align: center;
    padding: 20px;
  }

  .carousel-content h1 {
    font-size: 1.5rem;
  }

  .line1 {
    font-size: 1rem; 
  }

  .Globalpre ul {
    padding: 0;
    margin: 0;
  }

  .Globalpre ul li {
    list-style-type: none;
    margin-bottom: 10px;
  }

  .country-map img,
  .county-name img,
  .county-name-2 img {
    width: 100%;
    height: auto;
  }

  ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    gap: 40px;
  }

  .county-name,
  .county-name-2 {
    padding: 0;
  }

  .Globalpre h2 {
    font-size: 1.2rem;
    margin: 10px 0;
  }

  .country-map,
  .Globalpre div {
    display: block;
    margin-bottom: 20px;
  }

  .country-map ul,
  .Globalpre div ul {
    display: block;
  }
} */









@media(max-width:768px){
  
}