
*,
p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 50px;
}
h3 {
  font-size: 40px;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
}

:root {
  --black: #16161b;
  --green: #c6ec64;
  --lightgreen: #ebf4d1;
  --light-green-c6: #C6EC64;
  --light-black-c1: #1C1C1C;
}

.bg-light-black {
  background-color: var(--black);
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    background-color: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: none;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    color: #6c757d !important;
    margin: 0 8px !important;
    font-weight: 500 !important;
}

/* Additional override for Bootstrap breadcrumb separators */
.breadcrumb-nav ol.breadcrumb li.breadcrumb-item + li.breadcrumb-item::before {
    content: ">" !important;
    color: #6c757d !important;
    margin: 0 8px !important;
    font-weight: 500 !important;
}

.breadcrumb-item.active {
    color: var(--black);
    font-weight: 500;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item .breadcrumb-link {
    color: #007bff !important;
    text-decoration: underline !important;
    transition: color 0.2s ease;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item .breadcrumb-link:hover {
    color: var(--green) !important;
    text-decoration: none !important;
}

/* 26 nov */
      .geo-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        /* .geo-modal-wrapper {
            background: white;
            border-radius: 16px;
            max-width: 622px;
            width: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        } */
.geo-modal-wrapper {
    background: white;
    border-radius: 16px;
    max-width: 622px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);

    /* bottom gradient bar */
    background-image: 
      linear-gradient(
        90deg,
        #34450A 0%,
        #374B01 32%,
        #181e09 54%,
        #222b0c 82%,
        #181f08 100%
      );

    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 18px; /* Height of the gradient bar */
}

        .geo-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 36px;
            height: 36px;
            background: #2d3319;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background 0.3s;
        }

        .geo-modal-close:hover {
            background: #1a1f0f;
        }

        .geo-modal-close::before,
        .geo-modal-close::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 2px;
            background: white;
        }

        .geo-modal-close::before {
            transform: rotate(45deg);
        }

        .geo-modal-close::after {
            transform: rotate(-45deg);
        }

        .geo-header-section {
            background: linear-gradient(180deg, #FCFFE0 0%, #D2DC72 48%, #6B7600 95%);
            height: 280px;
            position: relative;
            overflow: visible;
            border-radius: 0 0 50% 50% / 0 0 30px 30px;
        }
/* 
        .geo-map-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        } */

        .geo-map-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* opacity: 0.4; */
        }

        .geo-flag-wrapper {
            position: absolute;
            bottom: -65px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
        }

        .geo-flag-wrapper img {
            width: 246px;
            
        }

        .geo-content-section {
            padding: 80px 40px 100px;
            text-align: center;
        }

     .geo-content-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 20px;
    line-height: 1.3;
    margin-top: 25px;
}

        .geo-content-section p {
            font-size: 21px;
            color: #1C1C1C;
            margin-bottom: 32px;
            line-height: 1.5;
        }

         .geo-cta-btn {
  padding: 18px 100px;
  font-size: 18px;
  font-weight: 600;
  color: #C6EC64;
  cursor: pointer;
  border-radius: 100px;
  border: 3px solid transparent;
  text-decoration: none;

  background:
    /* INNER CENTER GRADIENT — adjust this to match Figma */
    linear-gradient(
      90deg,
      #111708 0%,
      #1A230B 35%,
      #2C3A10 60%,
      #1A230B 85%,
      #111708 100%
    ) padding-box,

    /* BORDER GRADIENT — your Figma colors */
    linear-gradient(
      90deg,
      #34450A 0%,
      #374B01 32%,
      #BEDC71 54%,
      #DCFC89 82%,
      #DCFC89 100%
    ) border-box;

  background-clip: padding-box, border-box;
}


        @media (max-width: 640px) {
            .geo-modal-wrapper {
                margin: 20px;
            }

            .geo-header-section {
                height: 220px;
            }

            .geo-flag-wrapper img {
                width: 180px;
            }

            .geo-content-section {
                padding: 70px 24px 75px;
            }

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

            .geo-content-section p {
                font-size: 16px;
            }

            .geo-cta-btn {
                padding: 16px 40px;
                font-size: 16px;
            }
        }
   

/* Responsive breadcrumb styles */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 8px 0;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 6px;
    }
}

