@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --tm-montserrat: "Montserrat", sans-serif;
  --tm-poppins: "Poppins", sans-serif;

  --tm-primary: #257c02;
  --tm-primary-50: #edffe6;
  --tm-primary-100: #dbfecd;
  --tm-primary-200: #b7fd9b;
  --tm-primary-300: #92fd68;
  --tm-primary-400: #6efc36;
  --tm-primary-500: #4afb04;
  --tm-primary-600: #3bc903;
  --tm-primary-700: #2c9702;
  --tm-primary-800: #1e6402;
  --tm-primary-900: #0f3201;
  --tm-primary-950: #071900;
  --tm-secondary: #f83829;
  --tm-secondary-500: #808080;
  --tm-secondary-100: #cccccc;
  --tm-accent: #fbb040;
  --tm-accent-500: #689cfd;
  --tm-accent-100: #9bbdfd;
  --tm-background: #efffea;
  --tm-background-200: #c79eac;
  --tm-background-500: #824a5d;
  --tm-background-700: #41252e;
  --tm-background-800: #201316;
  --tm-background-1000: #130b0d;
  --tm-white: #ffffff;
  --tm-black: #000000;
  --tm-text: #061101;
  --tm-gradient-1: linear-gradient(90deg, rgba(37, 124, 2, 1) 0%, rgba(149, 212, 2, 1) 100%);
  --tm-gradient-2: linear-gradient(90deg, rgba(251, 176, 64, 1) 0%, rgba(255, 235, 123, 1) 100%);
  --tm-gradient-3: linear-gradient(135deg, rgba(251, 176, 64, 1) 0%, rgba(255, 235, 123, 1) 100%);
  --tm-gradient-4: linear-gradient(135deg, rgba(37, 124, 2, 1) 0%, rgba(149, 212, 2, 1) 100%);

  --tm-body-font-size: 1.125rem;
  --tm-border-radius-sm: 0.5rem;
  --tm-border-radius-md: 0.938rem;
  --tm-border-radius-lg: 1.875rem;

  --tm-line-height-lg: 6.5rem;
  --tm-line-height-md: 4.5rem;
  --tm-line-height-sm: 3rem;
  --tm-line-height-xs: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--tp-poppins);
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--tm-background);
  font-size: var(--tm-body-font-size);
  font-family: var(--tm-poppins);
  line-height: var(--tm-line-height-xs);
  color: var(--tm-text-1000);
  transition: 0.5s;
}

#preloader {
  background: var(--tm-primary-100);
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10000;
}
#preloader img {
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
}

@media (max-width: 992px) {
  #preloader img {
    width: 400px;
  }
}

@media (max-width: 768px) {
  #preloader img {
    width: 450px;
  }
}

@media (max-width: 576px) {
  #preloader img {
    width: 100%;
  }
}

.h1,
.h2,
h1,
h2 {
  margin-top: 0;
  font-weight: bold;
  font-family: var(--tm-montserrat);
  line-height: var(--tm-line-height-lg);
  color: var(--tm-text);
}

.h2,
h2 {
  line-height: var(--tm-line-height-md);
}

.h3,
.h4,
h3,
h4 {
  margin-top: 0;
  font-weight: 500;
  font-family: var(--tm-montserrat);
  line-height: var(--tm-line-height-sm);
  color: var(--tm-text);
}

.h1,
h1 {
  font-size: 6.25rem;
}

.h2,
h2 {
  font-size: 4rem;
}

.h3,
h3 {
  font-size: 2.25rem;
}

.h4,
h4 {
  font-size: 1.75rem;
}

@media (max-width: 990px) {
    .h1,
    h1 {
        font-size: 4.25rem;
        line-height: var(--tm-line-height-md);
    }

    .h2,
    h2 {
        font-size: 3rem;
        line-height: var(--tm-line-height-md);
    }

    .h3,
    h3 {
        font-size: 2rem;
    }

    .h4,
    h4 {
        font-size: 1.5rem;
        line-height: var(--tm-line-height-xs);
    }
}

@media (max-width: 600px) {
  .h1,
  h1 {
    font-size: 3.5rem;
    line-height: var(--tm-line-height-md);
  }

  .h2,
  h2 {
    font-size: 2rem;
    line-height: var(--tm-line-height-sm);
  }

  .h3,
  h3 {
    font-size: 1.75rem;
  }

  .h4,
  h4 {
    font-size: 1.5rem;
  }
}

.subheading {
  font-size: 1.25rem;
  font-size: var(--tm-poppins);
  line-height: var(--tm-line-height-sm);
}

.subheading-bold {
  font-size: 1.25rem;
  font-weight: 600;
  font-size: var(--tm-poppins);
  line-height: var(--tm-line-height-xs);
}

p {
  font-size: 1rem;
  line-height: var(--tm-line-height-xs);
  font-family: var(--tm-poppins);
  font-weight: normal;
}

.small-text {
  font-size: 0.75rem;
  font-family: var(--tm-poppins);
}

.large-text {
  font-size: 6.5rem;
  font-family: var(--tm-poppins);
}

