/* Apply Noto Sans as the default font for body and all text */
body {
  font-family: "Noto Sans", sans-serif;
}

/* Apply Orbitron for headings (h1 to h6) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat Alternates", sans-serif;
}

.hero-heading {
  font-family: "Montserrat Alternates", sans-serif !important;
  font-size: 65px !important;
  font-weight: 700 !important;
}

.hero-subheading {
  font-family: "Noto Sans", sans-serif !important;
  font-size: 23px !important;
  color: #2f3938 !important;
}

@media (max-width: 992px) {
  .hero-heading {
    font-size: 30px !important;
  }
  .hero-subheading {
    font-size: 20px !important;
  }
}

/* Reset and Base Styles */
.custom-header * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.custom-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: fit-content;
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.custom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 40px;
}

/* Logo */
.custom-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.custom-logo-img {
  height: 54px;
  width: auto;
  transition: transform 0.3s ease;
}

.custom-logo:hover .custom-logo-img {
  transform: scale(1.05);
}

/* Mobile Toggle */
.custom-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.custom-mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #374151;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Menu Container */
.custom-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 20px;
}

/* Menu List */
.custom-menu-list {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  flex: 1;
  justify-content: right;
}

/* Menu Items */
.custom-menu-item {
  position: relative;
}

.custom-menu-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px;
  color: #2f3938;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: "Noto Sans", sans-serif;
  transition: color 0.3s ease;
  position: relative;
}

.custom-menu-link:hover {
  color: #006400;
}

.custom-menu-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

.custom-menu-link:hover::after {
  width: 70%;
}

/* Arrow Icon */
.custom-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.custom-has-dropdown:hover .custom-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.custom-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  list-style: none;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 8px;
  padding: 8px 0;
}

.custom-has-dropdown:hover .custom-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: #2f3938;
  font-family: "Noto Sans", sans-serif;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
}

.custom-dropdown-link:hover {
  background: #dee6e0;
  color: #006400;
  padding-left: 24px;
}

/* Actions Container */
.custom-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Flag Icon */
.custom-flag {
  border-radius: 2px;
  vertical-align: middle;
}

/* CTA Button */
.custom-cta {
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  height: 50px;
  min-width: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all 0.4s ease-in-out;
}

/* Gradient Fill Button */
.custom-cta.gradient-fill {
  background-image: linear-gradient(
    to right,
    #006400,
    #dee6e0,
    #006400,
    #dee6e0
  );
  background-size: 300% 100%;
  color: #fff !important;
  box-shadow: 0 4px 15px 0 rgba(83, 176, 57, 0.75);
}

.custom-cta.gradient-fill:hover {
  background-position: 100% 0;
}

/* Outline Button */
.custom-cta.outline {
  background: transparent; /* No fill by default */
  border: 2px solid #006400; /* Outline color */
  color: #006400 !important; /* Text matches outline */
  box-shadow: none;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.4s ease;
}

/* Hover: gradient fill */
.custom-cta.outline:hover {
  background-image: linear-gradient(
    to right,
    #006400,
    #dee6e0,
    #006400,
    #dee6e0
  );
  background-size: 300% 100%;
  background-position: 100% 0;
  color: #fff !important; /* White text on gradient */
  border-color: transparent; /* Hide outline since it’s filled */
}

.custom-cta:focus {
  outline: none;
}

/* Mobile Styles */
@media (max-width: 991px) {
  .custom-mobile-toggle {
    display: flex;
  }

  .custom-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .custom-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .custom-menu-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .custom-menu-link::after {
    display: none;
  }

  .custom-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 0;
    padding-left: 20px;
    display: none;
  }

  .custom-has-dropdown.active .custom-dropdown {
    display: block;
  }

  .custom-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

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

