:root {
  --themeColor: #508C01;
  --primaryColor: #F6AD01;
  --blackColor: #000;
  --whiteColor: #fff;
  --textcolor: #1a1e25;
  --textLightColor: #E8E8E8;
}

/* CUSTOM CSS HERE */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal !important;
}



body {
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal;
  background-color: var(--whiteColor) !important;
}

/* Custom Scrollbar */
.page-scroll-area {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.page-scroll-area::-webkit-scrollbar {
  width: 4px;
}

.page-scroll-area::-webkit-scrollbar-track {
  background: #b1b1b1c0;
  border-radius: 10px;
}

.page-scroll-area::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

.container {
  max-width: 1260px !important;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
}

/* FONT SIZE */
.font-36 {
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem) !important;
}

.font-24 {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem) !important;
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem) !important;
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem) !important;
}

.font-16 {
  font-size: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-12 {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) !important;
}

.font-10 {
  font-size: 10px;
}

.max-w-100 {
  max-width: 100% !important;
}

/* FONT WEIGHT */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* COLOR */
.primaryColor {
  color: var(--primaryColor);
}

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

.secondaryColor {
  color: var(--primaryColor);
  /* Secondary color removed - now using primary color */
}

.textColor {
  color: var(--textcolor);
}

.line-height-26 {
  line-height: 26px !important;
}

.line-height-28 {
  line-height: 28px !important;
}

.line-height-22 {
  line-height: 22px !important;
}

.line-height-18 {
  line-height: 18px !important;
}

.cursor-pointer {
  cursor: pointer;
}

/* Navbar */
.navbar-container {
  width: 100%;
  background: var(--blackColor);
  padding: 0px 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 998;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.nav-logo img {
  transition: all 0.3s ease;
  height: 70px;
}

.nav-container {
  padding: 0;
}

.nav-toggle {
  width: 1.5rem;
  height: 1.125rem;
  display: flex;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.nav-toggle span {
  width: 100%;
  height: 0.1875rem;
  background: var(--whiteColor);
  border-radius: 0.125rem;
  transition: all 0.4s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 1rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  width: 15rem;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  gap: 6px;
  margin-top: 0.5rem;
}

.nav-link-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link-item::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 0.5rem;
  width: 0;
  height: 2px;
  background: var(--themeColor);
  transition: width 0.3s ease;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--primaryColor);
  background: transparent;
  border-radius: 0.375rem;
  padding: 0.625rem 1rem;
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  width: 2rem;
}

/* Auth Buttons */

.nav-login-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--themeColor);
  background: transparent;
  border: 2px solid var(--themeColor);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-login-btn:hover {
  background: var(--themeColor);
  color: var(--whiteColor);
  transform: translateY(-2px);
}

.nav-signup-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--whiteColor);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
}

.nav-signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(80, 140, 1, 0.5);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: var(--whiteColor);
  padding: clamp(3.75rem, 3rem + 3vw, 4rem) 0 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--themeColor) 50%, transparent 100%);
  opacity: 0.6;
}

.footer-logo {
  width: clamp(8.75rem, 10rem + 3vw, 15rem);
  transition: transform 0.3s ease;
}

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

.footer-desc {
  color: rgba(244, 244, 244, 0.75);
}

.footer-title {
  margin-bottom: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  color: var(--whiteColor);
  letter-spacing: 0.5px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: clamp(2.5rem, 2rem + 2vw, 3.125rem);
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, transparent 100%);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
}

.footer-links {
  gap: 12px;
}

.footer-links a {
  color: rgba(244, 244, 244, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--themeColor);
  transition: all 0.3s ease;
  font-weight: bold;
}

.footer-links a:hover {
  color: var(--themeColor);
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-icon {
  width: clamp(2.5rem, 2.25rem + 1vw, 2.875rem);
  height: clamp(2.5rem, 2.25rem + 1vw, 2.875rem);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  aspect-ratio: 1;
}

.footer-icon img {
  filter: brightness(0) invert(1);
  width: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  height: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  object-fit: contain;
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-color: var(--themeColor);
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 20px rgba(80, 140, 1, 0.4);
}

.footer-icon:hover img {
  transform: scale(1.1);
}

/* Footer Address Section */

.footer-label {
  color: rgba(244, 244, 244, 0.7);
  margin-bottom: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem);
  margin-top: 0;
}

.footer-address-text {
  color: rgba(244, 244, 244, 0.9);
  line-height: 1.6 !important;
  margin-bottom: clamp(1rem, 0.8rem + 0.5vw, 1.25rem);
  margin-top: 0;
}

.footer-link {
  color: var(--themeColor);
  text-decoration: none;
  display: block;
  margin-bottom: clamp(0.75rem, 0.6rem + 0.5vw, 1rem);
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--primaryColor);
  transform: translateX(5px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, #508c06 0%, #ffc107 20%, #508c01 80%, #ffc107 100%);
}

.footer-legal-link {
  color: rgba(244, 244, 244, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.footer-legal-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--themeColor);
  transition: width 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--whiteColor);
}

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

.footer-separator {
  color: rgba(244, 244, 244, 0.3);
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    gap: 12px;
    margin-top: 0;
  }

  .nav-auth-buttons {
    margin-top: 0;
    margin-left: auto;
  }

  .nav-link-item {
    padding: 0.5rem 1rem;
  }

  .nav-link-item::after {
    left: 50%;
    bottom: 0.25rem;
    transform: translateX(-50%);
  }

  .nav-link-item:hover,
  .nav-link-item.active {
    transform: translateY(0);
  }

  .nav-link-item:hover::after,
  .nav-link-item.active::after {
    width: 50%;
  }

  .nav-search-wrapper {
    margin-top: 0;
    margin-left: 1rem;
  }

  .nav-search-form {
    width: 200px;
  }

  .nav-search-input {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 991px) {
  .nav-menu {
    align-items: flex-start;
  }
}



/* Login Section */
.login-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 2rem + 2vw, 3rem) 1rem;
  background: linear-gradient(135deg, #f8fafb 0%, #f0f4f8 50%, #f5f8fc 100%);
  position: relative;
  overflow: hidden;
}

.login-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    /* Horizontal grid lines */
    linear-gradient(0deg, transparent 24%, rgba(80, 140, 1, 0.08) 25%, rgba(80, 140, 1, 0.08) 26%, transparent 27%, transparent 74%, rgba(80, 140, 1, 0.08) 75%, rgba(80, 140, 1, 0.08) 76%, transparent 77%, transparent),
    /* Vertical grid lines */
    linear-gradient(90deg, transparent 24%, rgba(239, 139, 1, 0.08) 25%, rgba(239, 139, 1, 0.08) 26%, transparent 27%, transparent 74%, rgba(239, 139, 1, 0.08) 75%, rgba(239, 139, 1, 0.08) 76%, transparent 77%, transparent);
  background-size: 80px 80px;
  background-position: 0 0, 0 0;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.login-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    /* Diagonal pattern 1 */
    repeating-linear-gradient(45deg,
      transparent,
      transparent 35px,
      rgba(80, 140, 1, 0.05) 35px,
      rgba(80, 140, 1, 0.05) 70px),
    /* Diagonal pattern 2 */
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 35px,
      rgba(239, 139, 1, 0.04) 35px,
      rgba(239, 139, 1, 0.04) 70px);
  animation: diagonalMove 30s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes gridMove {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 80px 80px, 80px 80px;
  }
}

@keyframes diagonalMove {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 70px 70px, 70px 70px;
  }
}


@keyframes float {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  33% {
    transform: translateY(-30px) translateX(20px);
  }

  66% {
    transform: translateY(20px) translateX(-10px);
  }
}

/* Decorative Floating Elements */
.login-section {
  position: relative;
}

/* Top-right floating circle */
.login-section::before {
  top: 0%;
  right: 0%;
  width: 100%;
  height: 100%;
}

/* Bottom-left floating circle */
.login-section::after {
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}

/* Additional decorative pseudo-elements with animation */
.login-card {
  position: relative;
  z-index: 2;
}

.login-card::before {
  z-index: -1;
}

.login-card::after {
  z-index: -1;
}

@keyframes pulse-glow {

  0%,
  100% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(80, 140, 1, 0.2));
  }

  50% {
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(80, 140, 1, 0.3));
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(50px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

.login-card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
  border-radius: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(80, 140, 1, 0.3);
  border: 1px solid rgba(80, 140, 1, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  animation: slideInUp 0.6s ease-out, cardGlow 3s ease-in-out infinite;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes cardGlow {

  0%,
  100% {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(80, 140, 1, 0.3);
  }

  50% {
    box-shadow: 0 15px 50px rgba(80, 140, 1, 0.15), 0 0 20px rgba(239, 139, 1, 0.1), 0 0 0 1px rgba(80, 140, 1, 0.4);
  }
}

.login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(80, 140, 1, 0.5) 50%, transparent 100%);
  pointer-events: none;
}

.login-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(239, 139, 1, 0.3) 50%, transparent 100%);
  pointer-events: none;
}

.login-logo {
  width: 120px;
  height: auto;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 0 auto;
  display: block;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.login-title {
  text-align: center;
  color: var(--primaryColor);
  margin-bottom: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  position: relative;
  z-index: 2;
}

.login-subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: clamp(1.5rem, 1.25rem + 0.5vw, 2rem) !important;
}

.form-label {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
  display: block;
}

.form-input {
  padding: 14px 16px;
  border: 1.5px solid rgba(80, 140, 1, 0.4);
  border-radius: 0.625rem;
  background: rgba(50, 50, 50, 0.6);
  transition: all 0.3s ease;
  width: 100%;
  font-family: "Poppins", sans-serif;
  color: var(--whiteColor);
  animation: fadeInUp 0.6s ease-out backwards;
}

.d-flex.flex-column.gap-2:nth-child(1) .form-input {
  animation-delay: 0.1s;
}

.d-flex.flex-column.gap-2:nth-child(2) .form-input {
  animation-delay: 0.2s;
}

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

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

.form-input:focus {
  outline: none;
  border-color: var(--primaryColor);
  background: rgba(50, 50, 50, 0.9);
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.2);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--themeColor);
}

.form-check-input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--themeColor);
  margin: 0;
}