@media (max-width: 990px) {
    .large-text {
        font-size: 5rem;
        font-family: var(--tm-poppins);
        line-height: var(--tm-line-height-md)
    }
}

@media (max-width: 720px) {
    .large-text {
        font-size: 4rem;
        font-family: var(--tm-poppins);
        line-height: var(--tm-line-height-sm)
    }
}

@media (max-width: 480px) {
    .large-text {
        font-size: 3rem;
        font-family: var(--tm-poppins);
        line-height: var(--tm-line-height-sm)
    }
}

@media (max-width: 350px) {
    .large-text {
        font-size: 2.5rem;
        font-family: var(--tm-poppins);
        line-height: var(--tm-line-height-xs)
    }
}

.bold {
  font-weight: bold;
}

a {
  font-family: var(--tm-poppins);
  font-size: 1rem;
}

.text-primary {
  color: var(--tm-primary);
}

.text-secondary {
  color: var(--tm-secondary);
}

.text-accent {
  color: var(--tm-accent);
}

.container,
.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1380px;
  }
}

@media (max-width: 575px) {
  .container {
    overflow: hidden;
  }
}

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.m-0 {
  margin: 0 !important;
}

.m-4 {
  margin: 4px !important;
}

.m-8 {
  margin: 8px !important;
}

.m-12 {
  margin: 12px !important;
}

.m-16 {
  margin: 16px !important;
}

.m-20 {
  margin: 20px !important;
}

.m-28 {
  margin: 28px !important;
}

.m-40 {
  margin: 40px !important;
}

.m-60 {
  margin: 60px !important;
}

.m-100 {
  margin: 100px !important;
}

.m-160 {
  margin: 160px !important;
}