section {
  padding: 150px 0 0;
}

input {
  border-radius: 10px !important;

  border-color: var(--lightgreen) !important;
}

.form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #dfdfdf;
  z-index: 0 !important;
}

.btn:hover {
  background-color: var(--green);
}

/* --header-start-- */
.btn-login {
  background-color: var(--green);
  padding: 10px 25px;
  border-radius: 10px;
}

.btn-search:hover{
  background-color: transparent;
  border-left: 1px solid #DEE3BD;
}
.btn-login:hover {
  background-color: var(--green);
}

/* Default Navbar Toggler */
.buttonsidebar .navbar-toggler-icon {
  background-image: url("/img/humburger.svg") !important;
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}

/* When expanded, change to cross icon */
.buttonsidebar[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("/img/cross.svg") !important;
}

/* Dark mode toggle */
.template--contact .buttonsidebar .navbar-toggler-icon {
  background-image: url("/img/humburgur-dark.svg") !important;
}

.template--contact .buttonsidebar[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("/img/x.png") !important;
}

.logo--dark {
  display: none;
}
.template--contact .logo--dark {
  display: block;
}
.template--contact .logo--light {
  display: none;
}

.navbar-nav li a {
  font-size: 16px;
}

.buttonsidebar:focus {
  box-shadow: none;
}

.menu--opened {
  overflow: hidden;
}
.footer-top{
  margin-top: 100px !important;
}
.menu--opened nav {
  height: 100vh;
  align-items: flex-start;
}

.mobile-view-show {
  display: none;
}
.btn.sign-btn:hover {
  background-color: transparent;
}
.template--home .bg-light-black {
  background-color: var(--black);
}
.template--home .bg-light-black .nav-link,
.template--home .bg-light-black .sign-btn {
  color: #fff;
}

.template--contact nav {
  background-color: #fff;
}
.template--contact .bg-light-black .nav-link {
  color: var(--black);
}

/* --header-end-- */
/* --banner-section-start-- */
.geo-target {
  color: var(--green);
}

.globe-img {
  transform: translate(-45%, -50%);
  opacity: 0.5;
}

.banner-section {
  min-height: calc(100vh - 66px);
}

.custom-card {
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #dee3bd;
}

.custom-card p,
.tabs-wrapper p {
  color: #f9ffd2;
  margin-bottom: 0;
}

.custom-card p span {
  color: var(--green);
}
.tab-pane p span {
  color: var(--green);
}

.search-box input {
  border: 1px solid #dee3bd;
  border-radius: 10px;
  color: #fff;
}

.search-box input::placeholder {
  color: #f9ffd2;
  font-size: 18px;
  font-weight: 500;
}

.search-box input:focus {
  background-color: transparent;
  border-color: #c6ec64;
  color: #fff;
}
.footer-feilds input {
  color: #fff;
}

.footer-feilds input:focus {
  background: transparent !important;
  outline: none;
  color:#fff;
}

.search-icon {
  transform: translateY(-50%);
  cursor: pointer;
  border-left: 1px solid #dee3bd;
  border-radius: 0px 10px 10px 0px;
  color: var(--green);
}

.copy-icon {
  cursor: pointer;
  margin-top: 10px;
}

/* --banner-section-end-- */
/* ---tabs-section-start---  */
.tabs-wrapper {
  background-color: var(--lightgreen);
  border-radius: 50px;
}

.tabs-list {
  max-width: 748px;
  border-radius: 20px;
}

.tabs-wrapper .nav-tabs .nav-link,
.graph-content .nav-tabs .nav-link {
  color: var(--black);
  border-radius: 5px;
}

.tabs-wrapper .nav-tabs .nav-link.active {
  background-color: var(--black);
  color: var(--green);
}

/* ---tabs-section-end---  */
/* canvas-graph-start */
.graph-content h3,
.graph-content p {
  padding: 0 0 30px;
}

.graph-content p {
  max-width: 745px;
}

.graph-wrapper {
  max-width: 1120px;
  background-color: var(--black);
  border-radius: 30px;
  padding: 10px;
}

.graph-content .nav-tabs .nav-link.active {
  background-color: var(--green);
}

.chart-container {
  position: relative;
  width: 80%;
  margin: auto;
  padding-top: 20px;
}