.form-check-label {
  cursor: pointer;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.remember-me label {
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  margin: 0;
  font-size: clamp(0.875rem, 0.8rem + 0.25vw, 1rem);
}

.forgot-password {
  color: var(--themeColor);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(0.875rem, 0.8rem + 0.25vw, 1rem);
  white-space: nowrap;
}

.forgot-password:hover {
  color: var(--primaryColor);
}

.login-btn {
  padding: clamp(12px, 0.875rem + 0.5vw, 16px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 0.625rem;
  border: none;
  color: var(--whiteColor);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(80, 140, 1, 0.4);
  font-weight: 600;
  animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(80, 140, 1, 0.5);
}

.login-btn:active {
  transform: translateY(0);
}

.signup-link {
  border-top: 1px solid rgba(80, 140, 1, 0.3);
  padding-top: clamp(1rem, 0.8rem + 0.5vw, 1.25rem);
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 0.6s ease-out 0.4s backwards;
}


.signup-link a {
  color: var(--primaryColor);
  text-decoration: none;
  transition: color 0.3s ease;
}

.signup-link a:hover {
  color: var(--themeColor);
}

.signup-link span {
  color: rgba(255, 255, 255, 0.7);
}


/* Contact Page */

/* Hero Section */
.contact-hero {
  padding: clamp(4rem, 7rem + 5vw, 4rem) 0;
  background:
    linear-gradient(135deg, #508C01 0%, #EF8B01 50%, #508C01 100%),
    url('../images/png/contact-hero-bg.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.contact-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.04) 49%, rgba(255, 255, 255, 0.04) 51%, transparent 52%);
  background-size: 100px 100px;
  animation: heroPattern 30s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes heroPattern {
  0% {
    background-position: 0 0;
  }

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

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero-title {
  position: relative;
  z-index: 2;
  line-height: 1.2;
  margin-top: clamp(1.5rem, 1.2rem + 0.75vw, 2.5rem);
  font-size: clamp(2.5rem, 2rem + 3vw, 3.2rem);
  animation: heroTitleSlide 1s ease-out, heroTitleGlow 3s ease-in-out infinite;
  background: linear-gradient(135deg, #ffffff 0%, #fffacd 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3));
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
}

@keyframes heroTitleSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes heroTitleGlow {

  0%,
  100% {
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.2));
  }

  50% {
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.4));
  }
}

.contact-hero-desc {
  color: rgba(255, 255, 255, 0.95);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.3s backwards;
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

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

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

/* Contact Details Section */
.contact-details-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 4rem + 3vw, 7rem) 0;
}

.contact-details-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(80, 140, 1, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(239, 139, 1, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact-detail-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(80, 140, 1, 0.12);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out backwards;
  box-shadow: 0 10px 40px rgba(80, 140, 1, 0.08);
}

.contact-details-section .col-12.col-md-4:nth-child(1) .contact-detail-card {
  animation-delay: 0.1s;
}

.contact-details-section .col-12.col-md-4:nth-child(2) .contact-detail-card {
  animation-delay: 0.2s;
}

.contact-details-section .col-12.col-md-4:nth-child(3) .contact-detail-card {
  animation-delay: 0.3s;
}

.contact-detail-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(80, 140, 1, 0.1) 0%, transparent 70%);
  transform: translate(0, 0);
  transition: all 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.contact-detail-card:hover::before {
  top: -20%;
  left: -20%;
  background: radial-gradient(circle, rgba(80, 140, 1, 0.2) 0%, transparent 70%);
}

.contact-detail-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(239, 139, 1, 0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

.contact-detail-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 70px rgba(80, 140, 1, 0.18);
  border-color: rgba(80, 140, 1, 0.25);
}

.contact-detail-icon {
  width: clamp(3.125rem, 3.0147rem + 0.5882vw, 3.75rem);
  height: clamp(3.125rem, 3.0147rem + 0.5882vw, 3.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #508C01 0%, #EF8B01 100%);
  border-radius: 50%;
  color: var(--whiteColor);
  flex-shrink: 0;
  font-size: clamp(1.75rem, 1.5rem + 0.5vw, 2.25rem);
  box-shadow: 0 12px 35px rgba(80, 140, 1, 0.35);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.contact-detail-card:hover .contact-detail-icon {
  transform: scale(1.1) rotateZ(5deg);
  box-shadow: 0 18px 50px rgba(80, 140, 1, 0.45);
}

.contact-detail-icon i {
  font-size: 24px;
}

.contact-detail-title {
  color: var(--primaryColor);
  font-weight: 700;
  font-size: clamp(1.125rem, 1rem + 0.3vw, 1.375rem);
  position: relative;
  z-index: 1;
}

.contact-detail-text {
  margin: 0;
  line-height: 1.7;
  color: var(--textcolor);
  font-weight: 500;
  font-size: clamp(0.9375rem, 0.875rem + 0.15vw, 1.0625rem);
  position: relative;
  z-index: 1;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 4rem + 3vw, 7rem) 0;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(80, 140, 1,0.15)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>'),
    radial-gradient(circle at 15% 50%, rgba(80, 140, 1, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(239, 139, 1, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.contact-form-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(80, 140, 1, 0.08) 49%, rgba(80, 140, 1, 0.08) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(239, 139, 1, 0.06) 49%, rgba(239, 139, 1, 0.06) 51%, transparent 52%);
  background-size: 60px 60px;
  pointer-events: none;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 244, 248, 0.98) 100%);
  padding: clamp(2rem, 3.5rem + 2vw, 2rem);
  border-radius: clamp(2.5rem, 2rem + 1vw, 3.5rem);
  box-shadow:
    0 50px 150px rgba(80, 140, 1, 0.25),
    0 0 0 1px rgba(80, 140, 1, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(80, 140, 1, 0.15);
  position: relative;
  z-index: 2;
  animation: scaleIn 0.8s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(40px);
  }

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

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #508C01 25%, #EF8B01 50%, #508C01 75%, transparent 100%);
  pointer-events: none;
  border-radius: clamp(2.5rem, 2rem + 1vw, 3.5rem) clamp(2.5rem, 2rem + 1vw, 3.5rem) 0 0;
}

.contact-form-label {
  color: var(--themeColor);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  font-size: clamp(0.8rem, 0.7rem + 0.2vw, 0.95rem);
  animation: fadeInDown 0.8s ease-out 0.1s backwards;
}

.contact-form-title {
  color: var(--primaryColor);
  margin-top: clamp(0.75rem, 0.5rem + 0.3vw, 1.25rem);
  animation: fadeInDown 0.8s ease-out 0.2s backwards;
}

.contact-form-desc {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--textcolor);
  animation: fadeInDown 0.8s ease-out 0.3s backwards;
}

.contact-form {
  margin-top: clamp(2rem, 1.75rem + 0.5vw, 2.75rem);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: var(--themeColor);
  margin-bottom: 0.25rem;
  display: block;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.75rem + 0.2vw, 0.9rem);
}

.form-input {
  padding: clamp(0.875rem, 0.8rem + 0.25vw, 1.125rem) clamp(1rem, 0.9rem + 0.3vw, 1.5rem);
  border: 2px solid rgba(80, 140, 1, 0.25);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.8) 100%);
  transition: all 0.3s ease;
  width: 100%;
  font-family: "Poppins", sans-serif;
  color: var(--textcolor);
  font-size: clamp(0.875rem, 0.8rem + 0.2vw, 1rem);
  box-shadow: 0 4px 15px rgba(80, 140, 1, 0.08);
}

.form-input:focus {
  outline: none;
  border-color: var(--themeColor);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
  box-shadow: 0 0 0 4px rgba(80, 140, 1, 0.15), 0 8px 25px rgba(80, 140, 1, 0.15);
  transform: translateY(-2px);
}

.form-input::placeholder {
  color: rgba(26, 30, 37, 0.5);
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
  font-family: "Poppins", sans-serif;
}

.contact-submit-btn {
  padding: clamp(0.875rem, 0.8rem + 0.3vw, 1.125rem) clamp(2.5rem, 2rem + 1.5vw, 4rem);
  background: linear-gradient(135deg, #508C01 0%, #EF8B01 100%);
  border: none;
  border-radius: 0.75rem;
  color: var(--whiteColor);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(80, 140, 1, 0.3);
  font-weight: 700;
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1.05rem);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.contact-submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(80, 140, 1, 0.4);
}

.contact-submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.contact-submit-btn:active {
  transform: translateY(-1px);
}

/* Features Showcase Section - New Design */
.features-showcase-section {
  background: var(--whiteColor);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.features-showcase-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(80, 140, 1, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(239, 139, 1, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.features-image-wrapper {
  position: relative;
  border-radius: clamp(1.5rem, 1.2rem + 0.75vw, 2.5rem);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.features-image-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(80, 140, 1, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 1;
}

.features-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -40%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(239, 139, 1, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 1;
}

.features-image-wrapper:hover {
  transform: translateY(-12px);
}

.features-image-wrapper:hover::before {
  top: -30%;
  right: -30%;
}

.features-image-wrapper:hover::after {
  bottom: -20%;
  left: -20%;
}

.features-image-container {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 12px;
}

.features-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.features-image-wrapper:hover .features-main-img {
  transform: scale(1.05);
}

.features-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(1.5rem, 1.2rem + 0.75vw, 2.5rem);
  transition: all 0.4s ease;
  backdrop-filter: blur(2px);
  z-index: 2;
}

.features-image-wrapper:hover .features-play-overlay {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

.features-play-icon {
  width: clamp(75px, 65px + 2.5vw, 100px);
  height: clamp(75px, 65px + 2.5vw, 100px);
  border-radius: 50%;
  background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--whiteColor);
  font-size: clamp(1.875rem, 1.625rem + 0.5vw, 2.5rem);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 45px rgba(26, 188, 156, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-play-icon:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 22px 60px rgba(26, 188, 156, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Image Grid Styles */
.features-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
}

.grid-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-height: 300px;
}

.grid-img:hover {
  transform: translateY(-8px) scale(1.02);
}

.grid-img-1 {
  animation: slideInLeft 0.8s ease-out;
}

.grid-img-2 {
  animation: slideInUp 0.8s ease-out 0.1s backwards;
}

.grid-img-3 {
  animation: slideInRight 0.8s ease-out 0.2s backwards;
}

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

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

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

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

@media (max-width: 768px) {
  .features-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-image-grid {
    grid-template-columns: 1fr;
  }
}

.features-content {
  position: relative;
  z-index: 2;
}


.features-heading {
  color: var(--primaryColor);
  line-height: 1.2;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  margin-bottom: clamp(1rem, 1.5rem + 0.5vw, 1.5rem);
  padding: clamp(1rem, 1rem + 0.5vw, 1rem);
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.02) 0%, rgba(239, 139, 1, 0.01) 100%);
  border-radius: clamp(0.75rem, 0.6rem + 0.5vw, 1.25rem);
  border: 1px solid rgba(80, 140, 1, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.feature-list-item:hover {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.06) 0%, rgba(239, 139, 1, 0.04) 100%);
  border-color: rgba(80, 140, 1, 0.15);
  transform: translateX(6px);
  box-shadow: 0 8px 25px rgba(80, 140, 1, 0.08);
}

.feature-badge {
  flex-shrink: 0;
  width: clamp(45px, 40px + 1vw, 55px);
  height: clamp(45px, 40px + 1vw, 55px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EF8B01 0%, #EF8B01 100%);
  border-radius: 50%;
  color: var(--whiteColor);
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.25rem);
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(239, 139, 1, 0.3);
}

.feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-name {
  margin: 0;
  color: var(--primaryColor);
  line-height: 1.4;
}

.feature-desc {
  margin: 0;
  color: var(--textcolor);
  line-height: 1.6 !important;
}

.feature-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--themeColor);
  font-weight: 500;
}

.stat-item i {
  color: var(--primaryColor);
  font-size: 0.75rem;
}

/* Premium Enhanced Features */
.features-content.premium-enhanced {
  animation: slideInRight 0.7s ease-out;
}

.feature-list-item.premium-feature {
  padding: clamp(1.25rem, 1.25rem + 0.5vw, 1.5rem);
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, #fffaf0 100%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-list-item.premium-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-list-item.premium-feature:hover::before {
  opacity: 1;
}

.feature-list-item.premium-feature:hover {
  background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
  border-color: rgba(80, 140, 1, 0.2);
  transform: translateX(12px);
  box-shadow: 0 12px 35px rgba(80, 140, 1, 0.12);
}

.feature-badge.premium-badge {
  min-width: clamp(60px, 55px + 1vw, 75px);
  min-height: clamp(60px, 55px + 1vw, 75px);
  background: linear-gradient(135deg, #508C01 0%, #6aad0b 100%);
  font-size: clamp(1.25rem, 1.1rem + 0.3vw, 1.5rem);
  box-shadow: 0 10px 30px rgba(80, 140, 1, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: scaleUp 0.6s ease-out;
}

.feature-list-item.premium-feature:hover .feature-badge.premium-badge {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 40px rgba(80, 140, 1, 0.35);
}

/* Floating Badges on Image */
.features-image-wrapper.premium-enhanced {
  position: relative;
}

.features-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  backdrop-filter: blur(15px);
  border: 1.5px solid rgba(80, 140, 1, 0.25);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: floatUp 0.8s ease-out backwards, floatingBadge 3s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-badge:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 28px 70px rgba(80, 140, 1, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border-color: rgba(80, 140, 1, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 251, 254, 1) 100%);
}

.floating-badge.badge-1 {
  bottom: 22%;
  left: 8%;
  animation-delay: 0.2s;
}

.floating-badge.badge-2 {
  top: 12%;
  right: 8%;
  animation-delay: 0.4s;
}

.floating-badge.badge-3 {
  bottom: 8%;
  right: 12%;
  animation-delay: 0.6s;
}

.badge-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.15) 0%, rgba(246, 173, 1, 0.15) 100%);
  border-radius: 50%;
  color: var(--themeColor);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.floating-badge:hover .badge-icon {
  background: linear-gradient(135deg, #508C01 0%, #EF8B01 100%);
  color: var(--whiteColor);
  transform: scale(1.1) rotate(10deg);
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-grow: 1;
}

.badge-label {
  color: #999;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
  margin: 0;
}

.badge-value {
  color: var(--primaryColor);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  margin: 0;
}


/* Decorative Elements */
.image-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
}

.decoration-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(80, 140, 1, 0.12) 0%, transparent 70%);
  bottom: -40px;
  right: -40px;
  animation-delay: 0s;
  z-index: 0;
  filter: blur(1px);
}

.decoration-2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 30% 30%, rgba(246, 173, 1, 0.1) 0%, transparent 70%);
  top: -60px;
  left: -60px;
  animation-delay: 2.5s;
  z-index: 0;
  filter: blur(1.5px);
}

/* Features Subheading */
.features-subheading {
  color: var(--textcolor);
  line-height: 1.6;
}

/* Features CTA Button */
.features-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.features-cta-btn {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  color: white;
  padding: clamp(0.75rem, 0.7rem + 0.3vw, 1rem) clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(80, 140, 1, 0.2);
  position: relative;
  overflow: hidden;
}

.features-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--themeColor) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.features-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(80, 140, 1, 0.3);
}