.m-240 {
  margin: 240px !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-4 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

.mx-8 {
  margin-right: 8px !important;
  margin-left: 8px !important;
}

.mx-12 {
  margin-right: 12px !important;
  margin-left: 12px !important;
}

.mx-16 {
  margin-right: 16px !important;
  margin-left: 16px !important;
}

.mx-20 {
  margin-right: 20px !important;
  margin-left: 20px !important;
}
.mx-28 {
  margin-right: 28px !important;
  margin-left: 28px !important;
}
.mx-40 {
  margin-right: 40px !important;
  margin-left: 40px !important;
}
.mx-60 {
  margin-right: 60px !important;
  margin-left: 60px !important;
}
.mx-100 {
  margin-right: 100px !important;
  margin-left: 100px !important;
}
.mx-160 {
  margin-right: 160px !important;
  margin-left: 160px !important;
}
.mx-240 {
  margin-right: 240px !important;
  margin-left: 240px !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.my-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.my-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.my-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.my-28 {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}

.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.my-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.my-160 {
  margin-top: 160px !important;
  margin-bottom: 160px !important;
}

.my-240 {
  margin-top: 240px !important;
  margin-bottom: 240px !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-28 {
  margin-top: 28px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-160 {
  margin-top: 160px !important;
}

.mt-240 {
  margin-top: 240px !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-4 {
  margin-right: 4px !important;
}

.me-8 {
  margin-right: 8px !important;
}

.me-12 {
  margin-right: 12px !important;
}

.me-16 {
  margin-right: 16px !important;
}

.me-20 {
  margin-right: 20px !important;
}

.me-28 {
  margin-right: 28px !important;
}

.me-40 {
  margin-right: 40px !important;
}

.me-60 {
  margin-right: 60px !important;
}

.me-100 {
  margin-right: 100px !important;
}

.me-160 {
  margin-right: 160px !important;
}

.me-240 {
  margin-right: 240px !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-28 {
  margin-bottom: 28px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-160 {
  margin-bottom: 160px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-4 {
  margin-left: 4px !important;
}

.ms-8 {
  margin-left: 8px !important;
}

.ms-12 {
  margin-left: 12px !important;
}

.ms-16 {
  margin-left: 16px !important;
}

.ms-20 {
  margin-left: 20px !important;
}

.ms-28 {
  margin-left: 28px !important;
}

.ms-40 {
  margin-left: 40px !important;
}

.ms-60 {
  margin-left: 60px !important;
}

.ms-100 {
  margin-left: 100px !important;
}

.ms-160 {
  margin-left: 160px !important;
}

.ms-240 {
  margin-left: 240px !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-4 {
  padding: 4px !important;
}

.p-8 {
  padding: 8px !important;
}

.p-12 {
  padding: 12px !important;
}

.p-16 {
  padding: 16px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-28 {
  padding: 28px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-60 {
  padding: 60px !important;
}

.p-100 {
  padding: 100px !important;
}

.p-160 {
  padding: 160px !important;
}

.p-240 {
  padding: 240px !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-4 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-8 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-12 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-20 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-28 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-40 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-60 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-100 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-160 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-240 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.py-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.py-18 {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.py-28 {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.py-160 {
  padding-top: 160px !important;
  padding-bottom: 160px !important;
}

.py-240 {
  padding-top: 240px !important;
  padding-bottom: 240px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-4 {
  padding-top: 4px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pt-12 {
  padding-top: 12px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-28 {
  padding-top: 28px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-160 {
  padding-top: 160px !important;
}

.pt-240 {
  padding-top: 240px !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-4 {
  padding-right: 4px !important;
}

.pe-8 {
  padding-right: 8px !important;
}

.pe-12 {
  padding-right: 12px !important;
}

.pe-16 {
  padding-right: 16px !important;
}

.pe-20 {
  padding-right: 20px !important;
}

.pe-28 {
  padding-right: 28px !important;
}

.pe-40 {
  padding-right: 40px !important;
}

.pe-60 {
  padding-right: 60px !important;
}

.pe-100 {
  padding-right: 100px !important;
}

.pe-160 {
  padding-right: 160px !important;
}

.pe-240 {
  padding-right: 240px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-4 {
  padding-bottom: 0.25rem !important;
}

.pb-8 {
  padding-bottom: 0.5rem !important;
}

.pb-12 {
  padding-bottom: 1rem !important;
}

.pb-16 {
  padding-bottom: 1.5rem !important;
}

.pb-20 {
  padding-bottom: 3rem !important;
}

.pb-28 {
  padding-bottom: 3rem !important;
}

.pb-40 {
  padding-bottom: 3rem !important;
}

.pb-60 {
  padding-bottom: 3rem !important;
}

.pb-100 {
  padding-bottom: 3rem !important;
}

.pb-160 {
  padding-bottom: 3rem !important;
}

.pb-240 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-4 {
  padding-left: 0.25rem !important;
}

.ps-8 {
  padding-left: 0.5rem !important;
}

.ps-12 {
  padding-left: 1rem !important;
}

.ps-16 {
  padding-left: 1.5rem !important;
}

.ps-20 {
  padding-left: 3rem !important;
}

.ps-28 {
  padding-left: 3rem !important;
}

.ps-40 {
  padding-left: 3rem !important;
}

.ps-60 {
  padding-left: 3rem !important;
}

.ps-100 {
  padding-left: 3rem !important;
}

.ps-160 {
  padding-left: 3rem !important;
}

.ps-240 {
  padding-left: 3rem !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.float-right {
  float: right !important;
}

/* Button Style Starts */

.btn {
  display: inline-block;
  font-weight: regular;
  text-align: center;
  padding: 18px 24px;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--tm-primary);
  color: var(--tm-white);
}

.btn-primary:hover {
  background: var(--tm-accent);
  color: var(--tm-text);
}

.btn-primary-outline {
  border: 2px solid var(--tm-primary);
  color: var(--tm-primary);
}

.btn-primary-outline:hover {
  background: var(--tm-primary);
  color: var(--tm-background);
}

.btn-secondary {
  background: var(--tm-background);
  color: var(--tm-text);
}

.btn-primary:hover {
  background: var(--tm-accent);
  color: var(--tm-text);
}

/* Button Style Ends */

header {
  width: 100%;
  display: flex;
  justify-content: center;
}

.navbar {
  width: 100%;
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(17 54 2 / 45%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
  }
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--tm-background);
  font-size: 1.125rem;
  font-weight: bold;
  transition: 0.3s;
  font-family: var(--tm-poppins);
}

nav ul li a:hover {
  color: var(--tm-secondary);
}

nav ul li a.active {
  color: var(--tm-secondary);
}

nav .logo {
  width: 150px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  background: var(--tm-primary);
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 10px;
}

.bar:nth-child(2) {
  transform: translateX(-10px);
}

.menu-toggle.active .bar:nth-child(1) {
  width: 30px;
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  width: 30px;
  transform: rotate(-45deg) translate(7px, -8px);
}

.mobile-nav-connect {
  display: none;
}

@media screen and (max-width: 768px) {
  .navbar {
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    transition: all 0.3s ease-in-out;
  }

  .navbar.sticky {
    padding: 20px;
  }

  .menu {
    display: block;
    width: 80%;
    position: fixed;
    top: 90px;
    right: 0;
    background: white;
    text-align: center;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    visibility: hidden;
    height: calc(100vh - 77px);
  }

  .menu ul {
    display: block;
    padding: 40px 0;
  }

  .menu ul li {
    margin: 28px 0;
  }

  .menu ul li a {
    margin: 28px 0;
    color: var(--tm-primary);
  }

  .menu-toggle {
    display: flex;
  }

  .menu.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    background: var(--tm-background);
  }

  .mobile-nav-connect {
    display: block;
    padding: 0 40px;
  }

  .mobile-nav-connect .mobile-nav-content h4 {
    margin-bottom: 16px;
  }

  .mobile-nav-connect .mobile-nav-content p {
    margin-bottom: 40px;
    color: var(--tm-text-600);
  }
  .mobile-nav-connect .mobile-nav-socials a {
    display: inline-block;
    background: var(--tm-primary);
    border-radius: 10px;
    height: 40px;
    width: 40px;
    padding-top: 5px;
    transition: all 0.5s ease-in-out;
  }

  .mobile-nav-connect .mobile-nav-socials a i {
    font-size: 1.2rem;
    color: white;
  }

  .mobile-nav-connect .mobile-nav-socials a:hover {
    background: var(--tm-accent);
  }
}

@media screen and (max-width: 480px) {
  .menu ul li {
    margin: 15px 0;
  }
}

nav .logo img {
  display: flex;
  place-items: center;
  width: 100%;
}

.hero-section {
  width: 100%;
  background: var(--tm-primary);
  overflow-x: clip;
}

.hero-section .hero-section-container {
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 1263px) {
  .hero-heading {
    font-size: 5rem;
    line-height: var(--tm-line-height-md);
  }
}

@media screen and (max-width: 900px) {
  .hero-heading {
    font-size: 4rem;
    line-height: var(--tm-line-height-md);
  }
}

@media screen and (max-width: 720px) {
  .hero-heading {
    font-size: 4rem;
    line-height: var(--tm-line-height-md);
  }
}

@media screen and (max-width: 555px) {
    .hero-heading {
        font-size: 3rem;
        line-height: var(--tm-line-height-md);
    }
}


@media screen and (max-width: 480px) {
  .hero-heading {
    font-size: 2.5rem;
    line-height: var(--tm-line-height-sm);
  }
}

@media screen and (max-width: 350px) {
    .hero-heading {
        font-size: 2rem;
        line-height: var(--tm-line-height-sm);
    }
}

.swiper {
  width: 100%;
  height: 100%;
}

/* Force linear easing for swiper transitions to create seamless motion */
.swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Category slide radius patterns using nth-child
   1 -> 50px, 2 -> 20px, 3 -> 50%, 4 -> 50px, 5 -> 20px, 6 -> 50% */

.swiper-slide {
  background-position: center;
  background-size: cover;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  object-fit: cover;
}

.hero-section .hero-section-container .hero-content-section {
  position: relative;
  width: 100%;
  display: flex;
}

.hero-section .hero-section-container .hero-content {
  position: absolute;
  z-index: 1;
  bottom: 165px;
  left: 100px;
  color: var(--tm-background);
  width: 65%;
}

.hero-section .hero-section-container .hero-content h1 {
  color: var(--tm-background);
}

.hero-section .hero-section-container .hero-content p {
  color: var(--tm-background);
  opacity: 0.8;
}

.hero-section .hero-section-container .hero-content p::after {
  content: "";
  width: 200px;
  height: 4px;
  background: var(--tm-secondary);
  display: inline-block;
  margin-left: 20px;
}

@media screen and (max-width: 1300px) {
  .hero-section .hero-section-container .hero-content {
    position: absolute;
    z-index: 1;
    bottom: 105px;
    left: 100px;
    color: var(--tm-background);
    width: 60%;
  }
}

@media screen and (max-width: 1099px) {
  .hero-section .hero-section-container .hero-content {
    bottom: 105px;
    left: 40px;
    width: 70%;
  }
}

@media screen and (max-width: 720px) {
  .hero-section .hero-section-container .hero-content {
    position: absolute;
    z-index: 1;
    bottom: 120px;
    left: 40px;
    color: var(--tm-background);
    width: 85%;
  }
}

@media screen and (max-width: 420px) {
  .hero-section .hero-section-container .hero-content {
    position: absolute;
    z-index: 1;
    bottom: 120px;
    left: 40px;
    color: var(--tm-background);
    width: 85%;
  }
}

.hero-cta-section .rotating-btn {
  position: absolute;
  bottom: 275px;
  right: 100px;
  z-index: 1;
}

.hero-cta-section .rotating-btn img {
  animation: rotateImage 10s linear infinite;
  width: 100%;
  z-index: 10;
}

@keyframes rotateImage {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 991px) {
  .hero-cta-section .rotating-btn {
    bottom: 25px;
    right: 25px;
  }
}

.hero-cta-section .rotating-btn a {
  background: rgba(255, 255, 255, 0.21);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.43);
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  padding: 4px;
}

.hero-cta-section .rotating-btn a i {
  position: absolute;
  color: var(--tm-accent);
  font-size: 3.5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-in-out;
}

.hero-cta-section .rotating-btn a:hover i {
  transform: rotate(45deg);
}

.mobile-cta {
  display: none;
}

@media screen and (max-width: 720px) {
  .hero-cta-section .rotating-btn {
    display: none;
  }

  .mobile-cta {
    display: inline-block;
  }
}

.scroll-down-btn {
  background: rgba(255, 255, 255, 0.11);
  border-radius: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.33);
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 5px 20px;
  color: var(--tm-background);
}

.scroll-down-btn a {
  text-decoration: none;
  color: var(--tm-background);
}

.scroll-down-btn a p {
  opacity: 0.8;
}

@media screen and (max-width: 1300px) {
  .scroll-down-btn {
    bottom: 40px;
  }
}

.scroll-down-btn .scroll-down-icon {
  transform: rotate(180deg);
  animation: updownBtn 1s linear infinite;
  position: absolute;
  bottom: -15px;
  left: 37px;
  font-size: 2rem;
}

@keyframes updownBtn {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(10px);
  }
}

#homeAbout {
  position: relative;
  overflow-x: clip;
}

.heading-section {
  margin-bottom: 50px;
  position: relative;
}

.heading-section .sub-heading {
  color: var(--tm-text);
}

.heading-section .sub-heading::after {
  content: "";
  width: 120px;
  height: 3px;
  background: var(--tm-secondary);
  display: inline-block;
  margin-left: 20px;
}

.heading-section h2 {
  font-weight: 600;
}

.heading-section h2 span {
  color: var(--tm-primary);
}

.heading-section-right {
  margin-bottom: 50px;
  position: relative;
}

.heading-section-right .sub-heading {
  width: 100%;
  color: var(--tm-text);
  text-align: right;
}

.heading-section-right .sub-heading::before {
  content: "";
  width: 120px;
  height: 3px;
  background: var(--tm-secondary);
  display: inline-block;
  margin-right: 20px;
}

.heading-section-right h2 {
  font-weight: 600;
  text-align: right;
}

.heading-section-right h2 span {
  color: var(--tm-primary);
}

.heading-section-center {
  margin-bottom: 50px;
  position: relative;
  display: grid;
  place-content: center;
}

.heading-section-center .sub-heading {
  width: 100%;
  color: var(--tm-text);
  text-align: center;
}

.heading-section-center .sub-heading::before {
  content: "";
  width: 120px;
  height: 3px;
  background: var(--tm-secondary);
  display: inline-block;
  margin-right: 20px;
}

.heading-section-center .sub-heading::after {
  content: "";
  width: 120px;
  height: 3px;
  background: var(--tm-secondary);
  display: inline-block;
  margin-left: 20px;
}

.heading-section-center h2 {
  font-weight: 600;
  text-align: center;
  max-width: 1100px;
}

.heading-section-center h2 span {
  color: var(--tm-primary);
}

.heading-section img {
  position: absolute;
  top: -10px;
  right: 40px;
  width: 130px;
}

.about-heading-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.about-content-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.about-content {
  position: relative;
  padding: 0 30px;
}

.about-content p {
  width: 65%;
}

.about-dotted-pattern {
  width: 600px;
  position: absolute;
  bottom: 20px;
  right: -200px;
  opacity: 0.4;
}

.about-content .about-small-img {
  width: 200px;
  position: absolute;
  bottom: -150px;
  right: 0px;
  z-index: 1;
}
@media screen and (max-width: 990px) {
  .about-header-image {
    display: none;
  }
}

@media screen and (max-width: 990px) {
  .about-heading-img {
    display: none;
  }

  .about-content p {
    width: 100%;
  }

  .about-content .about-small-img {
    display: none;
  }

  .about-dotted-pattern {
    display: none;
  }
}

#categories {
  position: relative;
  overflow-x: clip;
}

#categories .large-text {
  background: -webkit-linear-gradient(rgba(37, 124, 2, 0.4), rgba(37, 124, 2, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#categories .categories-section {
  position: relative;
  background: rgba(37, 124, 2, 0.1);
  padding: 120px 0;
}

#categories .categories-section .categories-desc {
  margin-top: 60px;
  width: 80%;
}

#categories .categories-section .star-pattern {
  position: absolute;
  top: 150px;
  left: 275px;
  width: 150px;
  opacity: 0.3;
}

.category-section .swiper .swiper-wrapper {
  align-items: center;
}

.category-section .swiper .swiper-slide.single-category {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-section .swiper .swiper-slide.single-category img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
}

    .category-section .swiper .swiper-slide.single-category.radius-1 {
        aspect-ratio: 1 / 1;
        border-radius: 50px;
    }

    .category-section .swiper .swiper-slide.single-category.radius-2 {
        aspect-ratio: 3 / 4;
        border-radius: 20px;
    }

    .category-section .swiper .swiper-slide.single-category.radius-3 {
        aspect-ratio: 1 / 1;
        border-radius: 50%;
    }

.category-section .swiper .swiper-slide.single-category.radius-1 img {
  aspect-ratio: 1 / 1;
  border-radius: 50px;
}
.category-section .swiper .swiper-slide.single-category.radius-2 img {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
}
.category-section .swiper .swiper-slide.single-category.radius-3 img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

/* Centered label overlay inside category slides */
.category-section .swiper .swiper-slide.single-category .category-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 8px 12px;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .category-section .swiper .swiper-slide.single-category .category-label {
    padding: 6px 10px;
  }

    #categories .categories-section {
        position: relative;
        background: rgba(37, 124, 2, 0.1);
        padding: 20px 0;
    }

}

/* Responsive tweaks for category swiper */
@media (max-width: 992px) {
  .category-section .swiper {
    padding-left: 12px;
    padding-right: 12px;
  }
  .category-section .swiper .swiper-slide.single-category {
    min-width: 140px;
    padding: 8px 0;
  }
  .category-section .swiper .swiper-slide.single-category .category-label {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .category-section .swiper .swiper-slide.single-category {
    min-width: 100px;
  }
  .category-section .swiper .swiper-slide.single-category .category-label {
    font-size: 1.5rem;
    padding: 4px 8px;
  }
}

.ribbon-back {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 500;
  background-color: #d3f4c6;
  color: var(--tm-text);
  padding: 20px 0;
  z-index: 2;
  transform: rotate(-2deg);
  bottom: -50px;
  width: 105%;
  left: -8px;
}

.ribbon-forward {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 500;
  background-color: var(--tm-primary);
  color: var(--tm-background);
  padding: 20px 0;
  position: absolute;
  bottom: -70px;
  z-index: 3;
  transform: rotate(6deg);
  width: 110%;
  left: -25px;
}

@media (max-width: 600px) {
    .ribbon-back {
        font-size: 1.5rem;
        padding: 0;
        transform: rotate(-10deg);
    }

    .ribbon-forward {
        font-size: 1.5rem;
        padding: 0;
        transform: rotate(12deg);
    }
}

.ribbon-back .ribbon-content,
.ribbon-forward .ribbon-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Infinite scrolling for ribbon content (requires JS duplication of items)
   The duplicated content allows a seamless translateX(-50%) loop. */
@keyframes ribbonScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ribbon-back .ribbon-content,
.ribbon-forward .ribbon-content {
  will-change: transform;
  /* duration is set dynamically via inline --ribbon-duration variable by JS */
  animation: ribbonScroll var(--ribbon-duration, 20s) linear infinite;
}

/* If you want the forward ribbon to move the opposite way, uncomment:
.ribbon-forward .ribbon-content { animation-direction: reverse; }
*/

.ribbon-back > .ribbon-content > div,
.ribbon-forward > .ribbon-content > div {
  white-space: nowrap;
  word-break: keep-all;
  display: inline-block;
  margin: 0 20px;
}

.ribbon-back .ribbon-content > div > i,
.ribbon-forward .ribbon-content > div > i {
  font-size: 4rem;
}

.stats-wrapper {
  gap: 0; /* circles will overlap using margin */
  position: relative;
  justify-content: center;
}

.stat-circle {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid #cfe5b4; /* exact light gold-green border */
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: -20px; /* THIS CREATES THE OVERLAP */
}

.stat-circle:first-child {
  margin-left: 0; /* first circle should not shift */
}

.stat-label {
  margin-bottom: 15px;
}

.stat-number {
  font-weight: 700;
  color: #3fa332; /* exact green */
  margin-bottom: 6px;
}

.stat-icon img {
  width: 70px;
}

@media (max-width: 768px) {
    .stat-circle {
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        border: 2px solid #cfe5b4; /* exact light gold-green border */
        background: transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        margin-left: 0;
        margin-bottom: -25px;
    }

    .stats-wrapper {
        padding: 50px;
    }

}

#menuSection {
    overflow-x: clip;
}

#menuSection .menu-image-container {
  position: relative;
}

#menuSection .menu-image-container .menu-image {
  object-fit: cover;
  object-position: center;
}

#menuSection .menu-heading-right {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  color: var(--tm-background);
  max-width: 60%;
  text-align: end;
}

#menuSection .menu-heading-left {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  color: var(--tm-background);
  max-width: 60%;
  text-align: start;
}

#menuSection .menu-cards {
  padding: 120px;
}

#menuSection .menu-cards .menu-card-item {
  margin-bottom: 28px;
  align-items: center;
}

#menuSection .menu-cards .menu-card-item img {
  border-radius: 10px;
}

@media (max-width: 1200px) {
  #menuSection .menu-heading-right {
    max-width: 90%;
  }

  #menuSection .menu-heading-left {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  #menuSection .menu-cards {
    padding: 50px;
  }
}

@media (max-width: 768px) {
    #menuSection .menu-cards {
        padding: 50px 50px 0 50px;
    }
}
#missionSection .mission-image {
  position: relative;
}

