/* ------------------------------
   Font integration
------------------------------ */
/*@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");*/

/* ------------------------------
   CSS Reset
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* Generic placeholder styling for ALL browsers and ALL input types */
::-webkit-input-placeholder {
  /* Chrome, Safari, Opera, Edge Chromium */
  color: black;
  opacity: 1;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: black;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: black;
}

::-ms-input-placeholder {
  /* Microsoft Edge (old versions) */
  color: black;
}

::placeholder {
  /* Modern browsers */
  color: black;
  opacity: 1;
}

/* Apply to ALL input elements */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: black;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: black;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: black;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
  color: black;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  color: black;
  opacity: 1;
}

/* ------------------------------
   CSS Variables / Root Colors
------------------------------ */
:root {
  --primary-dark-green: #153330;
  --primary-skin: #d8b38f;
  --primary-skin-light: #faf6f2;
  --secondary-black-gray: #1d1f20;
  --white: #ffffff;
  --off-white: #fcf9f6;
  --black: #000000;
  --text-gray: #838c90;
  --fakeBtn-gray: #efefef;
}

/* ------------------------------
   Global elements
------------------------------ */
html {
  scroll-behavior: smooth;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

body {
  background-color: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

html,
body {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow-x: hidden !important;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

/* ------------------------------
   button code start here
------------------------------ */
/* button skin */
.btn-skin {
  background-color: var(--primary-skin);
  border: 1px solid var(--primary-skin);
  border-radius: 360px;
  color: var(--secondary-black-gray);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 18px;
  transition: all 0.3s ease;
}

.btn-skin:not([disabled]):hover {
  transition: all 0.3s ease;
  background-color: var(--primary-dark-green);
  border: 1px solid var(--primary-dark-green);
  color: var(--white);
}

/* button skin form */
.btn-skin-form {
  padding: 8px 24px;
}

/* button skin hero */
.btn-skin-hero {
  transition: all 0.3s ease;
}

.btn-skin-hero:hover {
  transition: all 0.3s ease;
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--secondary-black-gray);
}

/* button white */
.btn-white {
  background-color: var(--white);
  border: 1px solid var(--white);
  border-radius: 360px;
  color: var(--secondary-black-gray);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.btn-white:hover {
  transition: all 0.3s ease;
  background-color: var(--primary-skin);
  border: 1px solid var(--primary-skin);
}

/* button darkgreen */
.btn-darkGreen {
  background-color: var(--primary-dark-green);
  border: 1px solid var(--primary-dark-green);
  border-radius: 360px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 24px;
  transition: all 0.3s ease;
}

.btn-darkGreen:hover {
  transition: all 0.3s ease;
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--secondary-black-gray);
}

/* ------------------------------
   button code end here
------------------------------ */
/* ------------------------------
   tabs code start here
------------------------------ */
.our-project {
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  padding: 80px 0;
  flex-direction: column-reverse;
  align-items: center;
  position: relative;
  padding-bottom: 0;
  background: linear-gradient(180deg,
      var(--white) 1.85%,
      var(--primary-skin-light) 97.46%);
  margin-bottom: 230px;

  .container {
    position: relative;
    z-index: 2;
  }

  &::before {
    content: '';
    height: 140px;
    width: 100%;
    background: linear-gradient(5deg, #00000000 0 50%, #fbf7f4 50% 100%);
    position: absolute;
    z-index: 2;
    background-color: rgba(255, 0, 0, 0);
    bottom: -140px;
  }
}

.inner-our-project {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tabs {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.all-tabs {
  background-color: #faf6f2;
  border-radius: 34px;
}

[role="tablist"] {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px 12px;
}

[role="tab"] {
  flex: 1 0 auto;
  padding: 10px 35px;
  border: 2px solid var(--white);
  background: var(--white);
  font-family: inherit;
  font-weight: 500;
  font-size: 18px;
  color: #5a6164;
  transition: all 0.3s ease;
  display: flex;
  gap: 10px;
  border-radius: 360px;
  align-items: center;
  transition: all .3s ease;

  svg path {
    transition: all .3s ease;
  }
}

[role="tab"]:hover {
  cursor: pointer;
  border-color: var(--primary-skin);
  background: var(--primary-skin);
  color: white;
}

[role="tab"]:hover svg g path,
[role="tab"]:hover svg path {
  fill: #ffffff;
}

[role="tab"][aria-selected="true"] {
  background: var(--primary-skin);
  border-color: var(--primary-skin);
  color: white;
  position: relative;
}

[role="tab"][aria-selected="true"] svg g path,
[role="tab"][aria-selected="true"] svg path {
  fill: #ffffff;
}

[role="tabpanel"] {
  position: relative;
  z-index: 2;
}

[role="tabpanel"]:not([tabindex]) {
  display: none;
}

.tabpanels {
  margin-top: 60px;
  width: 100%;
}

.tabpanel-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-rows: repeat(3, auto); */
  gap: 16px;
}

.tab-single-card {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  width: 100%;
  height: 400px;
  padding: 20px;
  display: flex;
  align-items: end;
  transition: all .3s ease;

  &:hover {
    box-shadow: rgba(0, 0, 0, 0.199) 0px 10px 15px -3px,
      rgba(0, 0, 0, 0.205) 0px 4px 6px -2px;
    transform: translateY(-10px) scale(1.005);
  }
}

.tab-card-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

[role="tabpanel"] {
  animation: slideFromRight 0.35s ease-out;
}

.margin {
  /* margin: 60px 0 80px 0; */
  margin-top: 60px;
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ------------------------------
   tabs code end here
------------------------------ */
/* map */
.our-map {
  display: flex;
  justify-content: center;
  padding: 80px 0;
}

.inner-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.para-pding {
  padding: 0 18%;
}

.googleMap {
  width: 100%;
  height: 700px;
  border-radius: 20px;
}

/* ------------------------------
   generic code start here
------------------------------ */
/* ------------------
Hero section start
-------------------- */
.hero-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center !important;
  /*padding-bottom: 14vh;*/
}

.inner-hero-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.cta {
  display: flex;
  gap: 30px;
}

/* ------------------
Hero section end
-------------------- */
.text-h1 {
  font-size: 80px;
  line-height: 90px;
  font-weight: 700;
}

.text-h2 {
  font-size: 60px;
  font-weight: 600;
}

.text-h3 {
  font-size: 24px;
  font-weight: 600;
}

.text-counter {
  font-size: 42px;
  font-weight: 600;
  display: flex;
  gap: 2px;
  align-items: center;
}

.text-h5 {
  font-size: 20px;
  font-weight: 600;
}

.text-para-hero {
  font-size: 20px;
  font-weight: 500;
}

.text-para {
  font-size: 16px;
  font-weight: 400;
}

.text-para-big {
  font-size: 16px;
  font-weight: 400;
}

.text-center {
  text-align: center;
}

.black {
  color: var(--black);
}

.skin {
  color: var(--primary-skin);
}

.darkGreen {
  color: var(--primary-dark-green);
}

.white {
  color: var(--white);
}

.gray {
  color: var(--text-gray);
}

.hover-skin:hover {
  transition: all 0.3s ease;
  color: var(--primary-skin);
}

/* fake buttons */
.fakeBtn-white {
  background-color: var(--white);
  border: 1px solid var(--white);
  border-radius: 360px;
  color: var(--secondary-black-gray);
  font-size: 18px;
  font-weight: 700;
}

.fakeBtn-gray {
  background-color: var(--fakeBtn-gray);
  border: 1px solid var(--fakeBtn-gray);
  border-radius: 30px;
  color: var(--secondary-black-gray);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 14px;
}

.terms-of-use {
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  padding: 80px 0 100px 0;
  background: linear-gradient(180deg,
      var(--white) 1.85%,
      var(--primary-skin-light) 97.46%);
}

.inner-terms {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

/* Blogs / News Section */
.c_blogs-section {
  margin: 60px auto;
  background-image: url('./../img/blog-section-bg.svg');
  padding: 210px 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  .c_blogs-container {
    position: relative;

    .c_blogs-header {
      display: flex;
      justify-content: space-between;
      align-items: center;

      .c_blogs-tabs-btns {
        display: flex;

        .c-blogs-tabs-btns-wrapper {
          display: flex;
          background-color: white;
          padding: 8px;
          gap: 8px;
          border-radius: 50px;

          button {
            background: #D8B38F1F;
            color: #000;
            transition: all .3s ease;
            border: none;
            padding: 10px 18px;

            svg {
              path {
                transition: all .3s ease;
                fill: #000;
              }
            }

            &[data-active],
            &:hover {
              color: white;
              background: #D8B38F;

              svg {
                path {
                  fill: #fff;
                }
              }
            }
          }
        }
      }
    }

    .c-blogs_inner-container {
      display: flex;
      flex-direction: column;
      margin: 40px 0 100px;

      .swiper-controls.container {
        position: relative;

        .c_blogs-swiper-btn {
          z-index: 2;
          top: 0;
          right: 0;
          position: absolute;
          width: 50px;
          aspect-ratio: 1/1;
          display: grid;
          place-items: center;
          top: 192px;
          border-radius: 100%;
          border: none;
          cursor: pointer;
          transition: all .3s ease;
          background: #f1f1f1;

          &.prev-btn {
            left: 0;
            right: unset;
          }

          img {
            width: 20px;
          }

          &[disabled] {
            opacity: 0.6;
            cursor: not-allowed;
          }

          &:not([disabled]) {
            &:active {
              transform: scale(0.85) !important;
            }

            &:hover {
              background: white;
              transform: scale(1.05);
            }
          }
        }
      }

      .swiper {
        width: 100%;
        position: relative;

        .swiper-wrapper {
          .swiper-slide {
            max-width: 500px;

            .c_blog-card {
              .card-item {
                width: 100%;
                display: flex;
                flex-direction: column;
                gap: 10px;

                img {
                  width: 100%;
                  aspect-ratio: 678 / 586;
                  object-fit: cover;
                  border-radius: 22px;
                  height:350px;
                }

                .card-details {
                  .meta-info {
                    svg {
                      path {}
                    }
                  }
                }

                .card-details {
                  display: flex;
                  gap: 20px;
                  flex-direction: column;
                  align-items: start;
                }

                .meta-info {
                  display: flex;
                  gap: 10px;
                }
              }
            }
          }
        }
      }
    }

    .c_blogs-page-btn {
      display: flex;
      justify-content: center;
    }
  }
}

/* Partners Logos */
.c_partners-section {
  .container {
    .c_partners-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;

      .fakeBtn-gray {}

      .text-h2 {
        &.black {}
      }

      .c_partners-logos-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        max-width: 1000px;
        width: 100%;
        margin: 50px auto 100px;
        gap: 16px;

        img {
          width: 100%;
          transition: all .3s ease;
          border-radius: 16px;

          &:hover {
            box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
              rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
            transform: translateY(-10px) scale(1.025);
            cursor: default;
          }
        }
      }
    }
  }
}

@media (max-width: 1280px) {
  .c_blogs-section {
    padding: 140px 0;
    background-size: auto 100%;
    margin: 20px auto;

    .c_blogs-container {
      .c_blogs-header {
        .c_blogs-tabs-btns {
          .c-blogs-tabs-btns-wrapper {
            button {
              svg {
                path {}
              }

              &[data-active] {}

              &:hover {}
            }
          }
        }
      }

      .c-blogs_inner-container {
        .swiper-controls {
          &.container {
            .c_blogs-swiper-btn {
              &.prev-btn {}

              img {}

              &[disabled] {}

              &:not([disabled]) {
                &:active {}

                &:hover {}
              }
            }
          }
        }

        .swiper {
          .swiper-wrapper {
            .swiper-slide {
              .c_blog-card {
                .card-item {
                  img {}

                  .card-details {
                    .meta-info {
                      svg {
                        path {}
                      }
                    }
                  }

                  .card-details {}

                  .meta-info {}
                }
              }
            }
          }
        }
      }

      .c_blogs-page-btn {}
    }
  }

  .our-project {
    margin-bottom: 140px;
  }
}

@media (max-width: 768px) {
  .tabpanel-content {
    grid-template-columns: 1fr 1fr;
  }

  .our-project {
    margin-bottom: 90px;
  }

  .our-numbers {
    padding-bottom: 40px;
  }

  .inner-our-number {
    gap: 40px;
  }

  .c_blogs-section {
    & .c_blogs-container {
      .c-blogs_inner-container {
        margin: 40px 0 70px;
      }
    }
  }

  .c_partners-section {
    .container {
      .c_partners-container {
        .c_partners-logos-wrapper {
          grid-template-columns: 1fr 1fr;
          margin: 50px auto 60px;
        }
      }
    }
  }
}

@media (max-width: 584px) {
  .c_blogs-section {
    & .c_blogs-container {
      .c_blogs-header {
        flex-direction: column;
        align-items: start;
        gap: 30px;
      }
    }
  }

  .numbers-card {
    grid-template-columns: 1fr;
  }

  .c_blogs-section {
    & .c_blogs-container {
      & .c-blogs_inner-container {
        & .swiper-controls {
          &.container {
            & .c_blogs-swiper-btn {
              width: 36px;

              svg {
                width: 15px;
                height: 15px;
              }
            }
          }
        }
      }
    }
  }

  .c_partners-section {
    margin-top: 30px;

    .container {
      .c_partners-container {
        .c_partners-logos-wrapper {
          grid-template-columns: 1fr;
          margin: 40px auto 40px;
          max-width: 300px;
          gap: 10px;
        }
      }
    }
  }
}