.features-cta-btn:hover i {
  transform: translateX(4px);
}

.features-cta-btn i {
  transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .feature-list-item.premium-feature {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .floating-badge {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .badge-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .feature-stats {
    gap: 1rem;
  }

  .stat-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {
  .features-image-wrapper.premium-enhanced {
    margin-bottom: 2rem;
  }

  .floating-badge {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
  }

  .badge-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .feature-list-item.premium-feature {
    margin-bottom: 0.75rem;
    padding: 0.875rem;
  }

  .features-subheading {
    font-size: 0.95rem;
  }
}

/* Our Clients Section */
.our-clients-section {
  background: var(--whiteColor);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
}

.clients-label {
  color: var(--themeColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(239, 139, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  font-weight: 600;
  position: relative;
  border: 1px solid transparent;
  background-clip: padding-box;
}

.clients-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  padding: 2px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.clients-title {
  color: var(--primaryColor);
  margin-top: clamp(0.5rem, 0.3rem + 0.25vw, 0.75rem);
}

.clients-desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Clients Carousel */


.clients-carousel {
  display: flex;
  gap: clamp(1.5rem, 1rem + 1vw, 2.5rem);
  animation: slideClients 20s linear infinite;
  width: fit-content;
}

.client-card {
  flex-shrink: 0;
  min-width: clamp(150px, 120px + 5vw, 200px);
  background: var(--whiteColor);
  border: 1px solid rgba(80, 140, 1, 0.1);
  border-radius: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem);
  padding: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  transition: all 0.3s ease;
  box-shadow: 0px 3px 10px #e4e4e4;
}

.client-card:hover {
  border-color: var(--themeColor);
  box-shadow: 0 5px 15px rgba(80, 140, 1, 0.1);
  transform: translateY(-3px);
}


@keyframes slideClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * (150px + 1.5rem + 150px + 1.5rem + 150px + 1.5rem + 150px + 1.5rem + 150px + 1.5rem + 150px + 1.5rem)));
  }
}