#missionSection .mission-image .mission-img {
  border-radius: 15px;
}

#missionSection .rotating-btn {
  position: absolute;
  top: 15px;
  left: -90px;
  z-index: 1;
}

#missionSection .rotating-btn .rotate-img {
  animation: rotateImage 10s linear infinite;
  width: 100%;
  z-index: 10;
}

#missionSection .rotating-btn .rotate-btn-icon {
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  pointer-events: none;
}

@keyframes rotateImage {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 991px) {
    #missionSection .rotating-btn {
    bottom: 25px;
    right: 25px;
    }

    #menuSection .menu-heading-right {
        left: 0;    
    }

    #menuSection .menu-heading-left {
        right: 10px;
    }
}

#missionSection .rotating-btn a {
  background: #d9d9d9;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.43);
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  padding: 4px;
}

#missionSection .rotating-btn a i {
  position: absolute;
  color: var(--tm-accent);
  font-size: 3.5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-in-out;
}

#missionSection .rotating-btn a:hover i {
  transform: rotate(45deg);
}

.mission-left-content{
    margin-top: 240px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .mission-left-content {
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .bitez-menu-section {
    flex-direction: column-reverse;
  }
}
/* Banner Style Start */

.page-banner {
  width: 100%;
  height: 350px;
  background: var(--tm-gradient-4);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: end;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Reduced opacity so background image shows through more */
  background-color: rgba(37, 124, 2, 0.35);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h2 {
  color: var(--tm-white);
}

/* Banner Style End */

/* About Page Style Start */

#aboutSection .about-about-content {
  position: relative;
}
#aboutSection .about-about-content .curved-arrow-black {
  position: absolute;
  bottom: -50px;
  width: 150px;
}