.chart-title,
.chart-subtitle,
.chart-footer {
  text-align: center;
}
.chart-subtitle {
  display: flex;
  justify-content: space-between;
}

.chart-subtitle p {
  padding-left: 30px;
  color: #fff;
  font-size: 16px;
}

.chart-footer {
  margin-top: 20px;
}

.spanText {
  color: var(--green);
}

.side-label {
  transform: rotate(-90deg);
  position: absolute;
  left: -165px;
  top: 50%;
  color: #fff;
}

/* canvas-graph-end */
/* ---geo-targetting-start---  */
.card-wrapper {
  background-color: var(--lightgreen);
  padding: 30px 15px;
  border-radius: 20px;
}

.card-wrapper h4,
.card-wrapper p {
  padding-top: 20px;
}

.card-wrap-img {
  background-color: var(--black);
  padding: 16px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.productsDropdown {
  width: auto;
  padding: 15px;
}

.productsDropdown .row {
  flex-wrap: nowrap;
}

.productsDropdown .col-6 {
  min-width: 220px; 
}

/* ---geo-targetting-end---  */
/* ---services-section-start--- */
.services-section {
  padding: 80px 0;
}

.services-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}

.service-card {
  background-color: var(--lightgreen);
  padding: 24px;
  border-radius: 10px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-title a {
  color: var(--black);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.service-title a:hover {
  color: var(--green);
  text-decoration: underline;
}

.service-description {
  font-size: 16px;
  line-height: 24px;
  color: #595960;
  margin: 0;
}

/* ---services-section-end--- */
/* geo-litedatabase-start */
.geo-litedatabase {
  background-color: #27272e;
  padding: 100px 0;
  margin-top: 100px;
}

.geo-litedatabase div, 
.geo-litedatabase p {
  color: #fff;
  font-size: 35px;
}

.geo-litedatabase p {
  font-size: 20px;
}

.geo-litedatabase div span,
.geo-litedatabase p a {
  color: var(--green);
}

/* geo-litedatabase-end */
/* footer-start */
.footer {
  padding: 100px 0 30px;
  background-color: var(--black);
  position: relative;
}

.links a {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
}

.footer-feilds {
  width: 80%;
}

.footer-feilds input {
  padding: 10px;
}

.input-group-append,
.input-group-append-dynamic {
  position: absolute;
  right: 8px;
  top: 9px;
}

.input-group-append-dynamic {
  top: 34px;
}

.btn-success-custom {
  background-color: var(--green);
}

.custom-row-design hr {
  color: #2e2e3a;
  margin: 0 48px 0 48px;
}

.newsletter input {
  background-color: transparent;
  border-radius: 10px !important;
}

.newsletter input::placeholder {
  color: var(--lightgreen);
}

.footer-link {
  padding-inline-start: 0;
  list-style: none;
}
.footer-link li {
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  line-height: 34px;
  font-weight: bold;
}

/* footer-end */

/* login-page-start */
.login-page {
  background-color: var(--lightgreen);
}

.login-content {
  max-width: 843px;
  background-color: #fff;
  border-radius: 30px;
  padding: 63px 100px 100px;
}

.login-content input {
  background-color: #f1f1f1;
  padding: 13px 10px;
}

.login-content .input-group i {
  top: 6px;
}

.login-page-btn {
  background-color: var(--green);
  border-radius: 10px;
}

.login-page-btn:hover {
  background-color: var(--green);
}

.login-content label {
  font-size: 14px;
}

.login-content p,
.social-btn,
.login-content input::placeholder {
  font-size: 14px;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #d1d5db;
}

.separator:not(:empty)::before {
  margin-right: 20px;
}

.separator:not(:empty)::after {
  margin-left: 20px;
}

.social-btn:hover {
  background-color: transparent;
  color: var(--black);
}

.login-page-form {
  max-width: 490px;
  width: 100%;
}

#password-field:focus {
  border-color: #dfdfdf;
}
.style-custom {
  font-size: 40px !important;
}

/* login-page-end */
/* register-page-start */
#checked[type="checkbox"],
#check[type="checkbox"] {
  accent-color: #000;
  width: 20px;
  height: 20px;
}
.error-signup {
  font-size: 14px;
  display: flex;
  color: red;
  font-weight: 400;
  flex-wrap: wrap;
  padding-left: 10px;
}