/* Stats Section */
.stats-section {
  background: #f5f7fa;
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(80, 140, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(239, 139, 1, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.stats-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(80, 140, 1, 0.2) 50%, transparent 100%);
  pointer-events: none;
}

.stats-content {
  position: relative;
  z-index: 2;
}

.stats-label {
  color: var(--primaryColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(239, 139, 1, 0.1) 0%, rgba(80, 140, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  border: 1px solid rgba(239, 139, 1, 0.15);
}

.stats-title {
  color: var(--primaryColor);
  line-height: 1.3;
  margin-top: clamp(0.5rem, 0.3rem + 0.25vw, 0.75rem);
}

.stats-desc {
  color: var(--textcolor);
  line-height: 1.8;
  opacity: 0.9;
}

.stats-btn {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  color: var(--whiteColor);
  padding: clamp(12px, 0.875rem + 0.5vw, 16px) clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(80, 140, 1, 0.25);
}

.stats-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(80, 140, 1, 0.35);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 0.8rem + 0.75vw, 1.5rem);
  position: relative;
  z-index: 2;
}

.stats-grid-item {
  position: relative;
}

/* Premium Stat Card */
.stat-card.premium {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 244, 248, 0.95) 100%);
  padding: clamp(1rem, 1rem + 0.75vw, 1.2rem);
  border-radius: clamp(0.75rem, 0.6rem + 0.5vw, 1.25rem);
  border: 1px solid rgba(80, 140, 1, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(80, 140, 1, 0.08);
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Card 1 - Blue Gradient */
.stats-grid-item:nth-child(1) .stat-card.premium {
  background: linear-gradient(135deg, #508C01 0%, #508C01 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><pattern id="dots1" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></circle></pattern></defs><rect width="400" height="300" fill="url(%23dots1)"/><circle cx="80" cy="60" r="50" fill="rgba(255,255,255,0.05)"/><circle cx="320" cy="250" r="60" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover, cover;
  background-position: center, center;
  box-shadow: 0 10px 40px rgba(80, 140, 1, 0.25);
}

/* Card 2 - Cyan Gradient */
.stats-grid-item:nth-child(2) .stat-card.premium {
  background: linear-gradient(135deg, #EF8B01 0%, #EF8B01 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><pattern id="dots2" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></circle></pattern></defs><rect width="400" height="300" fill="url(%23dots2)"/><circle cx="100" cy="80" r="45" fill="rgba(255,255,255,0.05)"/><circle cx="300" cy="220" r="55" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover, cover;
  background-position: center, center;
  box-shadow: 0 10px 40px rgba(239, 139, 1, 0.25);
}

/* Card 3 - Purple Gradient */
.stats-grid-item:nth-child(3) .stat-card.premium {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><pattern id="dots3" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></circle></pattern></defs><rect width="400" height="300" fill="url(%23dots3)"/><circle cx="70" cy="100" r="48" fill="rgba(255,255,255,0.05)"/><circle cx="330" cy="200" r="58" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover, cover;
  background-position: center, center;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.25);
}

/* Card 4 - Pink Gradient */
.stats-grid-item:nth-child(4) .stat-card.premium {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><pattern id="dots4" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></circle></pattern></defs><rect width="400" height="300" fill="url(%23dots4)"/><circle cx="90" cy="70" r="52" fill="rgba(255,255,255,0.05)"/><circle cx="310" cy="240" r="62" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover, cover;
  background-position: center, center;
  box-shadow: 0 10px 40px rgba(236, 72, 153, 0.25);
}

.stat-card.premium::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stat-card.premium::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -40%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stat-card.premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(80, 140, 1, 0.2);
}

.stat-icon {
  width: clamp(50px, 45px + 1.5vw, 65px);
  height: clamp(50px, 45px + 1.5vw, 65px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--whiteColor);
  font-size: clamp(1.25rem, 1rem + 0.5vw, 1.75rem);
  margin: 0 auto clamp(0.75rem, 0.6rem + 0.5vw, 1rem);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-card.premium:hover .stat-icon {
  transform: scale(1.15) rotateY(10deg);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.stat-number {
  margin-bottom: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  color: var(--whiteColor);
  position: relative;
  z-index: 2;
  font-size: clamp(1.75rem, 1.5rem + 0.75vw, 2.25rem);
  font-weight: 700;
}

.stat-label {
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: clamp(0.65rem, 0.6rem + 0.2vw, 0.8rem);
}

.stat-desc {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 2;
  font-size: clamp(0.7rem, 0.65rem + 0.15vw, 0.85rem);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.contact-cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: clamp(2rem, 2rem + 2vw, 3rem) 40px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.contact-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="ctaGrid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23ctaGrid)"/><circle cx="200" cy="150" r="120" fill="rgba(80, 140, 1,0.08)"/><circle cx="1000" cy="500" r="150" fill="rgba(239, 139, 1,0.06)"/></svg>');
  pointer-events: none;
}

.contact-cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(80, 140, 1, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(239, 139, 1, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-text-wrapper {
  max-width: 500px;
}

.cta-title {
  color: var(--whiteColor);
}

.cta-description {
  color: rgba(255, 255, 255, 0.85);
}

.cta-buttons-wrapper {
  position: relative;
  z-index: 2;
}

.cta-btn-primary,
.cta-btn-secondary {
  padding: clamp(14px, 1rem + 0.5vw, 18px) clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  border-radius: 0.625rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cta-btn-primary {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  color: var(--whiteColor);
  box-shadow: 0 4px 15px rgba(80, 140, 1, 0.3);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(80, 140, 1, 0.4);
}

.cta-btn-secondary {
  background: transparent;
  color: var(--whiteColor);
  border: 2px solid var(--whiteColor);
}

.cta-btn-secondary:hover {
  background: var(--whiteColor);
  color: var(--primaryColor);
  transform: translateY(-3px);
}


/* Bootstrap Utility Classes */

/* Display */
.d-flex {
  display: flex;
}

.d-flex-column {
  flex-direction: column;
}

.d-inline-block {
  display: inline-block;
}

/* Alignment */
.align-items-center {
  align-items: center;
}

.align-items-flex-start {
  align-items: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-end {
  justify-content: flex-end;
}

/* Gap */
.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

/* Margin */
.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-3 {
  margin-bottom: 1rem;
}

.ms-2 {
  margin-left: 0.5rem;
}

.ms-3 {
  margin-left: 1rem;
}

/* Padding */
.pt-3 {
  padding-top: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

/* Text Alignment */
.text-center {
  text-align: center;
}

.text-md-end {
  text-align: right;
}

/* Flex Grow */
.flex-grow-1 {
  flex-grow: 1;
}

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

/* Width */
.w-100 {
  width: 100%;
}

/* Position */
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Responsive Utilities */
@media (max-width: 767px) {
  .flex-sm-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row;
  }

  .text-md-end {
    text-align: right;
  }

  .justify-content-lg-end {
    justify-content: flex-end;
  }
}

@media (min-width: 992px) {
  .justify-content-lg-end {
    justify-content: flex-end;
  }
}






/* About Content Section */
.about-content-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.about-content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(80, 140, 1, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(239, 139, 1, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-content-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(80, 140, 1, 0.2) 50%, transparent 100%);
  pointer-events: none;
}

.about-content-wrapper {
  position: relative;
  z-index: 2;
}

.about-label {
  color: var(--themeColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(239, 139, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  font-weight: 600;
  border: 1px solid rgba(80, 140, 1, 0.15);
}

.about-title {
  color: var(--primaryColor);
  line-height: 1.3;
  margin-top: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
}

.about-desc {
  color: var(--textcolor);
  line-height: 1.8;
  opacity: 0.9;
}

.about-image-wrapper {
  position: relative;
  z-index: 2;
}

.about-image-container {
  position: relative;
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(80, 140, 1, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(80, 140, 1, 0.25);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.about-image-container:hover .about-image {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(239, 139, 1, 0.08) 100%);
  pointer-events: none;
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 2rem + 2vw, 4rem) 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, rgba(30, 64, 175, 0.75) 0%, rgba(239, 139, 1, 0.65) 100%),
    url('../images/png/hero-bg.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-attachment: fixed;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.hero-animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-animated-shapes::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 188, 156, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-animated-shapes::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(80, 140, 1, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

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

.hero-content {
  position: relative;
  z-index: 2;
  animation: contentFadeInUp 1s ease-out;
}

@keyframes contentFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.hero-label {
  color: var(--primaryColor);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  font-weight: 600;
  animation: labelSlideIn 1s ease-out 0.2s both;
}

@keyframes labelSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.hero-label-line {
  width: clamp(2rem, 1.5rem + 1vw, 3rem);
  height: 2px;
  background: linear-gradient(90deg, var(--primaryColor) 0%, transparent 100%);
  border-radius: 1px;
  animation: lineExpand 1s ease-out 0.3s both;
}

@keyframes lineExpand {
  from {
    width: 0;
  }

  to {
    width: clamp(2rem, 1.5rem + 1vw, 3rem);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
  line-height: 1.2;
  color: var(--whiteColor);
  margin-bottom: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  animation: titleSlideIn 1s ease-out 0.4s both;
}

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

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

.hero-desc {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  animation: descSlideIn 1s ease-out 0.5s both;
}

@keyframes descSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.hero-buttons {
  animation: buttonsSlideIn 1s ease-out 0.6s both;
}

@keyframes buttonsSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.hero-btn-primary {
  padding: clamp(0.625rem, 0.5368rem + 0.4706vw, 1.125rem) clamp(2rem, 1.75rem + 1vw, 3rem);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  color: var(--whiteColor);
  border-radius: 0.625rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(80, 140, 1, 0.4);
  border: none;
  cursor: pointer;
  font-weight: 600;
  animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(80, 140, 1, 0.4);
  }

  50% {
    box-shadow: 0 15px 45px rgba(80, 140, 1, 0.6);
  }
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(80, 140, 1, 0.6);
}

.hero-btn-secondary {
  padding: clamp(10px, 1rem + 0.5vw, 18px) clamp(1rem, 1.75rem + 1vw, 3rem);
  background: rgba(255, 255, 255, 0.15);
  color: var(--whiteColor);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.625rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hero-stats {
  animation: statsSlideIn 1s ease-out 0.7s both;
}

@keyframes statsSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.hero-stat {
  text-align: center;
  animation: statBounce 2s ease-in-out infinite;
}

.hero-stat:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-stat:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes statBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-stat h4 {
  margin: 0 0 0.25rem 0;
}

.hero-stat p {
  margin: 0;
}

/* Success Story Section */
.success-story-section {
  background: var(--whiteColor);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.success-story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(80, 140, 1, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(239, 139, 1, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.success-image-wrapper {
  position: relative;
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(80, 140, 1, 0.15);
  transition: all 0.4s ease;
}

.success-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(80, 140, 1, 0.25);
}

.success-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
}

.success-image-frame {
  position: absolute;
  top: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  left: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  right: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  bottom: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border: 3px solid rgba(80, 140, 1, 0.2);
  border-radius: clamp(0.75rem, 0.6rem + 0.5vw, 1.25rem);
  pointer-events: none;
}

.success-content {
  position: relative;
  z-index: 2;
}

.success-desc {
  color: #1a1e25a3;
  line-height: 1.8 !important;
  opacity: 0.9;
}

.success-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  margin: clamp(2rem, 1.75rem + 0.5vw, 2.5rem) 0;
  padding: clamp(2rem, 1.75rem + 0.5vw, 2.5rem);
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.03) 0%, rgba(239, 139, 1, 0.02) 100%);
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border: 1px solid rgba(80, 140, 1, 0.08);
}

.success-stat-item {
  text-align: center;
  transition: all 0.3s ease;
}

.success-stat-item:hover {
  transform: translateY(-2px);
}

.success-stat-number {
  color: var(--primaryColor);
  margin-bottom: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem);
  font-size: clamp(2rem, 2rem + 2vw, 2.2rem);
  font-weight: 700;
}

.success-stat-label {
  color: var(--textcolor);
  margin: 0;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.25rem);
  font-weight: 500;
}

@media (max-width: 991px) {
  .success-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }
}

.success-stats-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 1.25rem + 0.75vw, 2.5rem);
  padding: 24px;
  background: linear-gradient(135deg, rgba(239, 139, 1, 0.12) 0%, rgba(80, 140, 1, 0.08) 100%);
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border: 1px solid rgba(80, 140, 1, 0.15);
  box-shadow: 0 10px 40px rgba(80, 140, 1, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .success-stats-full {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
}

/* What We Offer Section */
.what-we-offer-section {
  background: linear-gradient(135deg, #f8f9fb 0%, #f0f4f8 100%);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.what-we-offer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(80, 140, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(239, 139, 1, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.offer-header {
  position: relative;
  z-index: 2;
}

.offer-label {
  color: var(--themeColor);
  letter-spacing: 2px;
}

/* Meet Our Team Section */
.meet-team-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.meet-team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(80, 140, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(239, 139, 1, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.meet-team-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(80, 140, 1, 0.2) 50%, transparent 100%);
  pointer-events: none;
}

.team-header {
  position: relative;
  z-index: 2;
}

.team-label {
  color: var(--primaryColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(239, 139, 1, 0.1) 0%, rgba(80, 140, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  font-weight: 600;
  border: 1px solid rgba(239, 139, 1, 0.15);
}

.team-title {
  color: var(--primaryColor);
  line-height: 1.3;
  margin-top: clamp(0.5rem, 0.3rem + 0.25vw, 0.75rem);
}

.team-desc {
  color: var(--textcolor);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Team Info Card */
.team-info-card {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  padding: clamp(2rem, 1.75rem + 1vw, 2.5rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(80, 140, 1, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-info-card::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-info-content {
  position: relative;
  z-index: 2;
}

.team-info-label {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-info-title {
  color: var(--whiteColor);
  line-height: 1.3;
}

.team-info-desc {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.team-view-btn {
  color: var(--whiteColor);
  border: 2px solid var(--whiteColor);
  padding: clamp(10px, 0.75rem + 0.25vw, 14px) clamp(1.25rem, 1rem + 0.5vw, 1.75rem);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.team-view-btn:hover {
  background: var(--whiteColor);
  color: var(--themeColor);
  transform: translateY(-2px);
}

/* Team Member Card */
.team-member-card {
  background: var(--whiteColor);
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(80, 140, 1, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(80, 140, 1, 0.2);
}

.team-member-image {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(239, 139, 1, 0.08) 100%);
}

.team-member-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-image img {
  transform: scale(1.08);
}

.team-member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.15) 0%, rgba(239, 139, 1, 0.1) 100%);
  pointer-events: none;
}

.team-member-info {
  padding: clamp(1.25rem, 1rem + 0.5vw, 1.75rem);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-member-name {
  color: var(--primaryColor);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--textcolor);
  opacity: 0.8;
}

/* Team Careers Card */
.team-careers-card {
  background: linear-gradient(135deg, var(--primaryColor) 0%, #EF8B01 100%);
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  padding: clamp(2rem, 1.75rem + 1vw, 2.5rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(239, 139, 1, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-careers-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-careers-card::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-careers-content {
  position: relative;
  z-index: 2;
}

.team-careers-title {
  color: var(--whiteColor);
  line-height: 1.3;
}

.team-careers-btn {
  background: linear-gradient(135deg, #508C01 0%, #1e3a8a 100%);
  color: var(--whiteColor);
  padding: clamp(10px, 0.75rem + 0.25vw, 14px) clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  border-radius: clamp(0.375rem, 0.3rem + 0.25vw, 0.625rem);
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
  font-weight: 600;
}

.team-careers-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
  background: linear-gradient(135deg, #1e3a8a 0%, #508C01 100%);
}

.team-careers-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(239, 139, 1, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .team-member-image {
    padding-bottom: 100%;
  }
}

@media (max-width: 767px) {
  .team-member-image {
    padding-bottom: 120%;
  }
}

/* Partners Section */
.partners-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="partnerDots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(80, 140, 1,0.08)"/></pattern></defs><rect width="1200" height="600" fill="url(%23partnerDots)"/></svg>'),
    radial-gradient(circle at 20% 50%, rgba(80, 140, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(239, 139, 1, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.partners-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(80, 140, 1, 0.3) 50%, transparent 100%);
  pointer-events: none;
}

.partners-header {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(2rem, 1.5rem + 1vw, 3rem);
}

.partners-label {
  color: var(--primaryColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(239, 139, 1, 0.1) 0%, rgba(80, 140, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  font-weight: 600;
  border: 1px solid rgba(239, 139, 1, 0.15);
}

.partners-title {
  color: var(--primaryColor);
  line-height: 1.3;
  margin-top: clamp(0.5rem, 0.3rem + 0.25vw, 0.75rem);
}

.partners-desc {
  color: var(--textcolor);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.85;
}

.partners-grid-wrapper {
  position: relative;
  z-index: 2;
}

/* Premium Partner Card */
.partner-card.premium {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  border-radius: clamp(1.25rem, 1rem + 0.5vw, 1.75rem);
  border: 1px solid rgba(80, 140, 1, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(80, 140, 1, 0.08),
    0 0 0 1px rgba(80, 140, 1, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  height: clamp(280px, 250px + 5vw, 350px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.partner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.85) 0%, rgba(239, 139, 1, 0.85) 100%);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  opacity: 0;
}

.partner-overlay::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.partner-card.premium:hover .partner-overlay {
  opacity: 1;
}

.partner-card.premium:hover .partner-image {
  transform: scale(1.1);
}

.partner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem);
}

.partner-name {
  color: var(--whiteColor);
  position: relative;
  z-index: 3;
  margin: 0;
  line-height: 1.3;
  font-size: clamp(1rem, 0.9rem + 0.25vw, 1.25rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.partner-category {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 3;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(0.65rem, 0.6rem + 0.15vw, 0.8rem);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.partner-badge {
  position: relative;
  z-index: 3;
  width: clamp(32px, 28px + 1vw, 40px);
  height: clamp(32px, 28px + 1vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--whiteColor);
  font-size: clamp(0.75rem, 0.65rem + 0.15vw, 0.95rem);
  margin-top: clamp(0.25rem, 0.2rem + 0.15vw, 0.5rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.partner-card.premium:hover .partner-badge {
  transform: scale(1.25) rotate(15deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.25) 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .partner-card.premium {
    height: clamp(250px, 220px + 5vw, 320px);
  }
}

@media (max-width: 767px) {
  .partner-card.premium {
    height: clamp(220px, 200px + 5vw, 280px);
  }

  .partners-header {
    margin-bottom: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  }
}

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

.offer-label {
  color: var(--themeColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(239, 139, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  font-weight: 600;
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.offer-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  padding: 2px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.offer-title {
  color: var(--primaryColor);
  margin-top: clamp(0.5rem, 0.3rem + 0.25vw, 0.75rem);
  line-height: 1.3;
}

.view-all-btn {
  display: inline-block;
  padding: clamp(10px, 0.75rem + 0.25vw, 14px) clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  color: var(--whiteColor);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(80, 140, 1, 0.25);
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(80, 140, 1, 0.35);
}

.offer-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 250, 255, 1) 100%);
  padding: 24px;
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(80, 140, 1, 0.08);
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.offer-card::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at 30% 30%, rgb(80 140 1 / 26%) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(0);
  box-shadow: 0 15px 40px rgba(80, 140, 1, 0.25);
  border-top-color: var(--themeColor);
}

.offer-card-icon {
  width: clamp(60px, 55px + 1vw, 75px);
  height: clamp(60px, 55px + 1vw, 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  color: var(--whiteColor);
  flex-shrink: 0;
  font-size: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(80, 140, 1, 0.3);
}

.offer-card-title {
  color: var(--primaryColor);
  position: relative;
  z-index: 3;
  line-height: 1.3;
}

.offer-card-desc {
  color: var(--textcolor);
  position: relative;
  z-index: 3;
  flex-grow: 1;
  line-height: 1.6;
  margin: 0;
}

.offer-card-link {
  color: var(--themeColor);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.offer-card-link::after {
  content: " →";
  transition: all 0.3s ease;
}

.offer-card-link:hover {
  color: var(--primaryColor);
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .what-we-offer-section .row {
    margin-bottom: 0;
  }

  .offer-header {
    margin-bottom: clamp(2rem, 1.5rem + 1vw, 2.5rem);
  }

  .view-all-btn {
    display: block;
    text-align: center;
    margin-top: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .text-lg-end {
    text-align: right;
  }
}

@media (min-width: 992px) {
  .text-lg-end {
    text-align: right;
  }
}


/* Pricing Section */
.pricing-section {
  background: linear-gradient(135deg, #f8f9fb 0%, #f0f4f8 100%);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(80, 140, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(239, 139, 1, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-label {
  color: var(--themeColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(239, 139, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  font-weight: 600;
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.pricing-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  padding: 2px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-title {
  color: var(--primaryColor);
  margin-top: clamp(0.5rem, 0.3rem + 0.25vw, 0.75rem);
  line-height: 1.3;
}

/* Pricing Tabs */
.pricing-tabs {
  position: relative;
  z-index: 2;
}

.pricing-tab-btn {
  padding: clamp(10px, 0.75rem + 0.25vw, 14px) clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  background: var(--whiteColor);
  color: var(--textcolor);
  border: 2px solid rgba(80, 140, 1, 0.2);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
}

.pricing-tab-btn:hover {
  border-color: var(--themeColor);
  color: var(--themeColor);
}

.pricing-tab-btn.active {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  color: var(--whiteColor);
  border-color: var(--themeColor);
  box-shadow: 0 4px 15px rgba(80, 140, 1, 0.3);
}

/* Pricing Cards */
.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 250, 255, 1) 100%);
  padding: clamp(2rem, 1.75rem + 0.5vw, 2.5rem);
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(80, 140, 1, 0.12);
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pricing-card::before {
  display: none;
}

.pricing-card::after {
  display: none;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(80, 140, 1, 0.2);
}

.pricing-card-featured {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border: none;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(80, 140, 1, 0.25);
}

.pricing-card-featured .pricing-card-title,
.pricing-card-featured .pricing-amount,
.pricing-card-featured .pricing-card-desc {
  color: var(--whiteColor);
}

.pricing-card-featured::before {
  display: none;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--whiteColor);
  color: var(--themeColor);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: clamp(0.65rem, 0.6rem + 0.15vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 10;
}

.pricing-card-icon {
  width: clamp(60px, 55px + 1vw, 75px);
  height: clamp(60px, 55px + 1vw, 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  color: var(--whiteColor);
  flex-shrink: 0;
  font-size: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(80, 140, 1, 0.3);
  margin: 0 auto;
}

.pricing-card-featured .pricing-card-icon {
  background: var(--whiteColor);
  color: var(--themeColor);
}

.pricing-card-title {
  color: var(--primaryColor);
  position: relative;
  z-index: 3;
  line-height: 1.3;
  margin: 0;
}

.pricing-amount {
  position: relative;
  z-index: 3;
  margin: clamp(1rem, 0.8rem + 0.5vw, 1.5rem) 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-amount .currency {
  font-size: clamp(1rem, 0.9rem + 0.25vw, 1.25rem);
  color: var(--themeColor);
  font-weight: 600;
}

.pricing-amount .price {
  font-size: clamp(2rem, 1.75rem + 0.5vw, 2.5rem);
  color: var(--themeColor);
  font-weight: 700;
}

.pricing-card-featured .pricing-amount .currency,
.pricing-card-featured .pricing-amount .price {
  color: var(--whiteColor);
}

.pricing-amount .period {
  font-size: clamp(0.875rem, 0.8rem + 0.25vw, 1rem);
  color: var(--textcolor);
  font-weight: 500;
}

.pricing-card-featured .pricing-amount .period {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card-desc {
  color: var(--textcolor);
  position: relative;
  z-index: 3;
  flex-grow: 1;
  line-height: 1.6;
  margin: 0;
}

.pricing-btn {
  padding: clamp(12px, 0.875rem + 0.5vw, 16px) clamp(2rem, 1.5rem + 1vw, 3rem);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border: none;
  border-radius: 50px;
  color: var(--whiteColor);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(80, 140, 1, 0.25);
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(80, 140, 1, 0.35);
}

.pricing-btn-featured {
  background: var(--whiteColor);
  color: var(--themeColor);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.pricing-btn-featured:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.d-none {
  display: none !important;
}


/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #f8f9fb 0%, #f0f4f8 100%);
  padding: clamp(3rem, 2.5rem + 1.5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(80, 140, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(239, 139, 1, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.faq-label {
  color: var(--themeColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(239, 139, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  font-weight: 600;
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.faq-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  padding: 2px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.faq-title {
  color: var(--primaryColor);
  margin-top: clamp(0.5rem, 0.3rem + 0.25vw, 0.75rem);
  line-height: 1.3;
}

.faq-accordion {
  position: relative;
  z-index: 2;
}

.faq-item {
  margin-bottom: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 250, 255, 0.95) 100%);
  border-radius: clamp(0.75rem, 0.6rem + 0.5vw, 1.25rem);
  border: 1px solid rgba(80, 140, 1, 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(80, 140, 1, 0.08);
}

.faq-item:hover {
  border-color: var(--themeColor);
  box-shadow: 0 8px 25px rgba(80, 140, 1, 0.15);
  transform: translateY(-2px);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  background: transparent;
  border: none;
  padding:0px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primaryColor);
  text-align: left;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--themeColor);
}

.faq-question span {
  flex: 1;
  text-align: left;
}

.faq-question i {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--themeColor);
  font-size: clamp(0.875rem, 0.8rem + 0.25vw, 14px);
  flex-shrink: 0;
  width: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  height: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(239, 139, 1, 0.08) 100%);
  border-radius: 50%;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  color: var(--whiteColor);
}

.faq-answer {
  padding: 12px clamp(1.25rem, 1rem + 0.5vw, 1.75rem) clamp(1.25rem, 1rem + 0.5vw, 1.75rem);
  animation: slideDown 0.3s ease-out;
  border-top: 1px solid rgba(80, 140, 1, 0.1);
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.02) 0%, rgba(239, 139, 1, 0.01) 100%);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

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

.faq-answer p {
  margin: 0;
  color: #1a1e25a6;
  line-height: 1.4 !important;
}

.collapse {
  overflow: hidden;
}

.collapse.show {
  display: block;
}

.collapse:not(.show) {
  display: none;
}


/* Request Call Back Section */
.request-callback-section {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  padding: clamp(3rem, 2.5rem + 1.5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.request-callback-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>'),
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.request-callback-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.04) 49%, rgba(255, 255, 255, 0.04) 51%, transparent 52%);
  background-size: 60px 60px;
  pointer-events: none;
}

.callback-content {
  position: relative;
  z-index: 2;
}

.callback-label {
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  font-weight: 600;
}

.callback-title {
  color: var(--whiteColor);
  line-height: 1.3;
  font-size: clamp(2rem, 1.75rem + 1vw, 2.5rem);
}

.callback-form-wrapper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.callback-form {
  flex-wrap: wrap;
}

.callback-input-group {
  flex: 1;
  min-width: clamp(200px, 100%, 300px);
}

.callback-input {
  width: 100%;
  padding: clamp(12px, 0.875rem + 0.25vw, 16px) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 0.5rem;
  color: var(--textcolor);
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.callback-input::placeholder {
  color: rgba(26, 30, 37, 0.5);
}

.callback-input:focus {
  outline: none;
  background: var(--whiteColor);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.callback-btn {
  padding: clamp(12px, 0.875rem + 0.25vw, 16px) clamp(2rem, 1.5rem + 1vw, 3rem);
  background: var(--themeColor);
  color: var(--whiteColor);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.callback-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.callback-btn:active {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .callback-form {
    flex-direction: column;
  }

  .callback-input-group {
    min-width: 100%;
  }

  .callback-btn {
    width: 100%;
  }
}


/* How It Works Section */
.how-it-works-section {
  background: var(--whiteColor);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(80, 140, 1, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(239, 139, 1, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.how-it-works-label {
  color: var(--themeColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(239, 139, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  font-weight: 600;
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.how-it-works-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  padding: 2px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.how-it-works-title {
  color: var(--primaryColor);
  margin-top: clamp(0.5rem, 0.3rem + 0.25vw, 0.75rem);
  line-height: 1.3;
}

.how-it-works-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 250, 255, 0.95) 100%);
  padding: clamp(2rem, 1.75rem + 0.5vw, 2.5rem);
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border: 1px solid rgba(80, 140, 1, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(80, 140, 1, 0.08);
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.how-it-works-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(80, 140, 1, 0.15);
  border-color: var(--themeColor);
}

.step-number {
  font-size: clamp(2.5rem, 2rem + 1vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem);
}

.step-icon {
  width: clamp(60px, 55px + 1vw, 75px);
  height: clamp(60px, 55px + 1vw, 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  color: var(--whiteColor);
  flex-shrink: 0;
  font-size: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(80, 140, 1, 0.3);
  margin: 0 auto;
}

.step-title {
  color: var(--primaryColor);
  position: relative;
  z-index: 3;
  line-height: 1.3;
  margin: 0;
}

.step-desc {
  color: var(--textcolor);
  position: relative;
  z-index: 3;
  flex-grow: 1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .how-it-works-card {
    text-align: center;
  }
}



/* Team Section - New Design */
.team-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 40%, rgba(80, 140, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 60%, rgba(239, 139, 1, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.team-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(80, 140, 1, 0.2) 50%, transparent 100%);
  pointer-events: none;
}

.team-content-wrapper {
  position: relative;
  z-index: 2;
}

.team-content-wrapper::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(80, 140, 1,0.15);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(239, 139, 1,0.08);stop-opacity:1" /></linearGradient></defs><circle cx="50" cy="50" r="40" fill="url(%23grad1)"/><circle cx="150" cy="100" r="30" fill="url(%23grad1)"/><path d="M 20 80 Q 50 60 80 80 T 140 80" stroke="rgba(80, 140, 1,0.2)" stroke-width="2" fill="none"/><path d="M 10 120 Q 60 100 110 120 T 190 120" stroke="rgba(239, 139, 1,0.15)" stroke-width="2" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.team-content-wrapper::after {
  content: "";
  position: absolute;
  bottom: -250px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250 250"><defs><linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(239, 139, 1,0.12);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(80, 140, 1,0.08);stop-opacity:1" /></linearGradient></defs><circle cx="80" cy="80" r="50" fill="url(%23grad2)"/><circle cx="180" cy="150" r="35" fill="url(%23grad2)"/><path d="M 30 150 Q 80 120 130 150 T 230 150" stroke="rgba(239, 139, 1,0.2)" stroke-width="2" fill="none"/><path d="M 20 200 Q 70 170 120 200 T 220 200" stroke="rgba(80, 140, 1,0.15)" stroke-width="2" fill="none"/><polygon points="50,50 70,30 90,50 70,70" fill="rgba(80, 140, 1,0.1)"/><polygon points="150,180 170,160 190,180 170,200" fill="rgba(239, 139, 1,0.1)"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.team-content-label {
  color: var(--primaryColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(239, 139, 1, 0.1) 0%, rgba(80, 140, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  border: 1px solid rgba(239, 139, 1, 0.15);
}

.team-content-title {
  color: var(--primaryColor);
  line-height: 1.3;
  margin-top: clamp(0.5rem, 0.3rem + 0.25vw, 0.75rem);
}

.team-content-desc {
  color: var(--textcolor);
  line-height: 1.8;
  opacity: 0.9;
}

.team-content-btn {
  color: var(--themeColor);
  border: 2px solid var(--themeColor);
  padding: clamp(10px, 0.75rem + 0.25vw, 14px) clamp(1.25rem, 1rem + 0.5vw, 1.75rem);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.team-content-btn:hover {
  background: var(--themeColor);
  color: var(--whiteColor);
  transform: translateY(-2px);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  position: relative;
  z-index: 2;
}

.team-grid-item {
  position: relative;
}

/* Team Grid Card */
.team-grid-card {
  position: relative;
  width: 100%;
  height: clamp(280px, 250px + 5vw, 350px);
  border-radius: clamp(0.75rem, 0.6rem + 0.5vw, 1.25rem);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(80, 140, 1, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.team-grid-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(80, 140, 1, 0.2);
}

.team-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-grid-card:hover .team-grid-img {
  transform: scale(1.1);
}

.team-grid-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.95) 100%);
  padding: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.team-grid-card:hover .team-grid-info {
  transform: translateY(0);
}

.team-grid-name {
  color: var(--whiteColor);
  margin-bottom: 0.25rem;
}

.team-grid-role {
  color: rgba(255, 255, 255, 0.8);
}

/* Team CTA Card */
.team-grid-cta {
  background: linear-gradient(135deg, rgba(239, 139, 1, 0.85) 0%, rgba(6, 182, 212, 0.85) 100%),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=400&fit=crop');
  background-size: cover;
  background-position: center;
  border-radius: clamp(0.75rem, 0.6rem + 0.5vw, 1.25rem);
  padding: clamp(2rem, 1.75rem + 1vw, 2.5rem);
  height: clamp(280px, 250px + 5vw, 350px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(239, 139, 1, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-grid-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-grid-cta::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -40%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-grid-cta:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(239, 139, 1, 0.25);
}

.team-cta-title {
  color: var(--whiteColor);
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.team-cta-link {
  background: linear-gradient(135deg, #508C01 0%, #1e3a8a 100%);
  color: var(--whiteColor);
  padding: clamp(8px, 0.625rem + 0.25vw, 12px) clamp(1.25rem, 1rem + 0.5vw, 1.75rem);
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
  position: relative;
  z-index: 2;
}

.team-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}


/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(80, 140, 1, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(239, 139, 1, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(80, 140, 1, 0.2) 50%, transparent 100%);
  pointer-events: none;
}

.testimonials-header {
  position: relative;
  z-index: 2;
  text-align: center;
}

.testimonials-label {
  color: var(--primaryColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(239, 139, 1, 0.1) 0%, rgba(80, 140, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  border: 1px solid rgba(239, 139, 1, 0.15);
}

.testimonials-title {
  color: var(--primaryColor);
  line-height: 1.3;
  margin-top: clamp(0.5rem, 0.3rem + 0.25vw, 0.75rem);
}

.testimonials-controls {
  display: flex;
  gap: clamp(0.75rem, 0.6rem + 0.5vw, 1rem);
  justify-content: flex-end;
}

.testimonials-btn {
  width: clamp(40px, 35px + 1vw, 50px);
  height: clamp(40px, 35px + 1vw, 50px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primaryColor) 0%, #EF8B01 100%);
  border: none;
  color: var(--whiteColor);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 0.75rem + 0.25vw, 1rem);
  box-shadow: 0 4px 15px rgba(239, 139, 1, 0.2);
}

.testimonials-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 139, 1, 0.3);
}

.testimonials-btn.prev-btn {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  box-shadow: 0 4px 15px rgba(80, 140, 1, 0.2);
}

.testimonials-btn.prev-btn:hover {
  box-shadow: 0 8px 25px rgba(80, 140, 1, 0.3);
}

/* Testimonials Slider */
.testimonials-slider-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  animation: autoSlide 50s linear infinite;
  width: fit-content;
}

@keyframes autoSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * (100% + 2rem)));
  }
}

.testimonials-slider:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  width: clamp(300px, 280px + 5vw, 380px);
  background: var(--whiteColor);
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  padding: clamp(1.75rem, 1.5rem + 0.75vw, 2.25rem);
  border: 1px solid rgba(80, 140, 1, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(80, 140, 1, 0.15);
  border-color: var(--themeColor);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: clamp(1rem, 0.8rem + 0.5vw, 1.25rem);
}

.testimonial-rating i {
  color: #FDB022;
  font-size: clamp(0.875rem, 0.75rem + 0.25vw, 1rem);
}

.testimonial-heading {
  color: var(--primaryColor);
  line-height: 1.3;
}

.testimonial-text {
  color: var(--textcolor);
  line-height: 1.4;
  opacity: 0.85;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: clamp(0.8125rem, 0.75rem + 0.2vw, 0.9375rem);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 0.6rem + 0.5vw, 1rem);
  padding-top: clamp(1rem, 0.8rem + 0.5vw, 1.25rem);
  border-top: 1px solid rgba(80, 140, 1, 0.1);
}

.author-avatar {
  width: clamp(45px, 40px + 1vw, 55px);
  height: clamp(45px, 40px + 1vw, 55px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primaryColor);
  flex-shrink: 0;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  color: var(--primaryColor);
  margin-bottom: 0.25rem;
}

.author-role {
  color: var(--textcolor);
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 767px) {
  .testimonials-slider {
    animation: autoSlide 40s linear infinite;
  }

  .testimonials-controls {
    margin-top: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
    justify-content: center;
  }
}


/* Mission Section */
.mission-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(80, 140, 1, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(239, 139, 1, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.mission-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(80, 140, 1, 0.15) 50%, transparent 100%);
  pointer-events: none;
}

.mission-image-wrapper {
  position: relative;
  z-index: 2;
}

.mission-image-container {
  position: relative;
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(80, 140, 1, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(80, 140, 1, 0.1);
}

.mission-image-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(80, 140, 1, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.mission-image-container::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -40%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(239, 139, 1, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.mission-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(80, 140, 1, 0.25);
}

.mission-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.mission-image-container:hover .mission-image {
  transform: scale(1.05);
}

.mission-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 50px + 2vw, 80px);
  height: clamp(60px, 50px + 2vw, 80px);
  background: linear-gradient(135deg, var(--primaryColor) 0%, #EF8B01 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  font-size: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(239, 139, 1, 0.3);
}

.mission-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 50px rgba(239, 139, 1, 0.4);
}

.mission-content {
  position: relative;
  z-index: 2;
}

.mission-label {
  color: var(--primaryColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(239, 139, 1, 0.1) 0%, rgba(80, 140, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  border: 1px solid rgba(239, 139, 1, 0.15);
  position: relative;
}



.mission-title {
  color: var(--primaryColor);
  line-height: 1.3;
  margin-top: clamp(0.5rem, 0.3rem + 0.25vw, 0.75rem);
}

.mission-desc {
  color: var(--textcolor);
  line-height: 1.4;
  opacity: 0.9;
}

/* Vision Section */
.vision-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: clamp(4rem, 3rem + 2vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(80, 140, 1, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(239, 139, 1, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.vision-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(80, 140, 1, 0.15) 50%, transparent 100%);
  pointer-events: none;
}

.vision-image-wrapper {
  position: relative;
  z-index: 2;
}

.vision-image-container {
  position: relative;
  border-radius: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(80, 140, 1, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(239, 139, 1, 0.1);
}

.vision-image-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(239, 139, 1, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.vision-image-container::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -40%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(80, 140, 1, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.vision-image-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(80, 140, 1, 0.25);
}

.vision-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.vision-image-container:hover .vision-image {
  transform: scale(1.05);
}

.vision-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 50px + 2vw, 80px);
  height: clamp(60px, 50px + 2vw, 80px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  font-size: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(80, 140, 1, 0.3);
}

.vision-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 50px rgba(80, 140, 1, 0.4);
}

.vision-content {
  position: relative;
  z-index: 2;
}

.vision-label {
  color: var(--primaryColor);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, rgba(239, 139, 1, 0.1) 0%, rgba(80, 140, 1, 0.08) 100%);
  padding: clamp(0.5rem, 0.4rem + 0.25vw, 0.75rem) clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  border-radius: clamp(2rem, 1.5rem + 1vw, 3rem);
  font-size: clamp(0.75rem, 0.65rem + 0.25vw, 0.875rem);
  border: 1px solid rgba(239, 139, 1, 0.15);
  position: relative;
}


.vision-title {
  color: var(--primaryColor);
  line-height: 1.3;
  margin-top: clamp(0.5rem, 0.3rem + 0.25vw, 0.75rem);
}

.vision-desc {
  color: var(--textcolor);
  line-height: 1.4;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {

  .mission-image-wrapper,
  .vision-image-wrapper {
    margin-bottom: clamp(2rem, 1.5rem + 1vw, 2.5rem);
  }
}



/* ============================================
   AGRICULTURE PREMIUM DESIGN ENHANCEMENTS
   ============================================ */

/* ============================================
   PREMIUM HERO SECTION WITH ANIMATED BG
   ============================================ */

/* Hero Section Container */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?w=1200&h=800&fit=crop') center/cover fixed,
    linear-gradient(-45deg, #508C01, #6ba81a, #F6AD01, #508C01);
  background-size: cover, 400% 400%;
  animation: gradientShift 15s ease infinite;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(80, 140, 1, 0.7) 0%, rgba(100, 160, 20, 0.75) 50%, rgba(50, 100, 0, 0.8) 100%);
  z-index: 2;
  animation: overlayShift 20s ease-in-out infinite;
}

@keyframes overlayShift {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.8;
  }
}

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

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

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

/* Animated Background Elements */
.hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Animated Shapes */
.hero-animated-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-animated-shapes::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.hero-animated-shapes::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.05);
  }

  50% {
    transform: translate(0, -50px) scale(1.1);
  }

  75% {
    transform: translate(-30px, -30px) scale(1.05);
  }
}

/* Additional Floating Elements */
.hero-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(246, 173, 1, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 5%;
  right: 5%;
  animation: floatSlow 35s infinite ease-in-out reverse;
  z-index: 2;
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(50px, -50px);
  }
}

/* Grid Pattern Background */
.hero-background::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.08) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.08) 75%, rgba(255, 255, 255, 0.08) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.08) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.08) 75%, rgba(255, 255, 255, 0.08) 76%, transparent 77%, transparent);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
  opacity: 0.4;
}

@keyframes gridShift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

/* Particle Effects */
.hero-background::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 35% 45%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 65% 15%, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 85% 65%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 200px 200px, 250px 250px, 220px 220px, 240px 240px, 210px 210px;
  animation: particleFloat 40s linear infinite;
  opacity: 0.5;
}

@keyframes particleFloat {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 200px 0, -250px 0, 220px 0, -240px 0, 210px 0;
  }
}

/* Content stays above animations */
.hero-section .container {
  position: relative;
  z-index: 10;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

/* Ensure text is visible with better shadows */
.hero-title {
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 0.8s ease-out !important;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-label {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: floatUp 0.8s ease-out !important;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  display: inline-block;
}

.hero-desc {
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  animation: slideInRight 0.8s ease-out 0.2s both !important;
  font-weight: 500;
  line-height: 1.8;
}

.hero-buttons {
  animation: floatUp 0.8s ease-out 0.4s both !important;
}

.hero-stats {
  animation: floatUp 0.8s ease-out 0.6s both !important;
}

/* Premium Button Styling */
.hero-btn-primary,
.hero-btn-secondary {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-btn-primary {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.95) 0%, rgba(100, 160, 20, 0.95) 100%);
  color: var(--whiteColor);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--whiteColor);
}

.hero-btn-primary::before,
.hero-btn-secondary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-btn-primary:hover::before,
.hero-btn-secondary:hover::before {
  width: 400px;
  height: 400px;
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Premium Stat Cards */
.hero-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: clamp(1.5rem, 1.25rem + 1vw, 2rem) clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  border-radius: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatUp 0.8s ease-out backwards;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-stat:nth-child(1) {
  animation-delay: 0.6s;
}

.hero-stat:nth-child(2) {
  animation-delay: 0.7s;
}

.hero-stat:nth-child(3) {
  animation-delay: 0.8s;
}

.hero-stat:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stat h4 {
  animation: slideInUp 0.6s ease-out;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-stat p {
  animation: slideInUp 0.6s ease-out 0.1s both;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    background-attachment: scroll;
  }

  .hero-animated-shapes::before {
    width: 250px;
    height: 250px;
  }

  .hero-animated-shapes::after {
    width: 200px;
    height: 200px;
  }

  .hero-section::after {
    width: 220px;
    height: 220px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 1.5rem + 3vw, 2.5rem);
  }
}


/* Success Story Section */
.success-story-section {
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
}

.success-image-wrapper {
  animation: scaleUp 0.8s ease-out;
  position: relative;
}

.success-image {
  transition: transform 0.6s ease-out;
  border-radius: 1.5rem;
}

.success-image-wrapper:hover .success-image {
  transform: scale(1.05);
}

.success-content h2 {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.success-desc {
  animation: floatUp 0.8s ease-out 0.3s both;
}

/* Service Cards - Premium Style */


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

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

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

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

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

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

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(246, 173, 1, 0.1) 50%, transparent 100%);
  transition: left 0.5s ease;
  z-index: 1;
}

.offer-card:hover::before {
  left: 100%;
}

.offer-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(80, 140, 1, 0.15);
  border-color: rgba(80, 140, 1, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f5f1e8 100%);
}

.offer-card-icon {
  animation: scaleUp 0.6s ease-out;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #508C01 0%, #F6AD01 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(80, 140, 1, 0.25);
  transition: all 0.3s ease;
}

.offer-card:hover .offer-card-icon {
  transform: scale(1.15) rotateZ(10deg);
  box-shadow: 0 15px 45px rgba(80, 140, 1, 0.35);
}

.offer-card-title {
  animation: slideInLeft 0.6s ease-out 0.1s both;
}

.offer-card-desc {
  animation: slideInLeft 0.6s ease-out 0.2s both;
}

.offer-card-link {
  color: var(--themeColor);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.offer-card-link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-card-link {
  color: var(--primaryColor);
}

.offer-card:hover .offer-card-link::after {
  transform: translateX(5px);
}

.offer-subtitle {
  color: rgba(26, 30, 37, 0.7);
  max-width: 600px;
  margin: 0 auto;
  animation: floatUp 0.8s ease-out 0.1s both;
}

.offer-card-features {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  animation: floatUp 0.8s ease-out 0.3s both;
}

.offer-card-features li {
  color: var(--textcolor);
  margin: 0.5rem 0;
  padding-left: 0;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.offer-card-features li:hover {
  color: var(--themeColor);
  transform: translateX(5px);
}

.offer-card-features li::before {
  content: "→ ";
  color: var(--themeColor);
  margin-right: 0.5rem;
  font-weight: bold;
}

/* Feature List Items */
.feature-list-item {
  animation: floatUp 0.6s ease-out backwards;
  transition: all 0.3s ease;
  border-radius: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.05) 0%, rgba(246, 173, 1, 0.03) 100%);
}

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

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

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

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

.feature-list-item:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(246, 173, 1, 0.08) 100%);
  box-shadow: 0 10px 30px rgba(80, 140, 1, 0.1);
}

.feature-badge {
  animation: scaleUp 0.6s ease-out;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #508C01 0%, #F6AD01 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(80, 140, 1, 0.25);
}

/* Testimonial Cards */
.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
  border: 1px solid rgba(80, 140, 1, 0.1);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.4s ease;
  animation: floatUp 0.6s ease-out;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(80, 140, 1, 0.2);
  border-color: rgba(80, 140, 1, 0.2);
}

.testimonial-rating {
  color: var(--primaryColor);
  margin-bottom: 1rem;
  animation: scaleUp 0.6s ease-out;
}

.author-avatar {
  transition: all 0.3s ease;
  border-radius: 50%;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
}

/* Team Grid */
.team-grid-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: scaleUp 0.6s ease-out;
}

.team-grid-card:hover {
  transform: scale(1.05);
}

.team-grid-img {
  transition: all 0.4s ease;
}

.team-grid-card:hover .team-grid-img {
  transform: scale(1.1);
}

.team-grid-card:hover .team-grid-info {
  transform: translateY(0);
}

/* Callback Form */
.callback-form {
  animation: floatUp 0.8s ease-out;
}

.callback-input {
  background: rgba(80, 140, 1, 0.05);
  border: 2px solid rgba(80, 140, 1, 0.2);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  color: var(--textcolor);
  transition: all 0.3s ease;
}

.callback-input:focus {
  outline: none;
  border-color: var(--themeColor);
  background: rgba(80, 140, 1, 0.08);
  box-shadow: 0 0 0 4px rgba(80, 140, 1, 0.1);
  transform: translateY(-2px);
}

/* View All Button */
.view-all-btn {
  background: linear-gradient(135deg, #508C01 0%, #F6AD01 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(80, 140, 1, 0.25);
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(80, 140, 1, 0.35);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Media Query Animations */
@media (max-width: 768px) {

  .hero-title,
  .hero-desc,
  .hero-buttons,
  .hero-stats {
    animation-delay: 0 !important;
  }
}


/* ============================================
   FEATURED CROPS SECTION
   ============================================ */

.featured-crops-section {
  background: linear-gradient(135deg, #f0f8e8 0%, #fff9f0 100%);
  position: relative;
  overflow: hidden;
}

.featured-crops-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(80, 140, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(246, 173, 1, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.crop-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbf8 100%);
  border: 2px solid rgba(80, 140, 1, 0.1);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatUp 0.6s ease-out backwards;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

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

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

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

.crop-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(80, 140, 1, 0.05) 50%, transparent 100%);
  transition: left 0.5s ease;
}

.crop-card:hover::before {
  left: 100%;
}

.crop-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(80, 140, 1, 0.18);
  border-color: rgba(80, 140, 1, 0.3);
}

.crop-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.2) 0%, rgba(246, 173, 1, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--themeColor);
  font-size: 1.8rem;
  transition: all 0.3s ease;
  animation: scaleUp 0.6s ease-out;
}

.crop-card:hover .crop-icon {
  transform: scale(1.2) rotateZ(15deg);
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.3) 0%, rgba(246, 173, 1, 0.25) 100%);
}

.crop-name {
  animation: slideInLeft 0.6s ease-out 0.1s both;
  margin-bottom: 1rem;
}

.crop-stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(80, 140, 1, 0.1);
  border-bottom: 1px solid rgba(80, 140, 1, 0.1);
  margin: 1rem 0;
  animation: floatUp 0.6s ease-out 0.2s both;
}

.crop-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-label {
  color: rgba(26, 30, 37, 0.6);
}

.stat-value {
  color: var(--themeColor);
  font-size: 1.1rem;
}

.crop-desc {
  animation: slideInRight 0.6s ease-out 0.3s both;
}

.crop-link {
  color: var(--themeColor);
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s ease;
  position: relative;
  animation: floatUp 0.6s ease-out 0.4s both;
}

.crop-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primaryColor);
  transition: width 0.3s ease;
}

.crop-card:hover .crop-link {
  color: var(--primaryColor);
}

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


/* ============================================
   IMPACT SECTION
   ============================================ */

.impact-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(80, 140, 1, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(246, 173, 1, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.impact-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbf8 100%);
  border: 1px solid rgba(80, 140, 1, 0.1);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatUp 0.6s ease-out backwards;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.impact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(80, 140, 1, 0.08) 0%, transparent 70%);
  transition: all 0.4s ease;
}

.impact-card:hover::before {
  left: 0;
  background: radial-gradient(circle, rgba(246, 173, 1, 0.1) 0%, transparent 70%);
}

.impact-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(80, 140, 1, 0.15);
  border-color: rgba(80, 140, 1, 0.2);
}

.impact-number {
  display: block;
  animation: scaleUp 0.6s ease-out;
  background: linear-gradient(135deg, #508C01 0%, #F6AD01 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
}

.impact-label {
  animation: slideInLeft 0.6s ease-out 0.1s both;
}

.impact-desc {
  animation: slideInRight 0.6s ease-out 0.2s both;
  color: rgba(26, 30, 37, 0.7);
}

.impact-card:hover .impact-number {
  animation: slideInUp 0.3s ease-out;
}


/* ============================================
   IMPROVED CALLBACK SECTION
   ============================================ */

.request-callback-section {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.95) 0%, rgba(100, 160, 20, 0.9) 50%, rgba(246, 173, 1, 0.85) 100%);
  position: relative;
  overflow: hidden;
}

.request-callback-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  animation: pulse 15s ease-in-out infinite;
  pointer-events: none;
}

.callback-content {
  position: relative;
  z-index: 2;
  animation: floatUp 0.8s ease-out;
}

.callback-label {
  color: var(--whiteColor);
  animation: floatUp 0.8s ease-out 0.1s both;
}

.callback-title {
  color: var(--whiteColor);
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.callback-subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  animation: slideInRight 0.8s ease-out 0.3s both;
}

.callback-form-wrapper {
  animation: floatUp 0.8s ease-out 0.4s both;
}

.callback-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.callback-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: floatUp 0.6s ease-out backwards;
}

.callback-input-group:nth-child(1) {
  animation-delay: 0.4s;
}

.callback-input-group:nth-child(2) {
  animation-delay: 0.5s;
}

.callback-input-group:nth-child(3) {
  animation-delay: 0.6s;
}

.callback-input-label {
  color: var(--whiteColor);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: start;
}

.callback-input {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  color: var(--whiteColor);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 100%;
  min-width: 200px;
}

.callback-input::placeholder {
  color: var(--whiteColor);
}

.callback-input:focus {
  outline: none;
  border-color: var(--whiteColor);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.callback-btn {
  background: var(--themeColor);
  color: var(--whiteColor);
  border: none;
  padding: 1rem 3rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1.05rem);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  animation: floatUp 0.8s ease-out 0.7s both;
  white-space: nowrap;
}

.callback-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.callback-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  color: var(--primaryColor);
}

.callback-btn:hover::before {
  width: 300px;
  height: 300px;
}

.callback-note {
  color: rgba(255, 255, 255, 0.8);
  animation: floatUp 0.8s ease-out 0.8s both;
}

@media (max-width: 768px) {
  .callback-form {
    flex-direction: column;
  }

  .callback-input {
    min-width: 100%;
  }

  .callback-btn {
    width: 100%;
  }
}


/* ============================================
   CORE ANIMATIONS (IF NOT ALREADY PRESENT)
   ============================================ */

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

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

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

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

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

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

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

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

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes floatingBadge {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

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

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}


/* FAQ Section */
.faq-section {
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(80, 140, 1, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(239, 139, 1, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.faq-header {
  position: relative;
  z-index: 2;
  animation: fadeInDown 0.8s ease-out;
}

.faq-title {
  margin-top: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  animation: fadeInDown 0.8s ease-out 0.1s backwards;
}

.faq-subtitle {
  animation: fadeInDown 0.8s ease-out 0.2s backwards;
}

.faq-accordion {
  position: relative;
  z-index: 2;
}

.faq-item {
  background: var(--whiteColor);
  border: 2px solid rgba(80, 140, 1, 0.15);
  border-radius: clamp(0.875rem, 0.8rem + 0.2vw, 1.125rem);
  margin-bottom: clamp(1rem, 0.8rem + 0.3vw, 1.5rem);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 12px rgba(80, 140, 1, 0.08);
  animation: fadeInUp 0.6s ease-out backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }
.faq-item:nth-child(7) { animation-delay: 0.4s; }
.faq-item:nth-child(8) { animation-delay: 0.45s; }
.faq-item:nth-child(9) { animation-delay: 0.5s; }
.faq-item:nth-child(10) { animation-delay: 0.55s; }

.faq-item:hover {
  transform: translateY(-8px);
  border-color: rgba(80, 140, 1, 0.3);
  box-shadow: 0 15px 40px rgba(80, 140, 1, 0.15);
}

.faq-item.accordion-item {
  border: none;
  background: transparent;
  box-shadow: none;
}

.faq-button {
  background: var(--whiteColor);
  border: 2px solid rgba(80, 140, 1, 0.15);
  color: var(--textcolor);
  padding: clamp(1.25rem, 1.1rem + 0.3vw, 1.75rem) clamp(1.5rem, 1.3rem + 0.4vw, 2rem);
  font-weight: 600;
  font-size: clamp(1rem, 0.95rem + 0.15vw, 1.125rem);
  transition: all 0.4s ease;
  border-radius: clamp(0.875rem, 0.8rem + 0.2vw, 1.125rem);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.9rem + 0.3vw, 1.5rem);
  text-align: left;
  width: 100%;
  position: relative;
}

.faq-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.08) 0%, rgba(239, 139, 1, 0.05) 100%) !important;
  border-color: var(--themeColor);
  color: var(--primaryColor);
  box-shadow: none !important;
}

.faq-button:hover {
  border-color: rgba(80, 140, 1, 0.4);
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.08) 0%, rgba(239, 139, 1, 0.05) 100%);
}

.faq-button::after {
  content: "";
  display: none;
}

.faq-icon {
  width: clamp(2rem, 1.8rem + 0.3vw, 2.5rem);
  height: clamp(2rem, 1.8rem + 0.3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  color: var(--whiteColor);
  flex-shrink: 0;
  font-size: clamp(1rem, 0.95rem + 0.15vw, 1.25rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(80, 140, 1, 0.2);
}

.faq-button:hover .faq-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(80, 140, 1, 0.3);
}

.faq-question {
  font-weight: 600;
  flex-grow: 1;
  position: relative;
}



.faq-button:not(.collapsed) .faq-icon::before {
  opacity: 0;
}

.accordion-collapse {
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer {
  background: var(--whiteColor);
  border-top: 2px solid rgba(80, 140, 1, 0.15);
  padding: clamp(1.5rem, 1.3rem + 0.3vw, 2rem) clamp(1.5rem, 1.3rem + 0.4vw, 2rem);
  color: var(--textcolor);
  line-height: 1.8;
  font-weight: 500;
}

.faq-answer p {
  margin: 0;
  font-size: clamp(0.9375rem, 0.875rem + 0.15vw, 1.0625rem);
}

.faq-cta {
  animation: fadeInUp 0.8s ease-out backwards;
  animation-delay: 0.6s;
}

.faq-cta-text {
  margin-bottom: 0 !important;
}

.faq-cta-btn {
  padding: clamp(0.875rem, 0.8rem + 0.25vw, 1.125rem) clamp(2rem, 1.8rem + 0.5vw, 2.75rem);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 0.75rem;
  color: var(--whiteColor);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1.05rem);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(80, 140, 1, 0.3);
  position: relative;
  overflow: hidden;
}

.faq-cta-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.faq-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(80, 140, 1, 0.4);
}

.faq-cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-button {
    padding: clamp(1rem, 0.9rem + 0.2vw, 1.5rem) clamp(1.25rem, 1.1rem + 0.3vw, 1.75rem);
    gap: 0.75rem;
  }

  .faq-icon {
    width: clamp(1.75rem, 1.6rem + 0.25vw, 2rem);
    height: clamp(1.75rem, 1.6rem + 0.25vw, 2rem);
    font-size: clamp(0.875rem, 0.8rem + 0.15vw, 1rem);
  }

  .faq-answer {
    padding: clamp(1.25rem, 1.1rem + 0.2vw, 1.75rem) clamp(1.25rem, 1.1rem + 0.3vw, 1.75rem);
  }

  .faq-answer p {
    font-size: clamp(0.875rem, 0.8rem + 0.15vw, 1rem);
  }
}


/* Premium Agriculture Service Cards */
.premium-ag-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 1.5px solid rgba(80, 140, 1, 0.2);
  border-radius: 1.25rem;
  padding: clamp(2rem, 1.75rem + 1vw, 2.5rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 40px rgba(80, 140, 1, 0.08), 0 2px 8px rgba(0, 0, 0, 0.05);
  animation: slideUpCard 0.8s ease-out backwards;
}

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

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

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

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

.premium-ag-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(80, 140, 1, 0.08) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-ag-card:hover::before {
  opacity: 1;
}

.premium-ag-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #508C01 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-ag-card:hover::after {
  opacity: 1;
}

.premium-ag-card:hover {
  transform: translateY(-12px);
  border-color: rgba(80, 140, 1, 0.4);
  box-shadow: 0 25px 70px rgba(80, 140, 1, 0.18), 0 5px 15px rgba(0, 0, 0, 0.08);
}

.premium-featured {
  border: 2px solid rgba(80, 140, 1, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8e8 100%);
  box-shadow: 0 15px 50px rgba(80, 140, 1, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.premium-featured::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.2) 0%, rgba(239, 139, 1, 0.1) 100%);
  border-radius: 1.25rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-featured:hover::before {
  opacity: 1;
}

.ag-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #508C01 0%, #EF8B01 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(80, 140, 1, 0.3);
  z-index: 10;
  animation: badgeFloat 2s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.ag-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.ag-card-icon-wrapper {
  flex: 1;
}

.ag-card-icon-circle {
  width: clamp(3.5rem, 3.25rem + 0.5vw, 4rem);
  height: clamp(3.5rem, 3.25rem + 0.5vw, 4rem);
  background: linear-gradient(135deg, #508C01 0%, #EF8B01 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 8px 25px rgba(80, 140, 1, 0.25);
  transition: all 0.3s ease;
  position: relative;
}

.premium-ag-card:hover .ag-card-icon-circle {
  transform: scale(1.1) rotateZ(-5deg);
  box-shadow: 0 12px 35px rgba(80, 140, 1, 0.35);
}

.ag-card-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.15) 0%, rgba(239, 139, 1, 0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.6;
}

.ag-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ag-card-title {
  margin-bottom: 1rem;
  line-height: 1.3;
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
}

.ag-card-title span {
  color: var(--themeColor);
  font-weight: 700;
}

.ag-card-desc {
  color: var(--textcolor);
  margin-bottom: 1.5rem;
  flex: 1;
}

.ag-card-features {
  margin: 1.5rem 0;
}

.ag-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ag-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 0.8rem + 0.15vw, 0.95rem);
  color: var(--textcolor);
  transition: all 0.3s ease;
}

.ag-features-list li i {
  color: var(--themeColor);
  font-size: 1rem;
  flex-shrink: 0;
}

.premium-ag-card:hover .ag-features-list li {
  transform: translateX(5px);
}

.ag-card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(80, 140, 1, 0.1);
}

.ag-card-link {
  color: var(--themeColor);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8rem + 0.15vw, 0.95rem);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ag-card-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--themeColor), var(--primaryColor));
  transition: width 0.3s ease;
}