.why-box {
  background: linear-gradient(135deg, rgba(37, 124, 2, 0.3) 0%, rgba(149, 212, 2, 0.3) 100%);
  border-radius: 15px;
}

.why-box.style-2 {
  background: linear-gradient(135deg, rgba(251, 176, 64, 0.3) 0%, rgba(255, 235, 123, 0.3) 100%);
}

.why-box .why-box-content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-box .why-box-content .number {
  font-size: 6rem;
  font-weight: bold;
  background: -webkit-linear-gradient(rgba(37, 124, 2, 0.4), rgba(37, 124, 2, 0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) {
    .why-box .why-box-content .number {
        line-height: var(--tm-line-height-md)
    }

    .why-box .why-box-content {
        padding: 40px;
    }
}

@media (max-width: 420px) {
    .why-box .why-box-content {
        padding: 20px;
    }
}

.vertical-text {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  line-height: 1.4;
  letter-spacing: 0.05em;
  max-height: 100%;
  white-space: normal;
  word-break: break-word;
  float: right;
  color: #06110146;
}

@media (max-width: 1300px) {
  .vertical-text {
    line-height: 1.2;
    font-size: 52px;
  }
}

@media (max-width: 900px) {
  .vertical-text {
    line-height: 1;
  }
}

@media (max-width: 768px) {
    .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        text-orientation: initial;
        margin-bottom: 20px;
        font-size: 32px;
    }
}

#features .single-feature img {
  border-radius: 15px;
}