/* Style 1: Animated Gradient Text */
.gradient-text-animated {
  background: linear-gradient(
    to right,
    #006400,
    #dee6e0,
    #006400,
    #dee6e0,
    #006400
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s linear infinite;
  line-height: 1.2;
  margin: 0;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.gradient-shadow-box {
  position: relative;
  background: #fff; /* Box background */
  padding: 20px;
  border-radius: 8px;
  z-index: 1;
}

/* Gradient shadow */
.gradient-shadow-box::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: inherit;
  background-image: linear-gradient(
    to right,
    #006400,
    #dee6e0,
    #006400,
    #dee6e0
  );
  z-index: -1;
  opacity: 0.8; /* control intensity */
  filter: blur(6px); /* keep some softness */
}

/* Style 3: Gradient with Outline */
.gradient-text-outline {
  background: linear-gradient(to right, #006400, #dee6e0, #006400, #dee6e0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.08);
  line-height: 1.2;
  margin: 0;
}

/* Vertical Spacing */

.custom-v-spacing-large {
  padding: 80px 0 !important;
}

.custom-v-spacing-medium {
  padding: 40px 0 !important;
}

.custom-v-spacing-small {
  padding: 20px 0 !important;
}

.custom-v-spacing-extra-small {
  padding: 10px 0 !important;
}

.forming {
  width: 100%;
  border: 2px solid #dee6e0;
  border-radius: 50px;
  padding: 25px;
  outline: none;
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
  background-color: #fff;

  /* Force text color */
  color: #2f3938 !important; /* Use !important if other rules override it */

  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Placeholder color (optional) */
.forming::placeholder {
  color: #888 !important;
}

/* Focus state */
.forming:focus {
  border-color: #006400;
  box-shadow: 0 0 8px rgba(0, 146, 69, 0.3);
  color: #000 !important; /* ensure focus text is black */
}

.forming-header {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2f3938 !important;
  text-align: center;
  margin: 20px 0;
}

/* IntlTelInput */

/* Style the input field */
.iti__tel-input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f8f9fa;
  /* Your desired background color */
  color: #333;
}

/* Style the country selector button */
.iti__country-container {
  background-color: #f8f9fa;
  /* Match input background */
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
}

/* Style the dropdown list */
.iti__country-list {
  background-color: #f8f9fa;
  /* Your desired dropdown background */
  border: 1px solid #243446;
  border-radius: 4px;
  max-height: 200px;
}

/* Style individual country items in dropdown */
.iti__country {
  background-color: #06182c;
  color: #92a3ab;
  padding: 8px 12px;
}

/* Hover effect for dropdown items */
.iti__country:hover {
  background-color: #e9ecef;
}

/* Selected/highlighted country */
.iti__country--highlight {
  background-color: #007bff;
  color: white;
}

/* Ensure full width */
.iti {
  width: 100%;
}

/* Texts */
.custom-heading-text {
  font-size: 52px !important;
  font-weight: 700 !important;
  color: #2f3938 !important;
  text-align: center;
}

.custom-heading-text-2 {
  font-size: 38px !important;
  font-weight: 700 !important;
}

.custom-subheading-text {
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #2f3938 !important;
}

.custom-paragraph-text {
  font-size: 16px !important;
  font-weight: 400 !important;
  font-family: "Noto Sans", sans-serif;
}

.paragraph-container p,
.paragraph-container p font,
.paragraph-container p font font {
  font-size: 17px !important;
  font-weight: 400 !important;
  font-family: "Noto Sans", sans-serif;
}

@media (max-width: 991px) {
  .custom-heading-text {
    font-size: 38px !important;
  }
  .custom-heading-text-2 {
    font-size: 38px !important;
  }
  .custom-subheading-text {
    font-size: 18px !important;
  }
}

/* Backgrounds */
.custom-bg-light {
  background-color: #f0f5f2;
}

/* Default (inactive) tab buttons */
.nav-link.pix-tabs-btn {
  background: transparent; /* No fill by default */
  border: 2px solid #006400; /* Outline color */
  color: #006400 !important; /* Text matches outline */
  box-shadow: none;
  padding: 2px 20px !important;
  border-radius: 50px;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none;
  transition: all 0.4s ease;
  background-size: 1536px 714px;
  background-position: -518.275px -1014.7px;
  background-attachment: scroll;
}

/* Hover state */
.nav-link.pix-tabs-btn:hover {
  background-image: linear-gradient(
    to right,
    #006400,
    #dee6e0,
    #006400,
    #dee6e0
  );
  background-size: 300% 100%;
  background-position: 100% 0;
  color: #fff !important; /* White text on gradient */
  border-color: transparent; /* Hide outline since it’s filled */
}

/* Active tab button */
.nav-link.pix-tabs-btn.active {
  background-image: linear-gradient(
    to right,
    #006400,
    #dee6e0,
    #006400,
    #dee6e0
  ) !important;
  background-size: 300% 100%;
  background-position: 100% 0;
  color: #fff !important; /* White text on gradient */
  border-color: transparent; /* Hide outline since it’s filled */
}

/* Cards Section */
.gradient-cards-section {
  padding: 30px 20px;
  background: inherit;
}

.gradient-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Individual Card */
.gradient-card {
  position: relative;
  height: 100%;
  min-height: 150px;
}

.gradient-card-inner {
  position: relative;
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px 10px;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Animated Gradient Border */
.gradient-card-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(135deg, #006400, #dee6e0, #006400, #dee6e0);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientRotate 4s ease infinite;
  pointer-events: none;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.gradient-card:hover .gradient-card-border {
  opacity: 1;
}

/* Card Content */
.gradient-card-content {
  position: relative;
  z-index: 1;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon Styling */
.gradient-card-icon {
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.gradient-icon-wrapper {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 146, 69, 0.1),
    rgba(252, 238, 33, 0.1),
    rgba(0, 146, 69, 0.1)
  );
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.gradient-icon-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.gradient-card:hover .gradient-icon-wrapper::before {
  left: 100%;
}

.gradient-card:hover .gradient-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.gradient-icon-wrapper svg,
.gradient-icon-wrapper i {
  font-size: 40px;
  width: 40px;
  height: 40px;
}

/* Title */
.gradient-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
  transition: all 0.4s ease;
}

.gradient-card:hover .gradient-card-title {
  background: linear-gradient(to right, #006400, #dee6e0, #006400);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Content Text */
.gradient-card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 20px;
  flex: 1;
}

.gradient-card:hover .gradient-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Hover Effects */
.gradient-card:hover .gradient-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 146, 69, 0.1);
}

/* Alternate Card Styles */
.gradient-card:nth-child(even) .gradient-card-border {
  background: linear-gradient(-135deg, #006400, #dee6e0, #006400, #dee6e0);
  background-size: 300% 300%;
  animation: gradientRotate 5s ease infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .gradient-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gradient-card {
    min-height: 300px;
  }

  .gradient-card-inner {
    padding: 30px 20px;
  }

  .gradient-card-title {
    font-size: 20px;
  }

  .gradient-card-text {
    font-size: 14px;
  }

  .gradient-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .gradient-icon-wrapper svg,
  .gradient-icon-wrapper i {
    font-size: 30px;
    width: 30px;
    height: 30px;
  }
}

/* Loading Animation */
.gradient-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.gradient-card:nth-child(1) {
  animation-delay: 0.1s;
}

.gradient-card:nth-child(2) {
  animation-delay: 0.2s;
}

.gradient-card:nth-child(3) {
  animation-delay: 0.3s;
}

.gradient-card:nth-child(4) {
  animation-delay: 0.4s;
}

.gradient-card:nth-child(5) {
  animation-delay: 0.5s;
}

.gradient-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Counter Section */
.gradient-counter-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #006400 0%, #dee6e0 50%, #006400 100%);
  background-size: 200% 200%;
  animation: gradientBackground 10s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Decorative Elements */
.gradient-counter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 146, 69, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.gradient-counter-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 146, 69, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

/* Container */
.gradient-counter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Individual Counter Item */
.gradient-counter-item {
  animation: fadeInScale 0.8s ease forwards;
  opacity: 0;
}

.gradient-counter-item:nth-child(1) {
  animation-delay: 0.1s;
}

.gradient-counter-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gradient-counter-item:nth-child(3) {
  animation-delay: 0.3s;
}

.gradient-counter-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Counter Card */
.gradient-counter-card {
  position: relative;
  padding: 40px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
}

.gradient-counter-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Background Circle Effect */
.gradient-bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 146, 69, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: transform 0.6s ease;
  z-index: -1;
}

.gradient-counter-card:hover .gradient-bg-circle {
  transform: translate(-50%, -50%) scale(1);
}

/* Icon Styling */
.gradient-counter-icon {
  margin-bottom: 20px;
  display: inline-block;
}

.gradient-icon-circle {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 146, 69, 0.1),
    rgba(0, 146, 69, 0.1)
  );
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
  transition: all 0.4s ease;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 146, 69, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(252, 238, 33, 0);
  }
}