.ag-card-link:hover {
  color: var(--primaryColor);
  gap: 1rem;
}

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

.ag-card-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.ag-card-link:hover i {
  transform: translateX(3px);
}

/* Agriculture Services Section */
.agriculture-services-section {
  padding: clamp(4rem, 3rem + 3vw, 6rem) 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  position: relative;
  overflow: hidden;
}

.agriculture-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(80, 140, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(239, 139, 1, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.agriculture-services-section .offer-header {
  margin-bottom: clamp(3rem, 2.5rem + 2vw, 4rem);
}


/* Simple & Clean Premium Real Estate Cards */
.clean-estate-card {
  background: #ffffff;
  border: 1px solid rgba(80, 140, 1, 0.12);
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 16px rgba(80, 140, 1, 0.06);
  animation: slideUpClean 0.8s ease-out backwards;
}

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

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

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

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

.clean-estate-card:hover {
  transform: translateY(-8px);
  border-color: rgba(80, 140, 1, 0.25);
  box-shadow: 0 12px 32px rgba(80, 140, 1, 0.12);
}

.clean-estate-highlighted {
  border: 1.5px solid rgba(80, 140, 1, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f9fbf6 100%);
  box-shadow: 0 6px 24px rgba(80, 140, 1, 0.1);
}

.clean-estate-highlighted:hover {
  box-shadow: 0 16px 40px rgba(80, 140, 1, 0.16);
  border-color: rgba(80, 140, 1, 0.35);
}

.estate-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.12) 0%, rgba(239, 139, 1, 0.08) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--themeColor);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.clean-estate-card:hover .estate-icon {
  background: linear-gradient(135deg, #508C01 0%, #EF8B01 100%);
  color: white;
  transform: scale(1.1);
}

.estate-title {
  margin-top: 1.25rem;
  line-height: 1.3;
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.3rem);
  color: var(--primaryColor);
}