#features .features-list {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

#features .features-list .single-feature .single-feature-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  justify-content: center;
}

#testimonial .testimonial-left {
  background: var(--tm-white);
  border-radius: 15px 0 0 15px;
  padding: 20px;
}

#testimonial .testimonial-left .testimonial-left-content {
  padding: 40px;
}

#testimonial .testimonial-left .testimonial-left-content .rating {
  text-align: center;
  border-bottom: 1px solid black;
  margin-bottom: 28px;
}

#testimonial .testimonial-left .testimonial-left-content h4 {
  text-align: center;
}

#testimonial .testimonial-left .testimonial-btn {
  width: 100%;
  text-align: end;
}

#testimonial .testimonial-left .testimonial-btn .round-btn {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  border: none;
  background: #257c023d;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#testimonial .testimonial-left .testimonial-btn .round-btn:hover {
  background: var(--tm-primary);
}

#testimonial .testimonial-left .testimonial-btn .round-btn:hover i {
  color: var(--tm-background);
}

#testimonial .testimonial-left .testimonial-btn .round-btn i {
  font-size: 2rem;
  color: var(--tm-secondary);
}

#testimonial .testimonial-right {
  background: #103700;
  padding: 40px;
  display: flex;
  justify-content: center;
  color: var(--tm-background);
  border-radius: 0 15px 15px 0;
}