.geoplugin-img {
  width: 213px;
  object-fit: cover;
}
/* register-page-end */
/* contact-page-start */
.connect-button .icon {
  width: 50px;
  object-fit: cover;
  margin-right: 10px;
  margin-top: -10px;
}
.connect-button span {
  color: var(--green);
}
.contentradius-cusom {
  border-radius: 30px;
  padding: 100px;
}
.contentradius-cusom:before {
  content: "";
  position: absolute;
  background-image: url("/img/footer-left.svg");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.contact-lets textarea {
  border-radius: 10px;
  background-color: #f1f1f1;
  border-color: #f1f1f1;
  width: 100%;
}
.recaptcha-text {
  background-color: var(--lightgreen);
  padding: 30px 20px;
  border-radius: 20px;
}
/* contact-page-end */
.apple-icon {
  width: auto;
  height: 24px;
  object-fit: cover;
}
.anchor-static {
  border: 1px solid var(--black);
  text-align: center;
  padding: 10px;
}

.copy-btn:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.copied-badge {
  display: none;
  position: absolute;
  top: -25px;
  right: 0px;
  background: rgb(40, 167, 69);
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 12px;
}

.copied-badge.show {
  display: inline;
  opacity: 1;
}
.resoonse_api {
  max-height: 334px;
  border: 1px solid #DEE3BD;
  border-radius: 10px;
  overflow: auto;
  padding: 20px;
}
.search-response {
  position: relative;
  background: transparent;
  border: 1px solid #DEE3BD;
  display: flex;
  align-items: center;
  border-radius: 10px;
}
.search-response input {
  color: #DEE3BD;
  padding: 15px 20px;
  border: unset;
  background: transparent;
}
.search-response button {
  border-left: 1px solid #DEE3BD;
  padding: 15px 20px;
  border-radius: unset;
}
.geo-text { font-size: 16px; }
.geo-yellow { color: #F9FFD2; }
.geo-green { color: #C6EC64; }
.geo-red { color: #FF6347; }

.resoonse_api .copy-icon{
  display: inline-block;
  float: right;
}
.resoonse_api > span {
  display: block;
}
.search-response input:focus {
  background: transparent;
  color: #DEE3BD !important;
}
.search-response input::placeholder{
color: #fff;
}
/* ---media query start--- */

.navbar  .has-children > a {
  position: relative;
  padding-right: 20px;
}
.site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #89ba16;
  -webkit-box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.2);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

/* Hide dropdown by default */
.nav-item.dropdown .dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

section.geo-targetting {
  padding-bottom: 100px;
}


/* Show dropdown on hover (desktop only) */
@media (min-width: 1025px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* Show dropdown when Bootstrap show class is present (mobile) */
.nav-item.dropdown.show .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.webservicesDropdown {
  min-width: 300px;
}
.productsDropdown {
  min-width: 250px;
}

/* Navbar dropdown styles */
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background-color: var(--lightgreen);
}

@media (max-width: 1024px) {
  .navbar {
    overflow-y: auto;
  }
}

@media (min-width: 1025px) {
  .navbar {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar .navbar-toggler {
    display: none;
  }

  .navbar .navbar-collapse {
    display: flex !important;
  }

  .navbar .navbar-nav {
    flex-direction: row;
  }

  .navbar .dropdown-menu {
    position: absolute !important;
    z-index: 1050;
    left: auto;
    top: 100%;
    margin-top: 0.5rem;
  }

 .navbar .dropdown-item {
    padding: 6px;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown-item:active {
    background-color: white;
    color: var(--black);
  }
}

@media (min-width: 1025px) {
  .nav-line-hover::after {
    content: "";
    position: absolute;
    border-bottom: 3px solid var(--green);
    width: 100%;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.35s;
  }
  .nav-line:hover .nav-line-hover::after {
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 768px) {
  .input-col-wrapper {
    width: 35%;
  }
}

@media (max-width: 1440px) {
  .globe-mark img,
  .globe-mark-half img {
    width: 220px;
    object-fit: cover;
  }

  .login-content {
    max-width: 560px;
    padding: 20px 50px;
  }

  .login-content input {
    padding: 10px;
  }

  .globe-img img {
    width: 420px;
    object-fit: cover;
  }

  .documentaion-content p {
    font-size: 18px;
  }

  .banner-section p {
    font-size: 16px !important;
  }
  .geo-targetting h4 {
    font-size: 20px !important;
  }
  .geo-litedatabase p {
    font-size: 16px !important;
  }
  h1,
  h2 {
    font-size: 45px;
  }
  .connect-button h1 {
    font-size: 40px !important;
  }
  .login-page-form {
    max-width: 380px;
    padding: 20px;
  }
  .style-custom {
    font-size: 20px !important;
  }
}

@media (max-width: 1024px) {
  .banner-section {
    height: 100%;
  }

  .common-width {
    width: 100%;
    margin: 15px 0;
  }

  .banner-section h1 {
    font-size: 38px;
    margin: 20px 0;
  }

  h1,
  h2,
  h3,
  h4 {
    text-align: center;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 32px !important;
  }

  .banner-section p,
  .documentaion-content p {
    text-align: center;
    font-size: 16px !important;
  }

  .btn-login {
    width: 100%;
    margin-bottom: 20px;
  }

  section {
    padding: 40px 0 0;
  }

  .globe-img {
    top: -77px !important;
    right: 0;
    left: auto !important;
    transform: translateX(0);
  }

  .globe-img img {
    width: 180px;
  }

  .globe-mark-half {
    display: none;
  }

  .input-col-wrapper {
    margin-bottom: 20px;
  }

  .tabs-content-section button {
    font-size: 14px !important;
    padding: 8px;
  }

  .tabs-list p {
    font-size: 14px;
  }

  .tabs-wrapper {
    border-radius: 0;
  }

  .tabs-list {
    margin: 20px auto 0 !important;
  }

  .btn-login.login-btn-mobile {
    background-color: transparent;
    color: #000;
    margin: 0;
  }

  .navbar-nav {
    margin-top: 30px;
  }

  .navbar-nav li {
    border-bottom: 1px solid var(--lightgreen);
    padding: 15px 0;
  }

  .form-custom a {
    border-bottom: 1px solid var(--lightgreen);
    width: 100%;
    text-align: left;
    padding: 22px 0;
  }

  .geo-litedatabase h3 {
    font-size: 30px;
  }

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

  .footer-feilds {
    width: 100%;
  }

  .mobile-view-show {
    display: block;
  }

  .geo-litedatabase {
    margin: 50px 0 0;
  }

  .login-content {
    max-width: 340px;
    padding: 0;
  }

  .footer-copy-custom {
    text-align: center;
  }

  .footer-copy {
    margin: 0 auto 40px;
    order: 1 !important;
  }

  .footer-copy-custom p {
    order: 2 !important;
  }

  .footer {
    padding: 20px 0;
  }

  .custom-row-design a img {
    display: block;
    margin: 0 auto;
  }

  .footer::before {
    background-image: url(/img/globe-mobile.svg);
    width: 100%;
    left: 0;
    background-size: 50% auto;
    background-position: top 66% center;
  }

  .footer-link {
    padding-bottom: 50px;
  }

  .footer::after {
    display: none;
  }

  .custom-row-design hr {
    margin: 0 48px 0 0;
  }
  .geo-target {
    display: block;
  }
  .connect-button {
    display: block !important;
  }
  .contentradius-cusom:before {
    top: 59%;
    background-size: 50%;
  }
  .contentradius-cusom {
    padding: 50px 20px;
    max-width: 840px;
    width: 100%;
  }
  .connect-button .icon {
    display: block;
    margin: 20px auto;
  }
  .contact-paragraph {
    text-align: center;
  }
  .template--home .button-login {
    color: #fff;
  }
  .sign-btn,
  .button-login {
    border: 0;
    border-bottom: 1px solid var(--lightgreen) !important;
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .contentradius-cusom {
    max-width: 360px;
  }

  .productsDropdown {
    min-width: auto;
    max-width: 100%;
    padding: 10px;
  }

  .productsDropdown .row {
      flex-wrap: wrap; 
  }

  .productsDropdown .col-6 {
      width: 100%; 
      padding: 5px 0;
  }

  .productsDropdown .dropdown-item {
      white-space: normal; 
  }

}

/* ---trust-metrics-section-start--- */
.trust-metrics-section {
  background-color: var(--lightgreen);
  padding: 80px 0;
}

.trust-metric-card {
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.trust-metric-card:hover {
  transform: translateY(-5px);
}

.trust-metric-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-metric-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.trust-metric-label {
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
  margin: 0;
}

.rating-section-home {
  padding: 20px 0;
}

.rating-section-home .rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rating-section-home .stars {
  display: flex;
  justify-content: center;
}

/* ---trust-metrics-section-end--- */

/* ---how-it-works-section-start--- */
.how-it-works-section {
  background-color: #fff;
  padding: 80px 0;
}

.how-it-works-content {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-content .h2-heading-geo {
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  line-height: 50px;
}

.how-it-works-content .intro-text {
  font-size: 18px;
  color: #595960;
  line-height: 28px;
  max-width: 700px;
  margin: 0 auto;
}

.how-it-works-section .feature-card {
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.how-it-works-section .feature-card .h3-heading-geo {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  line-height: 26px;
  margin-bottom: 16px;
  transition: color 0.3s ease;
  white-space: nowrap;
  width: 100%;
}

.how-it-works-section .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(198, 236, 100, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.how-it-works-section .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(198, 236, 100, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(198, 236, 100, 0.3);
}

.how-it-works-section .feature-card:hover::before {
  opacity: 1;
}

.how-it-works-section .feature-card .h3-heading-geo {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  line-height: 26px;
  margin-bottom: 16px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.how-it-works-section .feature-card:hover .h3-heading-geo {
  color: var(--black);
}

.how-it-works-section .feature-card .cards-paragraph {
  font-size: 16px;
  line-height: 24px;
  color: #595960;
  flex-grow: 1;
}

.how-it-works-section .feature-number {
  margin-bottom: 24px;
}

.how-it-works-section .feature-number img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 2px 4px rgba(198, 236, 100, 0.2));
  transition: transform 0.3s ease;
}

.how-it-works-section .feature-card:hover .feature-number img {
  transform: scale(1.05);
}

.how-it-works-section .feature-number span {
  font-size: 32px;
  color: var(--black);
  font-weight: 700;
  background: linear-gradient(135deg, var(--green) 0%, rgba(198, 236, 100, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how-it-works-section .btn-login {
  background-color: var(--green);
  color: var(--black);
  border: 2px solid var(--green);
  padding: 14px 40px;
  font-size: 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(198, 236, 100, 0.3);
}

.how-it-works-section .btn-login:hover {
  background-color: var(--black);
  color: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 236, 100, 0.4);
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 60px 0;
  }
  
  .how-it-works-content .h2-heading-geo {
    font-size: 32px;
    line-height: 40px;
  }
  
  .how-it-works-content .intro-text {
    font-size: 16px;
  }
  
  .how-it-works-section .feature-card {
    padding: 30px 24px;
    margin-bottom: 24px;
  }
  
  .how-it-works-section .feature-card:hover {
    transform: translateY(-4px);
  }
  
  .how-it-works-section .feature-card .h3-heading-geo {
    font-size: 18px;
    white-space: normal;
    line-height: 24px;
    overflow: visible;
  }
}
/* ---how-it-works-section-end--- */

/* ---testimonials-section-start--- */
.testimonials-section {
  background-color: #fff;
  padding: 100px 0;
}

.testimonials-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 60px;
}

.testimonial-card-home {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 2px solid transparent;
  background: linear-gradient(#FFFFFF, #FFFFFF) padding-box, 
              linear-gradient(90deg, #121A00 -7%, #374B01 -74%, #BEDC71 10%, #BEDC71 27%, #374B01 100%) border-box;
  background-clip: padding-box, border-box;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-home:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 16px;
  line-height: 24px;
  color: #595960;
  font-weight: 400;
  flex-grow: 1;
}

.testimonial-card-home .stars {
  display: flex;
  align-items: center;
}

.reviewer-avatar {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .trust-metric-number {
    font-size: 36px;
  }
  
  .trust-metric-label {
    font-size: 16px;
  }
  
  .testimonials-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .trust-metrics-section {
    padding: 60px 0;
  }
  
  .trust-metric-number {
    font-size: 32px;
  }
  
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .testimonial-card-home {
    padding: 20px;
  }
  
  .rating-section-home {
    flex-direction: column;
    gap: 20px;
  }
}
/* ---testimonials-section-end--- */

/* ---pricing-section-start--- */
.h2-heading-geo {
    font-size: 52px;
    line-height: 57px;
    font-weight: 600;
    color: var(--light-black-c1);
}

.pricing-inner .plans-include {
    font-size: 24px;
}

.hero-list-wrap {
    gap: 10px;
    margin-bottom: 46px;
}

.hero-list-item {
    font-size: 14px;
    color: #16161B;
}

.hero-list-wrap li.hero-list-item::before {
    position: absolute;
    content: '';
    top: 2px;
    left: 0;
    width: 14px;
    height: 14px;
    background-image: url('../img/right-1.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.tabs-urtas-col {
    margin-bottom: 46px;
    width: 300px;
}

.pricing-section-tool .tabs-urtas-col .nav-item {
    width: 50%;
}

.tabs-urtas-col .nav-item:first-child .nav-link {
    border-radius: 50px 0 0 50px;
}

.pricing-section-tool .tabs-urtas-col .nav-item .nav-link {
    width: 100%;
}

.tabs-urtas-col .nav-item:last-child .nav-link {
    border-radius: 0 50px 50px 0;
}

.tabs-urtas-col .badge {
    border: 2px solid transparent;
    color: var(--light-green-c6);
    font-size: 9px;
    background: linear-gradient(91.04deg, #080809 0.81%, #111602 25.53%, #36470A 51.22%, #293706 76.4%, #1F2B01 97.76%);
}

.pricing-inner {
    border: 2px solid transparent;
    background: linear-gradient(#1E1A25, #1E1A25) padding-box, linear-gradient(90deg, #121A00 -7%, #374B01 -74%, #BEDC71 10%, #BEDC71 27%, #374B01 100%) border-box;
    background-clip: padding-box, border-box;
    border-radius: 34px;
    padding: 40px 50px;
    color: #F3F3F3;
}

.pricing-border {
    border-bottom: 1px solid transparent;
    background-image: linear-gradient(#1E1A25, #1E1A25), linear-gradient(90deg, #121A00 -4%, #374B01 -74%, #BEDC71 10%, #BEDC71 27%, #374B01 100%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    display: inline-block;
    padding-bottom: 16px;
}

.code-list-item {
    color: #EEEEEE;
    padding-left: 32px;
}

.code-list-item::before, .cross-icon::before {
    position: absolute;
    content: '';
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    background-image: url('../img/white-arrow.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.myr-tabs.bg-gradient-green {
    border-radius: 27px;
    padding: 20px 20px 2px;
}

.bg-gradient-green {
    background: linear-gradient(107.67deg, #FCFFE0 -13.31%, #D2DC72 45.91%, #6B7600 103.2%);
    border-radius: 42px;
}

.myr-tabs .plan-label.selected {
    background: linear-gradient(107.67deg, #FCFFE0 -13.31%, #D2DC72 45.91%, #6B7600 103.2%);
    color: #000;
    border: 2px solid #FFFFFF;
}

section.pricing-section-tool {
    padding-top: 93px;
    padding-bottom: 93px;
}

.pricing-section-tool .plan-label {
    background-color: #fff;
    border-radius: 24px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-section-tool .plan-label:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.myr-tabs .plan-label.selected-plan {
    /* background: linear-gradient(107.67deg, #FCFFE0 -13.31%, #D2DC72 45.91%, #6B7600 103.2%); */
    color: #000;
    border: 2px solid #FFFFFF;
}

.pricing-section-tool .hero-cta {
    max-width: 148px;
    margin: 38px auto 0;
    display: flex;
}

.myr-tabs .selected .form-check-input[type=radio] {
    background-color: #000;
    border-color: #000;
    background-image: none;
}

.myr-tabs .form-check-input[type=radio] {
    border: 1px solid #000;
}

.plan-tool p {
    font-size: 16px;
    line-height: 20px;
    color: #020D11;
}

.plan-tool .plan-inner-heading {
    font-size: 20px;
    font-weight: 600;
    color: #020D11;
}

.myr-tabs .price {
    font-size: 34px;
    line-height: 70.74px;
    color: #020D11;
}

.tabs-urtas-col button {
    border: 1px solid #DBDBDB;
    background-color: #FFFFFF;
    color: #16161B;
    padding: 17px 26px;
    font-size: 14px;
    font-weight: 600;
}

.tabs-urtas-col button.active {
    background-color: #0D0D0D !important;
    color: var(--light-green-c6) !important;
}

.tabs-urtas-col .nav-link:hover {
    color: #16161B;
}

.myr-tabs .form-check-input:focus {
    border-color: transparent;
    outline: none;
    box-shadow: none;
}

.app-include-wrap {
    padding: 104px 126px 55px;
    overflow: hidden;
    position: relative;
}

.app-include-wrap::before {
    content: "";
    background-image: url('../img/pricing-img.svg');
    position: absolute;
    width: 329px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top;
    top: 0;
    left: 0;
    z-index: 1;
}

.tool-pricing {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ---pricing-section-end--- */

/* ---reviews-section-start--- */
.cust-says.testimonial-popup-wrapper {
    padding: 93px 0 145px;
}

.cust-says.testimonial-popup-wrapper .section-heading {
    margin-bottom: 53px;
}

.testimonial-popup-wrapper .row {
    row-gap: 24px;
}

.testimonial-popup-wrapper .testimonial-card {
    padding: 20px;
    border-radius: 34.2928px;
    border: 2px solid transparent;
    background: linear-gradient(#FFFFFF, #FFFFFF) padding-box, linear-gradient(90deg, #121A00 -7%, #374B01 -74%, #BEDC71 10%, #BEDC71 27%, #374B01 100%) border-box;
    background-clip: padding-box, border-box;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-popup-wrapper .testimonial-card .top-rating-wrap {
    margin-bottom: 20px;
}

.testimonial-popup-wrapper .testimonial-card .review-date {
    font-size: 14px;
    line-height: 100%;
    color: #16161B;
}

.testimonial-popup-wrapper .testimonial-card .main-content {
    line-height: 24px;
    color: #595960;
    margin-bottom: 22px;
}

.testimonial-popup-wrapper .reviewer {
    flex: auto;
    margin-top: auto;
}

.testimonial-popup-wrapper .testimonial-card .reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 75px;
}

.testimonial-popup-wrapper .testimonial-card .reviewer .reviewer-name {
    color: #16161B;
    line-height: 100%;
}

.testimonial-popup-wrapper .section-heading h2 {
    font-size: 40px;
    font-weight: 700;
    color: #16161B;
    margin-bottom: 16px;
}

.testimonial-popup-wrapper .section-heading p {
    font-size: 16px;
    color: #595960;
}

.testimonial-popup-wrapper .stars img {
    width: auto;
    height: auto;
}

.testmonial-slider-tool {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
}

.testmonial-slider-tool .testimonial-card {
    scroll-snap-align: start;
    min-width: 295px;
}

.btn-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}

.prev-btn, .next-btn {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn img, .next-btn img {
    width: 100%;
    height: auto;
}

/* ---reviews-section-end--- */

/* Responsive styles for pricing and reviews */
@media (max-width: 991px) {
    .pricing-section-tool .row {
        position: relative;
        z-index: 2;
    }

    .h2-heading-geo {
        font-size: 24px;
        line-height: 28.79px;
    }

    .tabs-urtas-col {
        margin-bottom: 21px;
    }

    .pricing-inner {
        padding: 25px 16px;
    }

    .myr-tabs.bg-gradient-green {
        padding: 12px 12px 2px;
    }

    .plan-tool .plan-inner-heading {
        font-size: 18px;
    }

    .plan-tool p {
        font-size: 14px;
        line-height: 18px;
    }

    .myr-tabs .price {
        font-size: 32px;
    }

    .app-include-wrap {
        padding: 14px 10px 20px;
        border-radius: 24px;
    }

    .app-include-wrap::before {
        background-size: 180px;
        background-position: top left;
    }

    .testimonial-popup-wrapper .testimonial-card {
        width: 295px;
        height: inherit !important;
        margin: 0px 8px;
    }

    .pricing-section-tool {
        padding-top: 59px;
        padding-bottom: 59px;
    }
}

@media (max-width: 767px) {
    .cust-says.testimonial-popup-wrapper {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .testimonial-popup-wrapper h2 {
        line-height: 55px !important;
    }

    .testimonial-popup-wrapper .testimonial-card {
        margin: 40px auto;
    }
}