.estate-title span {
  color: var(--themeColor);
}

.estate-desc {
  color: var(--textcolor);
  margin-top: 0.75rem;
  flex: 1;
  font-size: clamp(0.925rem, 0.9rem + 0.1vw, 0.98rem);
}

.estate-link {
  color: var(--themeColor);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.85rem, 0.8rem + 0.15vw, 0.95rem);
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
  position: relative;
}



.clean-estate-card:hover .estate-link {
  color: var(--primaryColor);
}


/* Real Estate Services Section */
.realestate-services-section {
  padding: clamp(4rem, 3rem + 3vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.realestate-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  pointer-events: none;
}

.realestate-services-section .offer-header {
  margin-bottom: clamp(3rem, 2.5rem + 2vw, 4rem);
}


/* Modern Industry Service Cards - Completely Different Design */
.modern-industry-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-left: 5px solid var(--themeColor);
  border-radius: 0.75rem;
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: slideInRight 0.8s ease-out backwards;
}

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

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.modern-industry-card:hover {
  border-left-color: var(--primaryColor);
  box-shadow: 0 16px 40px rgba(80, 140, 1, 0.15);
  transform: translateX(8px);
}

.card-featured {
  background: linear-gradient(135deg, #f0f8e8 0%, #f9fbf6 100%);
  border-left: 5px solid var(--primaryColor);
  box-shadow: 0 12px 32px rgba(80, 140, 1, 0.12);
}

.card-featured:hover {
  box-shadow: 0 20px 50px rgba(80, 140, 1, 0.18);
}

.card-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(80, 140, 1, 0.08);
  position: absolute;
  top: 0rem;
  right: 1.5rem;
  line-height: 1;
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-icon-container {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.15) 0%, rgba(239, 139, 1, 0.1) 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--themeColor);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.modern-industry-card:hover .card-icon-container {
  background: linear-gradient(135deg, #508C01 0%, #EF8B01 100%);
  color: white;
  transform: scale(1.15) rotateZ(-5deg);
}

.card-title {
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.25rem);
  color: var(--primaryColor);
}