.gradient-counter-card:hover .gradient-icon-circle {
  transform: rotate(360deg) scale(1.1);
  animation: none;
}

.counter-check-icon {
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Counter Number */
.gradient-counter-number {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin: 20px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 146, 69, 0.1);
  line-height: 1;
  transition: all 0.4s ease;
}

.gradient-counter-card:hover .gradient-counter-number {
  transform: scale(1.1);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 146, 69, 0.3);
}

.counter-value {
  display: inline-block;
}

.counter-symbol {
  font-size: 42px;
  margin-left: 4px;
}

/* Gradient Divider */
.gradient-counter-divider {
  margin: 20px auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.gradient-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 146, 69, 0.8),
    transparent
  );
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.gradient-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.gradient-counter-card:hover .gradient-line {
  width: 80px;
  transition: width 0.4s ease;
}

/* Counter Text */
.gradient-counter-text {
  font-size: 18px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .gradient-counter-section {
    padding: 60px 20px;
  }

  .gradient-counter-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .gradient-counter-card {
    padding: 30px 20px;
  }

  .gradient-counter-number {
    font-size: 42px;
  }

  .counter-symbol {
    font-size: 32px;
  }

  .gradient-icon-circle {
    width: 60px;
    height: 60px;
  }

  .counter-check-icon {
    width: 30px;
    height: 30px;
  }

  .gradient-counter-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .gradient-counter-container {
    grid-template-columns: 1fr;
  }
}