#testimonial .testimonial-right .reviewer-name {
  font-size: 32px;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: inline-block;
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding: 0 0 0 20px;
  border-left: 1px solid var(--tm-primary-800);
}

#testimonial .testimonial-right .review-container {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#testimonial .testimonial-right .review-container .quote-icon {
  font-size: 100px;
  color: #ffffff49;
  margin-left: -15px;
}

#testimonial .testimonial-right .review-container .quote-icon {
  font-size: 100px;
  color: #ffffff49;
  margin-left: -15px;
}

/* About Page Style Ends */

/* Contact Page Style Start */

.mobile-contact-details {
  display: none;
}

@media (max-width: 768px) {
  .contact-details {
    display: none;
  }

  .mobile-contact-details {
    display: block;
  }
}

#contactCards .contact-heading {
  align-items: center;
}

#contactCards .contact-card {
  display: grid;
  place-items: center;
  padding: 32px 20px;
  border-radius: 15px;
  height: 100%;
  box-shadow: 1px 2px 10px #0719002b;
}

/* Contact cards: use slightly transparent gradients to reduce intensity */
#contactCards .contact-card.card-1 {
  background: linear-gradient(135deg, rgba(37, 124, 2, 0.15) 0%, rgba(149, 212, 2, 0.15) 100%);
}

#contactCards .contact-card.card-2 {
  background: linear-gradient(135deg, rgba(251, 176, 64, 0.25) 0%, rgba(255, 235, 123, 0.25) 100%);
}

#contactCards .contact-card.card-3 {
  background: linear-gradient(135deg, rgba(37, 124, 2, 0.15) 0%, rgba(149, 212, 2, 0.15) 100%);
}

#contactFormSection {
  background: #e9f2e6;
  border-radius: 30px;
  padding: 20px;
}

#contactFormSection .map-container {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

#contactFormSection .map-container iframe {
  width: 100%;
  height: 100%;
}

#contactForm {
  padding: 20px;
}