.card-title span {
  color: var(--themeColor);
}

.card-description {
  color: var(--textcolor);
  line-height: 1.6 !important;
  margin: 12px 0px;
  flex: 1;
  font-size: clamp(0.9rem, 0.85rem + 0.15vw, 0.95rem);
}

.card-cta {
  color: var(--themeColor);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.8rem, 0.75rem + 0.15vw, 0.9rem);
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  width: fit-content;
}

.card-cta::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--themeColor);
  transition: width 0.3s ease;
}

.modern-industry-card:hover .card-cta {
  color: var(--primaryColor);
  gap: 0.75rem;
}

.modern-industry-card:hover .card-cta::after {
  width: 100%;
  background: var(--primaryColor);
}

.card-cta i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.modern-industry-card:hover .card-cta i {
  transform: translateX(3px);
}

/* Industry Services Section */
.industry-services-section {
  padding: clamp(4rem, 3rem + 3vw, 6rem) 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}

.industry-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(80, 140, 1, 0.04) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.industry-services-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 139, 1, 0.03) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.industry-services-section .offer-header {
  margin-bottom: clamp(3rem, 2.5rem + 2vw, 4rem);
}


/* ROI Calculator Section */
.roi-calculator-section {
  padding: clamp(4rem, 3rem + 3vw, 6rem) 0;
  background: linear-gradient(135deg, #f9fbf6 0%, #ffffff 50%, #f9fbf6 100%);
  position: relative;
  overflow: hidden;
}

.roi-calculator-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 30%, rgba(80, 140, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(239, 139, 1, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.roi-calculator-wrapper {
  background: white;
  border-radius: 1.5rem;
  padding: clamp(2rem, 2.5rem + 2vw, 3rem);
  box-shadow: 0 10px 50px rgba(80, 140, 1, 0.1);
  border: 1px solid rgba(80, 140, 1, 0.1);
  position: relative;
  z-index: 1;
}

.roi-input-box,
.roi-results-box {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 1rem;
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  border: 1px solid rgba(80, 140, 1, 0.12);
}

.roi-input-box {
  box-shadow: 0 4px 16px rgba(80, 140, 1, 0.06);
}

.roi-results-box {
  box-shadow: 0 6px 20px rgba(80, 140, 1, 0.08);
}

.roi-subtitle {
  color: var(--primaryColor);
  margin-bottom: 1.5rem;
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.3rem);
}

.roi-input-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.roi-label {
  color: var(--themeColor);
  font-size: clamp(0.85rem, 0.8rem + 0.15vw, 0.95rem);
  letter-spacing: 0.3px;
}

.roi-input {
  padding: clamp(0.875rem, 0.8rem + 0.2vw, 1rem);
  border: 1.5px solid rgba(80, 140, 1, 0.2);
  border-radius: 0.625rem;
  background: white;
  color: var(--textcolor);
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.9rem, 0.85rem + 0.15vw, 0.95rem);
  transition: all 0.3s ease;
}

.roi-input:focus {
  outline: none;
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

.roi-input::placeholder {
  color: rgba(26, 30, 37, 0.4);
}

.roi-calculate-btn {
  width: 100%;
  padding: clamp(0.875rem, 0.8rem + 0.2vw, 1rem);
  background: linear-gradient(135deg, #508C01 0%, #EF8B01 100%);
  border: none;
  border-radius: 0.625rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(80, 140, 1, 0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.roi-calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(80, 140, 1, 0.4);
}

.roi-calculate-btn:active {
  transform: translateY(0);
}

.roi-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1rem, 0.8rem + 1vw, 1.5rem);
}

.roi-result-item {
  background: white;
  border: 1px solid rgba(80, 140, 1, 0.12);
  border-radius: 0.75rem;
  padding: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.roi-result-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(80, 140, 1, 0.12);
  border-color: rgba(80, 140, 1, 0.25);
}

.roi-result-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.12) 0%, rgba(239, 139, 1, 0.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--themeColor);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.roi-result-item:hover .roi-result-icon {
  background: linear-gradient(135deg, #508C01 0%, #EF8B01 100%);
  color: white;
  transform: scale(1.1);
}

.roi-result-label {
  color: var(--textcolor);
  font-size: clamp(0.8rem, 0.75rem + 0.15vw, 0.9rem);
  margin: 0;
}

.roi-result-value {
  margin: 0.5rem 0 0 0;
  font-size: clamp(1.5rem, 1.3rem + 0.5vw, 1.8rem);
  line-height: 1;
}

.roi-result-desc {
  color: var(--textcolor);
  opacity: 0.8;
  margin-top: 0.25rem;
  font-size: clamp(0.75rem, 0.7rem + 0.1vw, 0.85rem);
}

.roi-disclaimer {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.08) 0%, rgba(239, 139, 1, 0.04) 100%);
  border-left: 3px solid var(--themeColor);
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: left;
}