.bn46 {
  width: 150px;
  height: 50px;
}

.bn45 {
  width: 170px;
  height: 50px;
}

/* Property Showcase Section */
.property-showcase-section {
  padding: 40px 20px;
  background: initial;
  position: relative;
}

.property-alt-section {
  background: #ffffff;
}

.property-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
}

.property-section-title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px 0;
  background: linear-gradient(to right, #006400, #dee6e0, #006400);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.property-title-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #006400, #dee6e0, #006400);
  margin: 0 auto;
  border-radius: 2px;
}

/* Property Cards Grid */
.property-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Property Card */
.property-card {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.property-card:nth-child(1) {
  animation-delay: 0.1s;
}
.property-card:nth-child(2) {
  animation-delay: 0.2s;
}
.property-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.property-card-inner {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.property-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 146, 69, 0.1),
    rgba(0, 168, 197, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  pointer-events: none;
}

.property-card:hover .property-card-inner {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(0, 146, 69, 0.1);
}

.property-card:hover .property-card-inner::before {
  opacity: 1;
}

/* Image Wrapper */
.property-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.property-card:hover .property-image {
  transform: scale(1.15);
}

/* Gradient Overlay */
.property-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.property-card:hover .property-gradient-overlay {
  opacity: 1;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.property-badge-featured {
  background: linear-gradient(135deg, #fcee21, #d9e021);
  color: #1f2937;
  box-shadow: 0 4px 15px rgba(252, 238, 33, 0.4);
}

/* Hover Icon */
.property-hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006400;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.property-card:hover .property-hover-icon {
  transform: translate(-50%, -50%) scale(1) rotate(90deg);
}

.property-card-featured .property-hover-icon {
  color: #fcee21;
}

/* Content */
.property-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 15px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.property-card:hover .property-title {
  background: linear-gradient(to right, #006400, #00a8c5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.property-description {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 25px 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Property Link */
.property-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #006400;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  position: relative;
}

.property-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #006400, #00a8c5);
  transition: width 0.3s ease;
}

.property-link:hover::after {
  width: 100%;
}

.property-link svg {
  transition: transform 0.3s ease;
}

.property-link:hover svg {
  transform: translateX(5px);
}

.property-card-featured .property-link {
  color: #fcee21;
}

.property-card-featured .property-link::after {
  background: linear-gradient(to right, #fcee21, #d9e021);
}

/* Responsive */
@media (max-width: 768px) {
  .property-showcase-section {
    padding: 60px 15px;
  }

  .property-section-header {
    margin-bottom: 40px;
  }

  .property-section-title {
    font-size: 36px;
  }

  .property-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .property-image-wrapper {
    height: 220px;
  }

  .property-content {
    padding: 25px 20px;
  }

  .property-title {
    font-size: 20px;
  }

  .property-description {
    font-size: 14px;
  }
}

/* Alternate Animation for Featured Cards */
.property-card-featured {
  animation: fadeInScale 0.8s ease forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* App CTA Section */
.app-cta-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(
      rgba(0, 0, 0, 0.75),
      /* darker overlay */ rgba(0, 0, 0, 0.75)
    ),
    url("../image/cta-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  min-height: 600px;
}

/* Background Overlay with Animation */
.app-cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 146, 69, 0.1),
    rgba(252, 238, 33, 0.1),
    rgba(0, 168, 197, 0.1)
  );
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  pointer-events: none;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Container */
.app-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Content */
.app-cta-content {
  animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Title */
.app-cta-title {
  font-size: 58px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Description */
.app-cta-description {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px 0;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* Download Buttons Container */
.app-download-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

/* Store Button */
.app-store-btn {
  display: inline-block;
  transition: all 0.3s ease;
  filter: brightness(1);
}

.app-store-btn img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.app-store-btn:hover {
  transform: translateY(-5px);
  filter: brightness(1.1);
}

.app-store-btn:hover img {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Right Image Section */
.app-cta-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Phone Image */
.app-phone-img {
  max-width: 450px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0px) rotate(-2deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

/* Floating Elements */
.app-float-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(252, 238, 33, 0.3) 0%,
    transparent 70%
  );
  z-index: 1;
}

.app-float-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -30px;
  animation: floatBubble 8s ease-in-out infinite;
}

.app-float-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -20px;
  background: radial-gradient(
    circle,
    rgba(217, 224, 33, 0.3) 0%,
    transparent 70%
  );
  animation: floatBubble 10s ease-in-out infinite reverse;
}

@keyframes floatBubble {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.8;
  }
}

/* Decorative Gradient Circles in Background */
.app-cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(252, 238, 33, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.app-cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 168, 197, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .app-cta-section {
    padding: 80px 20px;
    min-height: 500px;
  }

  .app-cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .app-cta-title {
    font-size: 36px;
  }

  .app-cta-description {
    font-size: 18px;
  }

  .app-phone-img {
    max-width: 350px;
  }

  .app-cta-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .app-cta-section {
    padding: 60px 15px;
    background-attachment: scroll;
  }

  .app-cta-title {
    font-size: 28px;
  }

  .app-cta-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .app-download-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .app-store-btn img {
    height: 48px;
  }

  .app-phone-img {
    max-width: 280px;
  }

  .app-float-1,
  .app-float-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .app-cta-title {
    font-size: 24px;
  }

  .app-cta-description {
    font-size: 14px;
  }

  .app-phone-img {
    max-width: 220px;
  }
}

.testimonial-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.glide {
  padding: 20px 0 60px 0;
}

.testimonial-card {
  text-align: center;
  position: relative;
  border-radius: 20px;
  padding: 40px 30px;
  margin: 0 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  height: auto;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 146, 69, 0.1) 0%,
    rgba(0, 146, 69, 0.1) 25%,
    transparent 50%
  );
  pointer-events: none;
}

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

.testimonial-text,
.testimonial-text p {
  flex: 1;
  color: #f0f0ef !important;
  font-family: "Noto Sans", sans-serif;
  font-size: 26px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 200;
  position: relative;
  z-index: 1;
  font-style: italic;
}

@media (max-width: 991px) {
  .testimonial-text,
  .testimonial-text p {
    font-size: 16px;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 600;
  font-family: "Satisfy", cursive;
  background-color: #f0f0ef;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.star-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 2px;
}

.star {
  color: #006400;
  font-size: 24px;
}

/* Glide customization */
.glide__bullets {
  bottom: 20px;
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  list-style: none;
}

/* Floating particles animation */
.testimonial-card::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #006400;
  border-radius: 50%;
  top: 20%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::after {
  opacity: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Glass morphism effect */
.glass-overlay {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  transition: all 0.3s ease;
  opacity: 0;
}

.testimonial-card:hover .glass-overlay {
  opacity: 1;
  transform: rotate(45deg);
}

/* Responsive design */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
    margin: 0 5px;
    min-height: 300px;
  }

  .testimonial-text {
    font-size: 15px;
    margin-bottom: 25px;
  }
}

/* FAQs */
.faq-container {
  max-width: 800px !important;
  margin: 0 auto;
  margin-top: 30px;
}

.faq-item {
  position: relative;
  background: linear-gradient(
    135deg,
    #dee6e0 0%,
    #dee6e0 25%,
    #cceacb 50%,
    #99d4a9 75%,
    #33a866 100%
  ) !important;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 146, 69, 0.1) 0%,
    rgba(0, 146, 69, 0.3) 25%,
    transparent 50%
  );
  pointer-events: none;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 15px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(0, 146, 69, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-question {
  padding: 30px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #252525;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #262626;
}

.faq-question-text {
  flex: 1;
  margin-right: 20px;
}

.faq-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 146, 69, 0.1) 0%,
    rgba(202, 225, 248, 0.25) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border: 2px solid rgba(0, 146, 69, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #006400;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(
    135deg,
    rgba(0, 146, 69, 0.25) 0%,
    rgba(202, 225, 248, 0.25) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-color: rgba(0, 146, 69, 0.3);
  box-shadow: 0 0 20px rgba(0, 146, 69, 0.4);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

.faq-answer-content {
  padding: 0 30px 30px 30px;
  color: #252525;
  line-height: 1.7;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item.active .faq-answer-content {
  color: #252525;
}

/* Floating particles animation */
.faq-item::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(0, 146, 69, 0.5);
  border-radius: 50%;
  top: 20%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover::after {
  opacity: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Glass morphism effect */
.glass-overlay {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item:hover .glass-overlay {
  opacity: 1;
  transform: rotate(45deg);
}

/* Highlight border for active item */
.faq-item.active {
  border-color: rgba(0, 146, 69, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 12px 24px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(0, 146, 69, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Responsive design */
@media (max-width: 768px) {
  .faq-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .faq-answer-content {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Left Column - Info */
.contact-info {
  padding: 40px 0;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2b2b2b;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #303030;
  margin-bottom: 30px;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
  color: #303030;
}

.contact-details li a {
  color: inherit !important;
  text-decoration: none;
  display: inline-block;
  transition: color 0.4s ease, transform 0.3s ease;
  font-weight: 500;
}

.contact-details li a:hover {
  color: #006400 !important;
  /* smooth color change */
  transform: scale(1.03);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 146, 69, 0.15) 0%,
    rgba(0, 146, 69, 0.15) 100%
  );
  border: 2px solid rgba(0, 146, 69, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-icon:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 146, 69, 0.15) 0%,
    rgba(0, 146, 69, 0.15) 100%
  );
  border-color: rgba(0, 146, 69, 0.15);
  box-shadow: 0 0 20px rgba(0, 146, 69, 0.4);
}

.contact-icon::before {
  color: #006400;
  font-size: 20px;
  font-weight: bold;
}

.contact-icon.phone::before {
  content: "🕻";
}

.contact-icon.email::before {
  content: "✉︎";
}

.contact-icon.location::before {
  content: "➢";
}

.contact-icon.time::before {
  content: "⏱";
}

.custom-form {
  padding: 60px 10px;
}

.footer-description {
  font-size: 15px !important;
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  color: #dadad8 !important;
}

@media (max-width: 992px) {
  .footer-description {
    font-size: 14px !important;
  }
}

.footer-description a {
  color: #dadad8 !important;
  text-decoration: none;
  display: inline-block;
  transition: color 0.4s ease, transform 0.3s ease;
  font-weight: 800;
}

.footer-description a:hover {
  color: #006400 !important;
  /* smooth color change */
  transform: scale(1.02);
  /* subtle zoom effect */
}

.footer-logo {
  width: 215px !important;
  height: auto;
}

@media (max-width: 992px) {
  .footer-logo-container {
    /* the wrapper around the logo */
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center; /* centers vertically, if needed */
  }

  .footer-logo {
    width: 150px !important;
  }
}

.footer-description a svg {
  font-size: 22px;
}

.footer-nav-heading {
  color: #dadad8 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  white-space: nowrap;
  font-family: "Noto Sans", sans-serif;
}

.footer-nav-item {
  margin-bottom: 5px !important;
}

.footer-nav-item a {
  font-size: 15px !important;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400 !important;
  color: #dadad8 !important;
  white-space: nowrap;
}

.footer-nav-item a:hover {
  color: #006400 !important;
  /* smooth color change */
  transform: scale(1.02);
  /* subtle zoom effect */
}

.footer-column-container {
  padding: 20px 0;
  margin-left: 40px;
}

@media (max-width: 992px) {
  .footer-column-container {
    margin-left: 0;
  }
}

.footer-contact-info {
  font-weight: 300;
  font-size: 15px;
  color: #dadad8 !important;
  white-space: nowrap;
}

.footer-contact-info a {
  color: #dadad8 !important;
  text-decoration: none;
  display: inline-block;
  transition: color 0.4s ease, transform 0.3s ease;
  font-weight: 500;
}

.footer-contact-info a:hover {
  color: #006400 !important;
  /* smooth color change */
  transform: scale(1.03);
  /* subtle zoom effect */
}

.footer-download-btn {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-download-btn a img {
  height: 45px !important;
  width: 180px !important;
}

.footer-contact-info span {
  font-weight: 700;
}

.footer-copyright-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px !important;
  color: #dadad8 !important;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-text-col {
  flex: 1;
}

.about-text-content {
  text-align: right;
}

.about-text-content .about-description,
.about-text-content p,
.about-text-content p font,
.about-text-content p font font {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px !important;
  line-height: 1.6;
  color: #333;
}

.about-image-col {
  flex: 1.2;
  min-height: 600px;
}

.about-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 900px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 20px;
  }

  .about-text-content .about-description,
  .about-text-content p,
  .about-text-content p font,
  .about-text-content p font font {
    font-size: 16px !important;
  }

  .about-text-content {
    text-align: left;
  }

  .about-text-col,
  .about-image-col {
    width: 100%;
  }

  .about-image-col {
    min-height: 400px;
  }

  .about-image-wrapper {
    min-height: 400px;
  }
}

.custom-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
}

@media (max-width: 768px) {
  .custom-banner {
    height: 200px;
  }
}

.custom-banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Base color overlay */
.custom-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #110d09;
  height: fit-content;
  opacity: 0.5;
  z-index: 1;
}

.banner-container {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center; /* Center text horizontally */
}

/* Simplify the nested structure */
.caption-wrap,
.xrton-table-wrap,
.xrton-align-wrap {
  width: 100%;
  height: auto;
}

.caption-wrap-inner {
  width: 100%;
}

.banner-title {
  font-size: clamp(36px, 6vw, 70px) !important;
  line-height: 1.1 !important;
  margin: 0; /* Remove bottom margin that might affect centering */
  font-weight: 900;
  text-transform: capitalize;
  letter-spacing: 3px;

  background: linear-gradient(
    to right,
    #006400,
    #dee6e0,
    #006400,
    #dee6e0,
    #006400
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s linear infinite;
  line-height: 1.2;
  margin: 0;
}

.custom-gap {
  gap: 0px;
}

@media (max-width: 768px) {
  .custom-gap {
    gap: 0px;
  }
}

@keyframes fadeUpGlow {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: drop-shadow(0 0 5px rgba(0, 146, 69, 0.1));
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(0 0 10px rgba(0, 146, 69, 0.3))
      drop-shadow(0 0 20px rgba(83, 176, 57, 0.75))
      drop-shadow(0 0 40px rgba(0, 146, 69, 0.3))
      drop-shadow(0 0 80px rgba(0, 146, 69, 0.2))
      drop-shadow(0 0 120px rgba(0, 146, 69, 0.1));
  }
}

.custom-page-txt {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.custom-page-txt h3 {
  font-family: "Noto Sans", sans-serif !important;
}

.custom-page-txt p,
.custom-page-txt p span,
.custom-page-txt ul li,
.custom-page-txt ol li {
  color: #252525;
  line-height: 1.7;
  font-size: 16px !important;
  font-family: "Noto Sans", sans-serif !important;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .custom-page-txt > p,
  .custom-page-txt li p,
  .custom-page-txt li ul li {
    font-size: 16px;
  }
}

.footer-animate-btn {
  transition: all 0.3s ease !important;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
}
.footer-animate-btn:hover {
  transform: scale(1.05) !important;
}

.footer-animate-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    #006400,
    #dee6e0
  ); /* subtle green gradient */
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* soft shadow */
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.footer-animate-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    135deg,
    #00a86b,
    #006400
  ); /* subtle hover shift */
}

.footer-animate-btn a:hover {
  color: #fff;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.pricing-box {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid #3a3a3a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 100, 0, 0.3);
}

.tier-title {
  display: block;
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tier-price {
  text-align: center;
  display: block;
  font-size: 22px;
  color: #006400;
  margin-bottom: 25px;
  font-weight: 600;
}

.features-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #3a3a3a;
}

.feature-item:last-child {
  border-bottom: none;
}

.check-icon {
  min-width: 18px;
  width: 18px;
  height: 18px;
  margin-right: 12px;
}

.feature-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-box {
    padding: 25px 15px;
  }
}