#contactForm {
  padding: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  color: var(--tm-text);
  display: block;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.form-group button {
  width: 100%;
  background: var(--tm-primary);
  border: none;
  border-radius: 10px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.form-group button:hover {
  background: var(--tm-accent);
  color: var(--tm-text);
}

/* Contact Page Style End */

.filter-section {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.no-text-decoration{
    text-decoration: none;
}

.filter-section .filter-btn {
    background: transparent;
    padding: 8px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: var(--tm-text);
    border: 1px solid var(--tm-text);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.filter-section .filter-btn.active {
  background: var(--tm-primary);
  padding: 8px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: var(--tm-background);
  border: 1px solid var(--tm-text);
  transition: all 0.5s ease-in-out;
}

.filter-section .filter-btn:hover {
  background: var(--tm-primary);
  color: var(--tm-background);
}

.products .single-product {
  padding: 10px;
}

.products .single-product .product-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.products .single-product .product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s ease-in-out;
}

.products .single-product .product-card .product-content {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.712);
  border-radius: 7px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.43);
  width: 95%;
  padding: 10px 20px;
}

.products .single-product .product-card .product-content a {
  text-decoration: none;
  color: var(--tm-text);
}

/* Footer Style Starts */

/* Footer Style Starts */

/* Product modal + backdrop blur */
.product-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  width: 100%;
  height: 100vh;
}
.product-modal.active {
  display: flex !important;
  position: fixed;
}
.product-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.product-modal .modal-body {
  position: relative;
  z-index: 2;
  width: 92%;
  max-height: 95vh;
  max-width: 920px;
  background: var(--tm-white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: auto;
}
.product-modal .modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.product-modal .modal-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
}
.product-modal .modal-media .modal-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 420px;
  border-radius: 7px;
}
.product-modal .modal-info {
  padding: 60px 30px;
}
.product-modal .modal-title {
  margin: 0 0 8px 0;
  font-size: 1.6rem;
}
.product-modal .modal-price {
  color: var(--tm-primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.product-modal .modal-desc {
  color: #444;
  margin-bottom: 18px;
}
.product-modal .modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #111;
  cursor: pointer;
}

@media (max-width: 768px) {
    .product-modal .modal-info {
        padding: 0 30px 30px 30px;
    }
}

.stars i {
  color: var(--tm-accent);
  margin-right: 4px;
}

@media (max-width: 768px) {
  .product-modal .modal-grid {
    grid-template-columns: 1fr;
  }
  .product-modal .modal-media .modal-img {
    max-height: 260px;
  }
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .gallery-sp-img {
        margin-bottom: 24px;
    }
}

.one-by-one {
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

.three-by-one {
  aspect-ratio: 3/1 !important;
  object-fit: cover;
  object-position: center;
}

footer {
  width: 100%;
  color: var(--tm-text);
}

footer .footer-top {
  border-top: 1px solid var(--tm-primary);
  border-bottom: 1px solid var(--tm-primary);
  padding: 40px 0;
}

footer .footer-top .footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

footer .footer-top .footer-logo img {
  width: 100%;
}

footer .footer-top .footer-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

footer .footer-top .footer-socials a {
  background: #d9d9d9;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

footer .footer-top .footer-socials a i {
  color: var(--tm-text);
  font-size: 1rem;
  transition: all 0.5s ease-in-out;
}

footer .footer-top .footer-socials a:hover {
  background: var(--tm-primary);
}

footer .footer-top .footer-socials a:hover i {
  color: var(--tm-background);
}

footer .footer-top .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

footer .footer-top .footer-links li {
  list-style: none;
  background: #d9d9d9;
  padding: 5px 25px;
  border-radius: 25px;
  transition: all 0.5s ease-in-out;
}

footer .footer-top .footer-links li a {
  text-decoration: none;
  color: var(--tm-text);
  transition: all 0.3s ease-in-out;
}

footer .footer-top .footer-links li:hover {
  background: var(--tm-primary);
}

footer .footer-top .footer-links li:hover a {
  color: var(--tm-background);
}

footer .footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--tm-background-500);
}

footer .footer-bottom p span {
  color: var(--tm-primary);
}

footer .footer-bottom p a {
  color: var(--tm-primary);
}

/* Footer Style Ends */

/* Image Lightbox / Lightbox Styles */
.image-lightbox {
  position: fixed;
  height: 100vh;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  -webkit-font-smoothing: antialiased;
}
.image-lightbox.active {
  display: flex;
}
.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}
.image-lightbox-content {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1100px;
  max-height: 92vh;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.image-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.image-lightbox-caption {
  margin-top: 10px;
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.image-lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
}

@media (max-width: 768px) {
  .image-lightbox-content {
    width: 96%;
  }
  .image-lightbox-img {
    max-height: 70vh;
  }
  .image-lightbox-caption {
    font-size: 0.85rem;
  }
}
#responseMessage {
    padding: 20px 25px;
    background-color: #28a745; 
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    animation: fadeInUp 0.5s ease-in-out;
}

span.field-validation-error {
    color: red !important;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.input-validation-error {
    border: 1px solid red !important;
}