.roi-disclaimer p {
  margin: 0;
  color: var(--textcolor);
}

.roi-disclaimer i {
  color: var(--themeColor);
  margin-right: 0.5rem;
}

.roi-cta-btn {
  color: white;
  background: linear-gradient(135deg, #508C01 0%, #EF8B01 100%);
  padding: 0.875rem 2rem;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(80, 140, 1, 0.3);
  display: inline-block;
}

.roi-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(80, 140, 1, 0.4);
}

@media (max-width: 991px) {
  .roi-result-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}


/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, #f8fafb 0%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(80, 140, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(239, 139, 1, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-header {
  position: relative;
  z-index: 2;
  animation: fadeInDown 0.8s ease-out;
}

/* Gallery Filters */
.gallery-filters {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.gallery-filter-btn {
  padding: clamp(0.625rem, 0.55rem + 0.2vw, 0.875rem) clamp(1.25rem, 1.1rem + 0.5vw, 1.75rem);
  border: 2px solid rgba(80, 140, 1, 0.3);
  background: transparent;
  border-radius: 2rem;
  color: var(--textcolor);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.8rem + 0.2vw, 1rem);
  position: relative;
  overflow: hidden;
}

.gallery-filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #508C01 0%, #EF8B01 100%);
  transition: left 0.3s ease;
  z-index: -1;
  border-radius: 2rem;
}

.gallery-filter-btn span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  left: 0;
  border-color: transparent;
  color: var(--whiteColor);
}

.gallery-filter-btn:hover::before,
.gallery-filter-btn.active::before {
  left: 0;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 1.25rem + 0.5vw, 2rem);
  position: relative;
  z-index: 2;
}

.gallery-item {
  animation: fadeInUp 0.8s ease-out backwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.5s; }
.gallery-item:nth-child(2) { animation-delay: 0.6s; }
.gallery-item:nth-child(3) { animation-delay: 0.7s; }
.gallery-item:nth-child(4) { animation-delay: 0.8s; }
.gallery-item:nth-child(5) { animation-delay: 0.9s; }
.gallery-item:nth-child(6) { animation-delay: 1s; }
.gallery-item:nth-child(7) { animation-delay: 1.1s; }
.gallery-item:nth-child(8) { animation-delay: 1.2s; }

.gallery-item.hidden {
  display: none;
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  box-shadow: 0 10px 40px rgba(80, 140, 1, 0.15);
  transition: all 0.3s ease;
}

.gallery-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(80, 140, 1, 0.25);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-image-wrapper:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000036;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.gallery-image-wrapper:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  text-align: center;
  color: var(--whiteColor);
  animation: slideInUp 0.4s ease-out;
}

.gallery-item-title {
  color: var(--whiteColor);
  margin: 0;
  font-weight: 600;
}

.gallery-item-desc {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

.gallery-zoom-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--whiteColor);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none !important;
}

.gallery-zoom-btn:hover {
  background: var(--whiteColor);
  color: var(--themeColor);
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .gallery-filters {
    flex-wrap: wrap;
  }

  .gallery-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

}
