/* Smooth Scrolling for Entire Page */
html{
    background-color: #144835;
    height: 100%;
    width: auto;
    overflow-x: hidden;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
  }

/* Enhanced Scroll Effects */
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Scroll Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Custom Scrollbar - Removed to use default scrollbar */
/* 
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #a2c144, #144835);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #144835, #a2c144);
}
*/

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #a2c144, #144835);
  z-index: 9999;
  transition: width 0.1s ease;
}
  /* Removed global font-family override to prevent navigation conflicts */
body{
    padding: 0;
    margin: 0;
    margin-top: 6vw;
}



/* Ensure Navigation Bar Works Properly */
nav {
    position: relative !important;
}

#navbar {
    position: fixed !important;
    background: transparent !important;
}

#navbar.sticky {
    background: #faf1e2 !important;
}
.logo-full h2, .logo-full p ,.menu-icon p {
  color: #ffffff;
}
.menu-icon div{
  color: #fff;
}

/* Enhanced Hero Section Styles */
.hero-content {
  text-align: left;
    position: relative;
  top: 1vw;
}

.hero-subtitle {
  font-size: 1.4vw;
  color: #a2c144;
  font-weight: 600;
  margin: 0.5vw 0;
  font-family: jost, sans-serif;
}

.hero-description {
  font-size: 1.1vw;
  font-family: jost, sans-serif;
  font-weight: 450;
  padding: 0;
  width: 50vw;
  color: #f0f0f0;
  margin: 1vw 0;
    position: relative;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2vw;
  margin: 1.5vw 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2vw;
  font-weight: 700;
  color: #a2c144;
  font-family: jost, sans-serif;
}

.stat-label {
    display: block;
  font-size: 0.9vw;
  color: #f0f0f0;
  font-family: jost, sans-serif;
  margin-top: 0.2vw;
}

.hero-buttons {
  display: flex;
  gap: 1vw;
  margin-top: 2vw;
}

.btn-dpis-1.primary {
  background-color: #a2c144;
    color: #144835;
  padding: 0.8vw 2.5vw;
    text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  font-family: jost, sans-serif;
  transition: all 0.3s ease;
}

.btn-dpis-1.primary:hover {
  background-color: #144835;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn-dpis-1.secondary {
  background-color: transparent;
  color: #a2c144;
  padding: 0.8vw 2.5vw;
  text-decoration: none;
    font-weight: 600;
  border: 2px solid #a2c144;
  border-radius: 5px;
  font-family: jost, sans-serif;
  transition: all 0.3s ease;
}

.btn-dpis-1.secondary:hover {
  background-color: #a2c144;
    color: #144835;
  transform: translateY(-2px);
}

/* Enhanced Section 2 Styles */
.section-header {
  text-align: center;
  margin-bottom: 3vw;
}

.section-subtitle {
  font-size: 1.3vw;
  color: #a2c144;
  font-weight: 500;
  margin: 0.5vw 0;
  font-family: jost, sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  margin: 2vw 0;
}

.feature-item {
  text-align: center;
  padding: 1.5vw;
  background-color: #f9f9f9;
    border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5vw;
  color: #a2c144;
  margin-bottom: 1vw;
}

.feature-item h3 {
  font-size: 1.3vw;
    color: #144835;
  font-weight: 600;
  margin: 0.5vw 0;
  font-family: jost, sans-serif;
}

.feature-item p {
  font-size: 1vw;
  color: #666;
  line-height: 1.5;
  font-family: jost, sans-serif;
}

.content-text {
  margin-top: 2vw;
  padding: 2vw;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-text p {
  font-size: 1.1vw;
  color: #333;
  font-family: jost, sans-serif;
  text-align: justify;
  line-height: 1.6;
  margin: 1vw 0;
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-subtitle {
    font-size: 2.2vw;
    text-align: center;
  }
  
  .hero-description {
    font-size: 1.8vw;
    width: 90%;
    text-align: justify;
    margin: 1.5vw auto;
  }
  
  .hero-stats {
    flex-direction: row;
    gap: 3vw;
    margin: 2vw 0;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 3.5vw;
  }
  
  .stat-label {
    font-size: 1.5vw;
  }
  
  .hero-buttons {
    flex-direction: row;
    gap: 2vw;
    margin-top: 3vw;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-dpis-1.primary,
  .btn-dpis-1.secondary {
    padding: 1.2vw 2.5vw;
    font-size: 1.4vw;
    text-align: center;
    flex: 0 1 auto;
    min-width: 180px;
  }
  
  .section-subtitle {
    font-size: 2.2vw;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5vw;
  }
  
  .feature-item {
    padding: 2.5vw;
  }
  
  .feature-icon {
    font-size: 4vw;
  }
  
  .feature-item h3 {
    font-size: 1.8vw;
  }
  
  .feature-item p {
    font-size: 1.3vw;
  }
  
  .content-text {
    padding: 2.5vw;
    margin-top: 2.5vw;
  }
  
  .content-text p {
    font-size: 1.4vw;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: clamp(3.5vw, 4.5vw, 5vw);
    text-align: center;
    margin-bottom: 2vw;
  }
  
  .hero-description {
    font-size: clamp(3.2vw, 3.8vw, 4.2vw);
    width: 100%;
    text-align: justify;
    line-height: 1.6;
    margin: 2vw 0;
  }
  
  .hero-stats {
    flex-direction: row;
    gap: 4vw;
    margin: 4vw 0;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .stat-number {
    font-size: clamp(5.5vw, 6.5vw, 7vw);
    line-height: 1.2;
  }
  
  .stat-label {
    font-size: clamp(2.8vw, 3.2vw, 3.5vw);
    margin-top: 0.5vw;
  }
  
  .hero-buttons {
    flex-direction: row;
    gap: 3vw;
    margin-top: 5vw;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .btn-dpis-1.primary,
  .btn-dpis-1.secondary {
    padding: 2.5vw 4vw;
    font-size: clamp(3.2vw, 3.6vw, 4vw);
    text-align: center;
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    border-radius: 12px;
  }
  
  .section-subtitle {
    font-size: clamp(3.8vw, 4.5vw, 5vw);
    margin-bottom: 3vw;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin: 5vw 0;
  }
  
  .feature-item {
    padding: 4vw;
    border-radius: 12px;
  }
  
  .feature-icon {
    font-size: clamp(7vw, 8.5vw, 10vw);
    margin-bottom: 2.5vw;
  }
  
  .feature-item h3 {
    font-size: clamp(3.5vw, 4.2vw, 5vw);
    margin-bottom: 1.5vw;
    line-height: 1.3;
  }
  
  .feature-item p {
    font-size: clamp(3vw, 3.5vw, 4vw);
    line-height: 1.5;
  }
  
  .content-text {
    padding: 4vw;
    margin-top: 5vw;
    border-radius: 12px;
  }
  
  .content-text p {
    font-size: clamp(3.2vw, 3.6vw, 4vw);
    line-height: 1.6;
    margin: 2vw 0;
  }
}

/* Small Mobile Responsive Styles */
@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 4.5vw;
    margin-bottom: 1.5vw;
  }
  
  .hero-description {
    font-size: 3.8vw;
    margin: 1.5vw 0;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 3vw;
    margin: 3vw 0;
  }
  
  .stat-number {
    font-size: 6.5vw;
  }
  
  .stat-label {
    font-size: 3.5vw;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 2.5vw;
    margin-top: 4vw;
    width: 100%;
  }
  
  .btn-dpis-1.primary,
  .btn-dpis-1.secondary {
    padding: 2.5vw 3.5vw;
    font-size: 3.8vw;
    width: 100%;
    max-width: none;
    min-width: auto;
  }
  
  .section-subtitle {
    font-size: 4.8vw;
  }
  
  .features-grid {
    gap: 3.5vw;
    margin: 4vw 0;
  }
  
  .feature-item {
    padding: 3.5vw;
  }
  
  .feature-icon {
    font-size: 8vw;
    margin-bottom: 2vw;
  }
  
  .feature-item h3 {
    font-size: 4.2vw;
    margin-bottom: 1.2vw;
  }
  
  .feature-item p {
    font-size: 3.5vw;
  }
  
  .content-text {
    padding: 3.5vw;
    margin-top: 4vw;
  }
  
  .content-text p {
    font-size: 3.8vw;
    margin: 1.5vw 0;
  }
}
.bg-dpis-1{
    position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f5f5dc;
}

.hero-background {
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    z-index: 1;
}

.hero-gradient {
  position: absolute;
    top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5dc;
  opacity: 0.95;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
    width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(162, 193, 68, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(162, 193, 68, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(162, 193, 68, 0.05) 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-10px) translateY(-5px); }
  50% { transform: translateX(5px) translateY(-10px); }
  75% { transform: translateX(-5px) translateY(5px); }
}

.container-dpis-1{
    position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7vw 5vw 2vw 5vw;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo-section {
  text-align: center;
  margin-bottom: 2vw;
}

.hero-logo-section img {
  height: auto;
  width: 18vw;
  max-width: 300px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2vw;
}

.container-dpis-1 h1{
  font-size: 2.8vw;
  color: #144835;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 2vw 0;
  font-family: jost, sans-serif;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 1.5vw;
  justify-content: center;
  margin-top: 0;
}

.btn-dpis-1.primary {
  background: linear-gradient(135deg, #a2c144 0%, #8fb03a 100%);
  color: #144835;
  padding: 0.8vw 2.5vw;
    text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  font-family: jost, sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(162, 193, 68, 0.3);
  border: none;
  font-size: 1vw;
}

.btn-dpis-1.primary:hover {
  background: linear-gradient(135deg, #144835 0%, #1a4a00 100%);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-dpis-1.primary {
  position: relative;
  overflow: hidden;
}

.btn-dpis-1.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-dpis-1.primary:hover::before {
  left: 100%;
}

.btn-dpis-1.secondary {
  background: transparent;
  color: #144835;
  padding: 0.8vw 2.5vw;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #a2c144;
  border-radius: 50px;
  font-family: jost, sans-serif;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  font-size: 1vw;
  box-shadow: 0 3px 10px rgba(162, 193, 68, 0.2);
}

.btn-dpis-1.secondary:hover {
  background: rgba(162, 193, 68, 0.1);
  color: #144835;
  border-color: #144835;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(162, 193, 68, 0.3);
}

/* Tablet Responsive Styles for Hero Section */
@media (max-width: 1024px) and (min-width: 769px) {
  .bg-dpis-1 {
    min-height: 55vh;
    padding: 3vw 0;
  }
  
  .container-dpis-1 {
    padding: 5vw 4vw 2vw 4vw;
    text-align: center;
  }
  
  .hero-logo-section {
    margin-bottom: 3vw;
  }
  
  .hero-logo-section img {
    width: 22vw;
    max-width: 250px;
  }
  
  .hero-content {
    margin-bottom: 3vw;
  }
  
  .container-dpis-1 h1 {
    font-size: clamp(2.2vw, 2.8vw, 3.2vw);
    margin-bottom: 3vw;
    line-height: 1.3;
  }
  
  .hero-buttons {
    flex-direction: row;
    gap: 2vw;
    margin-top: 2vw;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .btn-dpis-1.primary,
  .btn-dpis-1.secondary {
    padding: 1vw 2.5vw;
    font-size: 1.2vw;
    text-align: center;
    flex: 0 1 auto;
    min-width: 160px;
    max-width: 220px;
    border-radius: 12px;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .bg-dpis-1 {
    min-height: 55vh;
    padding: 4vw 0;
  }
  
  .container-dpis-1 {
    padding: 4vw 5vw 2vw 5vw;
    text-align: center;
  }
  
  .hero-logo-section {
    margin-bottom: 4vw;
  }
  
  .hero-logo-section img {
    width: clamp(30vw, 35vw, 40vw);
    max-width: 180px;
  }
  
  .hero-content {
    margin-bottom: 4vw;
  }
  
  .container-dpis-1 h1 {
    font-size: clamp(4.5vw, 5.5vw, 6.5vw);
    margin-bottom: 4vw;
    line-height: 1.3;
  }
  
  .hero-buttons {
    flex-direction: row;
    gap: 2.5vw;
    margin-top: 3vw;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .btn-dpis-1.primary,
  .btn-dpis-1.secondary {
    padding: 2.5vw 4vw;
    font-size: clamp(3vw, 3.5vw, 4vw);
    text-align: center;
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    border-radius: 12px;
  }
}

/* Extra Small Mobile Screens */
@media (max-width: 480px) {
  .bg-dpis-1 {
    min-height: 50vh;
    padding: 3vw 0;
  }
  
  .container-dpis-1 {
    padding: 3vw 4vw 2vw 4vw;
  }
  
  .hero-logo-section {
    margin-bottom: 3vw;
  }
  
  .hero-logo-section img {
    width: 40vw;
    max-width: 160px;
  }
  
  .container-dpis-1 h1 {
    font-size: clamp(5.5vw, 6vw, 7vw);
    margin-bottom: 3vw;
    line-height: 1.2;
  }
  
  .hero-buttons {
    gap: 2vw;
    flex-direction: column;
    width: 100%;
  }
  
  .btn-dpis-1.primary,
  .btn-dpis-1.secondary {
    padding: 2.5vw 3vw;
    font-size: 3.5vw;
    width: 100%;
    max-width: none;
    min-width: auto;
    border-radius: 10px;
  }
}
/*bg-f-1 ends*/
.bg-dpis-2{
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 6vw 5vw;
    position: relative;
  overflow: hidden;
  margin-top: -1vw;
}

.bg-dpis-2::before {
  content: '';
    position: absolute;
    top: 0;
  left: 0;
    right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(162, 193, 68, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(162, 193, 68, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.container-dpis-2{
    position: relative;
  z-index: 2;
    text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4vw;
}

.section-header h2 {
  font-size: 3vw;
    color: #144835;
    text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    font-weight: 700;
  margin: 0 0 1vw 0;
    font-family: jost, sans-serif;
}

.section-subtitle {
  font-size: 1.4vw;
  color: #a2c144;
    font-weight: 500;
  margin: 0;
  font-family: jost, sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3vw;
  margin: 4vw 0;
}

.feature-item {
        text-align: center;
  padding: 2.5vw;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(162, 193, 68, 0.1);
    position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
    position: absolute;
    top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(162, 193, 68, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(162, 193, 68, 0.15);
  border-color: rgba(162, 193, 68, 0.3);
}

.feature-icon {
  font-size: 3vw;
  color: #a2c144;
  margin-bottom: 1.5vw;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-item h3 {
  font-size: 1.5vw;
    color: #144835;
  font-weight: 600;
  margin: 0 0 1vw 0;
  font-family: jost, sans-serif;
}

.feature-item p {
    font-size: 1.1vw;
  color: #555;
  line-height: 1.6;
    font-family: jost, sans-serif;
    margin: 0;
}

.content-text {
  margin-top: 4vw;
  padding: 3vw;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #a2c144;
}

.content-text p {
  font-size: 1.2vw;
  color: #333;
  font-family: jost, sans-serif;
  text-align: justify;
  line-height: 1.7;
  margin: 1.5vw 0;
} 
/* Tablet Responsive for bg-dpis-2 */
@media (max-width: 1024px) and (min-width: 769px) {
  .bg-dpis-2 {
    padding: 5vw 4vw;
    margin-top: -1vw;
  }
  
  .container-dpis-2 {
    padding: 0;
  }
  
  .section-header {
    margin-bottom: 4vw;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: clamp(2.5vw, 3vw, 3.5vw);
    margin-bottom: 1.5vw;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 1.8vw;
    margin: 0;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5vw;
    margin: 4vw 0;
  }
  
  .feature-item {
    padding: 2.5vw;
    text-align: center;
    border-radius: 12px;
  }
  
  .feature-icon {
    font-size: 4.5vw;
    margin-bottom: 1.5vw;
  }
  
  .feature-item h3 {
    font-size: 1.8vw;
    margin-bottom: 1vw;
    line-height: 1.3;
  }
  
  .feature-item p {
    font-size: 1.3vw;
    line-height: 1.5;
    margin: 0;
  }
  
  .content-text {
    padding: 2.5vw;
    margin-top: 4vw;
    border-radius: 12px;
  }
  
  .content-text p {
    font-size: 1.4vw;
    margin: 1.5vw 0;
    line-height: 1.6;
    text-align: justify;
  }
}

/* Mobile Responsive for bg-dpis-2 */
@media (max-width: 768px) {
  .bg-dpis-2 {
    padding: 7vw 5vw;
    margin-top: -1vw;
  }
  
  .container-dpis-2 {
    padding: 0;
  }
  
  .section-header {
    margin-bottom: 5vw;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: clamp(5vw, 6vw, 7vw);
    margin-bottom: 2vw;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: clamp(3.2vw, 3.8vw, 4.5vw);
    margin: 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin: 5vw 0;
  }
  
  .feature-item {
    padding: 4vw;
    text-align: center;
    border-radius: 12px;
  }
  
  .feature-icon {
    font-size: clamp(6.5vw, 7.5vw, 8.5vw);
    margin-bottom: 2.5vw;
  }
  
  .feature-item h3 {
    font-size: clamp(3.5vw, 4.2vw, 5vw);
    margin-bottom: 1.5vw;
    line-height: 1.3;
  }
  
  .feature-item p {
    font-size: clamp(3vw, 3.5vw, 4vw);
    line-height: 1.5;
    margin: 0;
  }
  
  .content-text {
    padding: 4vw;
    margin-top: 5vw;
    border-radius: 12px;
  }
  
  .content-text p {
    font-size: clamp(3.2vw, 3.6vw, 4vw);
    margin: 2.5vw 0;
    line-height: 1.6;
    text-align: left;
  }
}

/* Extra Small Mobile Screens for bg-dpis-2 */
@media (max-width: 480px) {
  .bg-dpis-2 {
    padding: 5vw 4vw;
  }
  
  .section-header {
    margin-bottom: 4vw;
  }
  
  .section-header h2 {
    font-size: clamp(5.5vw, 6.5vw, 7.5vw);
    margin-bottom: 1.5vw;
    line-height: 1.1;
  }
  
  .section-subtitle {
    font-size: 4vw;
  }
  
  .features-grid {
    gap: 3.5vw;
    margin: 4vw 0;
  }
  
  .feature-item {
    padding: 3.5vw;
  }
  
  .feature-icon {
    font-size: 7vw;
    margin-bottom: 2vw;
  }
  
  .feature-item h3 {
    font-size: 4.2vw;
    margin-bottom: 1.2vw;
    line-height: 1.2;
  }
  
  .feature-item p {
    font-size: 3.8vw;
    line-height: 1.4;
  }
  
  .content-text {
    padding: 3.5vw;
    margin-top: 4vw;
  }
  
  .content-text p {
    font-size: 4vw;
    margin: 2vw 0;
    line-height: 1.5;
  }
}
/*bg-dpis-2 ends*/

.container-brand-support{
  background-color: #ffff;
  width: auto;
  margin: 0;
  padding: 4vw 5vw;
  padding-top: 2vw;
  margin-top: -1vw;
}
.container-brand-support h1 {
  text-align: center;
  font-size: 3vw;
  font-family: jost, sans-serif;
  font-weight: bold;
  color: #000;
  margin-bottom: 2vw;
}
.container-brand-support .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3vw;
  margin: 0;
}
@media (min-width: 768px) {
  .container-brand-support .grid {
      grid-template-columns: repeat(3, 1fr);
      position: relative;
      margin: 0;
  }
  .container-brand-support .grid::before,
  .container-brand-support .grid::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 1px;
      background-color: #a2c144;
  }
  .container-brand-support .grid::before {
      left: 33.33%;
  }
  .container-brand-support .grid::after {
      left: 66.66%;
  }
}
.item-brand-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: 20vw;
}
.item-brand-support i {
  font-size: 2vw;
  position: relative;
  left: 0;
  color: #000;
  margin-bottom: 0.5vw;
}
.item-brand-support p {
  color: #000;
  font-family: jost, sans-serif;
  font-size: 1.2vw;
}
/* Tablet Responsive for Brand Support */
@media (max-width: 1024px) and (min-width: 769px) {
  .container-brand-support {
    background-color: #ffff;
    width: auto;
    margin: 0;
    padding: 5vw 4vw;
    padding-top: 2.5vw;
    margin-top: -1vw;
  }
  
  .container-brand-support h1 {
    text-align: center;
    font-size: clamp(2.2vw, 2.8vw, 3.2vw);
    font-family: jost, sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 3vw;
    line-height: 1.2;
  }
  
  .container-brand-support .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5vw;
    margin: 0;
    text-align: center;
    place-items: center;
  }
  
  .item-brand-support {
    width: 100%;
    padding: 2vw;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
  }
  
  .item-brand-support:hover {
    background-color: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .item-brand-support i {
    font-size: 3vw;
    margin-bottom: 1vw;
    color: #144835;
  }
  
  .item-brand-support p {
    color: #000;
    font-family: jost, sans-serif;
    font-size: 1.3vw;
    line-height: 1.4;
    margin: 0;
  }
}

/* Mobile Responsive for Brand Support */
@media (max-width: 768px) {
  .container-brand-support {
    background-color: #ffff;
    width: 100%;
    margin: 0;
    padding: 6vw 4vw;
    padding-top: 3vw;
  }
  
  .container-brand-support h1 {
    text-align: center;
    font-size: clamp(5vw, 6vw, 7vw);
    font-family: jost, sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 5vw;
    line-height: 1.2;
  }
  
  .container-brand-support .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5vw;
    margin: 0;
    text-align: center;
    place-items: center;
  }
  
  .item-brand-support {
    width: 100%;
    padding: 2.5vw;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
  }
  
  .item-brand-support:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  .item-brand-support i {
    font-size: clamp(4.5vw, 5.5vw, 6.5vw);
    margin-bottom: 1.2vw;
    color: #144835;
  }
  
  .item-brand-support p {
    color: #000;
    font-family: jost, sans-serif;
    font-size: clamp(2.5vw, 3vw, 3.5vw);
    line-height: 1.3;
    margin: 0;
  }
}

/* Extra Small Mobile Screens for Brand Support */
@media (max-width: 480px) {
  .container-brand-support {
    padding: 5vw 3vw;
    padding-top: 2vw;
  }
  
  .container-brand-support h1 {
    font-size: clamp(5.5vw, 6.5vw, 7.5vw);
    margin-bottom: 4vw;
    line-height: 1.1;
  }
  
  .container-brand-support .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
  }
  
  .item-brand-support {
    padding: 2vw;
    border-radius: 6px;
  }
  
  .item-brand-support i {
    font-size: clamp(4vw, 4.8vw, 5.5vw);
    margin-bottom: 1vw;
  }
  
  .item-brand-support p {
    font-size: clamp(2.2vw, 2.6vw, 3vw);
    line-height: 1.2;
  }
}
/*brand support ends*/


.all-u-need{
  background: #144835;
  padding: 4vw 8vw;
  position: relative;
  overflow: hidden;
  margin-top: -0.3vw;
}

.all-u-need::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(162, 193, 68, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(162, 193, 68, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.all-u-need h2{
  font-size: 2.5vw;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 2.5vw 0;
  text-align: center;
  font-family: jost, sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.table-all-u-need {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  font-family: 'Jost', sans-serif;
  background-color: #fafbfc;
  border: none;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 15px 50px rgba(20, 72, 53, 0.15),
    0 5px 20px rgba(20, 72, 53, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.table-all-u-need::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #a2c144 0%, #8fb03a 30%, #a2c144 60%, #8fb03a 100%);
  z-index: 1;
}

.table-all-u-need tr {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(162, 193, 68, 0.15);
}

.table-all-u-need tr:last-child {
  border-bottom: none;
}

.table-all-u-need tr:hover {
  background-color: rgba(162, 193, 68, 0.03);
  transform: translateX(3px);
}

.table-all-u-need th, .table-all-u-need td {
  padding: 2vw 2.5vw;
  text-align: left;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  vertical-align: middle;
}

.table-all-u-need th {
  background:  #c3db90;
  color: #144835;
  font-size: 1vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Jost', sans-serif;
  position: relative;
  z-index: 2;
}

.table-all-u-need th::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(20, 72, 53, 0.2) 50%, transparent 100%);
}

.table-all-u-need td {
  font-size: 0.95vw;
  color: #2c3e50;
  font-family: 'Jost', sans-serif;
  line-height: 1.6;
  font-weight: 400;
  background-color: #fafbfc;
}

.table-all-u-need td p {
  margin: 0;
}

.table-all-u-need th p {
  margin: 0;
}

.table-all-u-need td:first-child {
  width: 38%;
  font-weight: 700;
  color: #144835;
  font-size: 0.9vw;
  background: linear-gradient(135deg, rgba(162, 193, 68, 0.15) 0%, rgba(162, 193, 68, 0.08) 100%);
  border-right: 3px solid rgba(162, 193, 68, 0.3);
  position: relative;
  padding-right: 2vw;
  border-radius: 0;
}

.table-all-u-need td:first-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #a2c144 0%, #8fb03a 100%);
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 0;
}

.table-all-u-need tr:hover td:first-child::before {
  width: 5px;
  opacity: 1;
}

.table-all-u-need td:first-child p {
  color: #144835;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8vw;
}

.table-all-u-need td:first-child p::before {
  content: '▸';
  color: #a2c144;
  font-size: 1.1vw;
  font-weight: bold;
  flex-shrink: 0;
  line-height: 1;
}

.table-all-u-need td:last-child {
  width: 62%;
  padding-left: 2.5vw;
  color: #2c3e50;
}

.table-all-u-need td:last-child p {
  color: #2c3e50;
}

.table-all-u-need tr:nth-child(even) td {
  background-color: #f5f7f8;
}

.table-all-u-need tr:nth-child(even) td:first-child {
  background: linear-gradient(135deg, rgba(162, 193, 68, 0.12) 0%, rgba(162, 193, 68, 0.06) 100%);
}

.table-all-u-need tr:hover td:first-child {
  background: linear-gradient(135deg, rgba(162, 193, 68, 0.2) 0%, rgba(162, 193, 68, 0.12) 100%);
}

.table-all-u-need tr:hover td:last-child {
  background-color: #f0f2f4;
}

/* Tablet Responsive for Requirements Table */
@media (max-width: 1024px) and (min-width: 769px) {
  .all-u-need {
    padding: 5vw 6vw;
    margin-top: -0.3vw;
  }
  
  .all-u-need h2 {
    font-size: clamp(2vw, 2.5vw, 3vw);
    margin-bottom: 3vw;
    line-height: 1.2;
  }
  
  .table-all-u-need {
    max-width: 100%;
    border-radius: 18px;
    border-collapse: collapse;
  }
  
  .table-all-u-need th, .table-all-u-need td {
    padding: 1.5vw 2vw;
    vertical-align: middle;
  }
  
  .table-all-u-need th {
    font-size: 1.2vw;
    text-align: center;
    font-family: 'Jost', sans-serif;
    padding: 1.5vw 2vw;
    display: table-cell;
  }
  
  .table-all-u-need td {
    font-size: 1.1vw;
    text-align: left;
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
    display: table-cell;
  }
  
  .table-all-u-need td:first-child {
    font-size: 1vw;
    font-weight: 700;
    width: 38%;
    font-family: 'Jost', sans-serif;
    padding-right: 1.5vw;
    border-right: 2px solid rgba(162, 193, 68, 0.25);
  }
  
  .table-all-u-need td:first-child::before {
    width: 4px;
  }
  
  .table-all-u-need td:first-child p::before {
    font-size: 1.2vw;
  }
  
  .table-all-u-need td:last-child {
    width: 62%;
    padding-left: 2vw;
  }
}

/* Mobile Responsive for Requirements Table */
@media (max-width: 768px) {
  .all-u-need {
    padding: 7vw 4vw;
    margin-top: -0.3vw;
  }
  
  .all-u-need h2 {
    font-size: clamp(4.5vw, 5.5vw, 6.5vw);
    margin-bottom: 5vw;
    line-height: 1.2;
  }
  
  .table-all-u-need {
    max-width: 100%;
    border-radius: 15px;
    border-collapse: collapse;
  }
  
  .table-all-u-need th, .table-all-u-need td {
    padding: 3.5vw 3vw;
    vertical-align: top;
  }
  
  .table-all-u-need th {
    font-size: clamp(3.2vw, 3.8vw, 4.5vw);
    text-align: center;
    font-family: 'Jost', sans-serif;
    padding: 2.5vw 3vw;
    display: table-cell;
  }
  
  .table-all-u-need td {
    font-size: clamp(3vw, 3.5vw, 4vw);
    text-align: left;
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
    display: table-cell;
  }
  
  .table-all-u-need td:first-child {
    font-size: clamp(3vw, 3.5vw, 4vw);
    font-weight: 700;
    width: 40%;
    font-family: 'Jost', sans-serif;
    padding-right: 2vw;
    border-right: 2px solid rgba(162, 193, 68, 0.25);
  }
  
  .table-all-u-need td:first-child::before {
    width: 3px;
  }
  
  .table-all-u-need td:first-child p::before {
    font-size: clamp(3.5vw, 4vw, 4.5vw);
  }
  
  .table-all-u-need td:last-child {
    width: 60%;
    padding-left: 2.5vw;
  }
  
  .table-all-u-need tr:hover {
    transform: none;
  }
}

/* Extra Small Mobile Screens for Requirements Table */
@media (max-width: 480px) {
  .all-u-need {
    padding: 6vw 3vw;
  }
  
  .all-u-need h2 {
    font-size: clamp(5.5vw, 6.5vw, 7.5vw);
    margin-bottom: 4vw;
    line-height: 1.1;
  }
  
  .table-all-u-need {
    border-radius: 12px;
  }
  
  .table-all-u-need th, .table-all-u-need td {
    padding: 3vw 2.5vw;
  }
  
  .table-all-u-need th {
    font-size: clamp(3.5vw, 4vw, 4.5vw);
    padding: 2vw 2.5vw;
  }
  
  .table-all-u-need td {
    font-size: clamp(3.2vw, 3.8vw, 4.5vw);
    line-height: 1.4;
  }
  
  .table-all-u-need td:first-child {
    font-size: clamp(3vw, 3.5vw, 4vw);
    width: 42%;
    padding-right: 1.5vw;
  }
  
  .table-all-u-need td:last-child {
    width: 58%;
    padding-left: 2vw;
  }
  
  .table-all-u-need td:first-child p::before {
    font-size: clamp(3.8vw, 4.2vw, 4.8vw);
  }
}
/*all u need ends*/
.gallery{
  background-color: #144835;
  padding: 1vw 5vw;
  padding-bottom: 0;
  margin-top: -1vw;
}
.gallery h2{
  font-size: 3vw;
  color: #faf1e2;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  font-family: jost , sans-serif;
  margin-top: 2vw;
}
.section{
  position: relative;
  width: 100%;
  display: block;
}
.full-height{
  min-height: auto;
}
.over-hide{
  overflow: hidden;
}
.padding-tb{
  padding: 50px 0;
}
[type="radio"]:checked,
[type="radio"]:not(:checked){
  position: absolute;
  left: -9999px;
}
.checkbox:checked + label,
.checkbox:not(:checked) + label{
  position: relative;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  margin-right: 6px;
  margin-left: 6px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid #a2c144;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  animation: border-transform 6s linear infinite alternate forwards;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    animation-play-state: paused;
  overflow: hidden;
}
.checkbox:checked + label img,
.checkbox:not(:checked) + label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkbox:checked + label{
  box-shadow: 0 8px 25px 0 rgba(16,39,112,.3);
  transform: scale(1.3);
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    animation-play-state: running;
}
@keyframes border-transform{
  0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

.slider-height-padding {
  padding-top: 35vw;
}

.gallery ul {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}
.gallery ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  z-index: 100;
  padding: 0;
  margin: 0;
  list-style: none;
  height: 60vh;
  border: 5px solid #a2c144;
  border-radius: 50%;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 2.7;
  color: #343434;
  writing-mode: vertical-rl;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 25px 0 rgba(16,39,112,.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.gallery ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery ul li span {
  mix-blend-mode: difference;
}


.checkbox.frst:checked ~ ul li:nth-child(1) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}
.checkbox.scnd:checked ~ ul li:nth-child(2) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}
.checkbox.thrd:checked ~ ul li:nth-child(3) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}
.checkbox.foth:checked ~ ul li:nth-child(4) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}

/* Tablet Responsive for Gallery */
@media (max-width: 1024px) and (min-width: 769px) {
  .gallery {
    padding: 1.5vw 4vw;
    padding-bottom: 0;
    margin-top: -1vw;
  }
  
  .gallery h2 {
    font-size: clamp(2.2vw, 2.8vw, 3.2vw);
    margin-top: 2.5vw;
  }
  
  .desktop-gallery {
    display: block;
  }
  
  .mobile-gallery {
    display: none;
  }
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
  .gallery {
    padding: 2vw 4vw;
    padding-bottom: 0;
    margin-top: -1vw;
  }
  
  .gallery h2 {
    font-size: clamp(4.5vw, 5.5vw, 6.5vw);
    margin-top: 3vw;
  }
  
  .desktop-gallery { 
    display: none; /* Hide desktop version on mobile */
  }
  
  /* Mobile Gallery Styles */
  .mobile-gallery {
    display: block;
    margin-top: 4vw;
    padding: 0 4vw;
  }
  
  .gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }
  
  .gallery-viewport {
    width: 100%;
    height: clamp(220px, 35vw, 280px);
    overflow: hidden;
    position: relative;
  }
  
  .gallery-slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .gallery-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
  }
  
  .gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3vw;
    padding: 0 4vw 2vw 4vw;
  }
  
  .indicator {
    width: clamp(8px, 1.2vw, 12px);
    height: clamp(8px, 1.2vw, 12px);
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .indicator.active {
    background-color: #144835;
    transform: scale(1.3);
    width: clamp(12px, 1.8vw, 16px);
    height: clamp(12px, 1.8vw, 16px);
  }
  
  .indicator:hover {
    background-color: #144835;
    transform: scale(1.2);
  }
}

@media (max-width: 480px) {
  .gallery {
    padding: 2vw 3vw;
  }
  
  .gallery h2 {
    font-size: clamp(5.5vw, 6.5vw, 7.5vw);
    margin-top: 3vw;
  }
  
  .mobile-gallery {
    margin-top: 3vw;
    padding: 0 3vw;
  }
  
  .gallery-wrapper {
    max-width: 100%;
    border-radius: 15px;
  }
  
  .gallery-viewport {
    height: clamp(200px, 40vw, 250px);
  }
  
  .gallery-indicators {
    gap: 8px;
    margin-top: 2.5vw;
    padding: 0 3vw 2vw 3vw;
  }
}

@media (min-width: 769px) {
  .mobile-gallery {
    display: none; /* Hide mobile version on desktop */
  }
}

/* Modern Contact Form Section - Enhanced */
.bg-f-5 {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8ddd4 100%);
    padding: 100px 0;
  position: relative;
    overflow: hidden;
    margin-top: -0.3vw;
}

.bg-f-5::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23a2c144" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23144835" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23a2c144" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23144835" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23a2c144" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.container-f-5 {
    max-width: 900px;
  margin: 0 auto;  
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.modern-form{
  left: 0;
}

.contact-header {
  text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: #144835;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
  font-weight: 800;
    letter-spacing: -0.02em;
  position: relative;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #a2c144, #144835);
    border-radius: 2px;
}

.contact-header p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #64748b;
    font-family: 'Jost', sans-serif;
    max-width: 700px;
  margin: 0 auto;  
    line-height: 1.6;
    font-weight: 400;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
    border: 1px solid rgba(162, 193, 68, 0.1);
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #a2c144, #144835, #a2c144);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a2c144, #144835);
    border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 
        0 15px 35px rgba(162, 193, 68, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
    overflow: hidden;
}

.form-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.form-icon i {
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 1;
}

.form-header h3 {
    font-size: 2.2rem;
    color: #144835;
    margin: 0 0 15px 0;
    font-family: 'Jost', sans-serif;
  font-weight: 700;
    letter-spacing: -0.01em;
}

.form-header p {
    font-size: 1.2rem;
    color: #64748b;
  margin: 0;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.form-group label {
    font-size: 1rem;
    color: #374151;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #a2c144;
    border-radius: 50%;
    flex-shrink: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a2c144;
    background: white;
    box-shadow: 
        0 0 0 4px rgba(162, 193, 68, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d1d5db;
    background: white;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 18px;
    padding-right: 50px;
}

.form-group textarea {
  resize: vertical;
    min-height: 120px;
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
}

.char-count {
    font-size: 0.85rem;
    color: #9ca3af;
    text-align: right;
    margin-top: 5px;
    font-weight: 500;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #a2c144, #144835);
  color: white;
  border: none;
    padding: 22px 50px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
  cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Jost', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 12px 30px rgba(162, 193, 68, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    align-self: center;
    margin-top: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
  width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(162, 193, 68, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.form-note {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 20px 0 0 0;
    font-family: 'Jost', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    line-height: 1.5;
}

.form-note i {
    color: #a2c144;
    font-size: 16px;
}

.success-message {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid #86efac;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
        display: flex;
  align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: tickAnimation 0.6s ease-in-out, pulse 2s ease-in-out 0.6s infinite;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.success-icon i {
    font-size: 32px;
    color: white;
}

@keyframes tickAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.success-message h3 {
    font-size: 1.8rem;
    color: #065f46;
    margin: 0 0 15px 0;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}

.success-message p {
    font-size: 1.1rem;
    color: #047857;
    margin: 0 0 25px 0;
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
}

.success-details {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.success-details p {
    font-weight: 700;
    margin-bottom: 15px;
    color: #065f46;
    font-size: 1rem;
}

.success-details ul {
  margin: 0;
    padding-left: 25px;
}

.success-details li {
    margin-bottom: 8px;
    font-family: 'Jost', sans-serif;
    color: #047857;
    line-height: 1.5;
}

/* Mobile Responsive for Enhanced Form */
@media (max-width: 768px) {
    .bg-f-5 {
        padding: 60px 0;
    }
    
    .container-f-5 {
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-header h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    
    .contact-header p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        line-height: 1.5;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .modern-form{
      left: 0;
    }
    .form-header h3 {
        font-size: clamp(1.4rem, 4vw, 1.6rem);
        margin-bottom: 8px;
    }
    
    .form-icon {
        width: 45px;
        height: 45px;
    }
    
    .form-icon i {
        font-size: 18px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group label {
        font-size: clamp(0.9rem, 2.8vw, 1rem);
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: clamp(14px, 3vw, 16px);
        border-radius: 8px;
    }
    
    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }
    
    .char-count {
        font-size: clamp(0.75rem, 2.2vw, 0.8rem);
        margin-top: 4px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: clamp(0.9rem, 3vw, 1rem);
  width: 100%;
        border-radius: 8px;
        min-width: auto;
    }
    
    .form-note {
        font-size: clamp(0.75rem, 2.2vw, 0.85rem);
        margin-top: 15px;
        line-height: 1.4;
    }
    
    .success-message {
        padding: 20px;
        margin-top: 20px;
        border-radius: 12px;
    }
    
    .success-icon {
        font-size: clamp(1.8rem, 5vw, 2rem);
        margin-bottom: 10px;
    }
    
    .success-details {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        line-height: 1.4;
    }
}

/* Extra Small Mobile Screens for Contact Form */
@media (max-width: 480px) {
    .bg-f-5 {
        padding: 40px 0;
    }
    
    .container-f-5 {
        padding: 0 10px;
    }
    
    .contact-header {
        margin-bottom: 25px;
    }
    
    .contact-header h2 {
        font-size: clamp(1.6rem, 6vw, 1.8rem);
        margin-bottom: 12px;
    }
    
    .contact-header p {
        font-size: clamp(0.8rem, 3.2vw, 0.9rem);
        line-height: 1.4;
    }
    
    .contact-form-container {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .form-header h3 {
        font-size: clamp(1.2rem, 4.5vw, 1.4rem);
        margin-bottom: 6px;
    }
    
    .form-icon {
        width: 40px;
        height: 40px;
    }
    
    .form-icon i {
        font-size: 16px;
    }
    
    .form-group label {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: clamp(13px, 3.2vw, 15px);
        border-radius: 6px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
    
    .char-count {
        font-size: clamp(0.7rem, 2.5vw, 0.75rem);
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: clamp(0.8rem, 3.2vw, 0.9rem);
        border-radius: 6px;
    }
    
    .form-note {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem);
        margin-top: 12px;
    }
    
    .success-message {
        padding: 15px;
        margin-top: 15px;
        border-radius: 10px;
    }
    
    .success-icon {
        font-size: clamp(1.5rem, 5.5vw, 1.8rem);
        margin-bottom: 8px;
    }
    
    .success-details {
        font-size: clamp(0.75rem, 2.8vw, 0.85rem);
    }
}

/* Tablet Responsive for Contact Form */
@media (max-width: 1024px) and (min-width: 769px) {
    .bg-f-5 {
        padding: 70px 0;
    }
    
    .container-f-5 {
        max-width: 700px;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-header h2 {
        font-size: clamp(2.2rem, 3.5vw, 2.8rem);
        margin-bottom: 12px;
    }
    
    .contact-header p {
        font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    }
    
    .contact-form-container {
        padding: 40px 35px;
        border-radius: 20px;
    }
    .modern-form{
      left: 0;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .form-header p {
        font-size: 0.95rem;
    }
    
    .form-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .form-icon i {
        font-size: 18px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 20px 45px;
        font-size: 1.15rem;
        min-width: 200px;
    }
}

/* Small Mobile Responsive for Contact Form */
@media (max-width: 480px) {
    .bg-f-5 {
        padding: 50px 0;
        background: linear-gradient(135deg, #f5f1e8 0%, #e8ddd4 100%);
    }
    
    .container-f-5 {
  margin: 0 auto; 
    padding: 0 10px;
  }
    
    .contact-header {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .contact-header h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: 20px;
        color: #144835;
        font-weight: 700;
    }
    
    .contact-header p {
        font-size: clamp(0.85rem, 2.8vw, 0.95rem);
        line-height: 1.4;
        color: #666;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .contact-form-container {
        padding: 20px 15px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        background: white;
        border: 1px solid rgba(162, 193, 68, 0.1);
    }
    .modern-form{
      left: 0;
    }
    .form-header {
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f0f0f0;
    }
    
    .form-header h3 {
        font-size: clamp(1.2rem, 3.5vw, 1.4rem);
        margin-bottom: 5px;
        color: #144835;
  font-weight: 600;
    }
    
    .form-header p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        color: #666;
  margin: 0;
    }
    
    .form-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .form-icon i {
        font-size: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-group {
        gap: 8px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .char-count {
        font-size: 0.8rem;
    }
    
    .submit-btn {
        padding: 16px 25px;
        font-size: 1rem;
        min-width: 160px;
        border-radius: 16px;
    }
    
    .form-note {
        font-size: 0.85rem;
        margin: 15px 0 0 0;
        flex-direction: column;
        gap: 5px;
    }
    
    .success-message {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .success-icon i {
        font-size: 24px;
    }
    
    .success-message h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .success-message p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .success-details {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .success-details p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .success-details li {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
}

/* FAQ Section - Enhanced */
.bg-f-9 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    margin-top: -0.3vw;
}

.container-f-9 {
    max-width: 900px;
    margin: 0 auto;   
    padding: 0 20px;
}

.faq-header {
  text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #144835;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}

.faq-header p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #666;
    font-family: 'Jost', sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(162, 193, 68, 0.1);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #144835;
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a2c144, #144835);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 16px;
    color: white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #144835, #a2c144);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
        margin: 0;
    font-size: 1rem;
    color: #555;
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
}

/* Tablet Responsive for FAQ */
@media (max-width: 1024px) and (min-width: 769px) {
    .bg-f-9 {
        padding: 70px 0;
    }
    
    .container-f-9 {
        max-width: 800px;
        padding: 0 30px;
    }
    
    .faq-header {
        margin-bottom: 50px;
    }
    
    .faq-header h2 {
        font-size: clamp(2.2rem, 3.5vw, 2.8rem);
        margin-bottom: 12px;
    }
    
    .faq-header p {
        font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    }
    
    .faq-container {
        gap: 18px;
    }
    
    .faq-item {
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 22px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.15rem;
        padding-right: 18px;
    }
    
    .faq-icon {
        width: 38px;
        height: 38px;
    }
    
    .faq-icon i {
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 25px 22px 25px;
        font-size: 0.98rem;
    }
}

/* Mobile Large Responsive for FAQ */
@media (max-width: 768px) {
    .bg-f-9 {
        padding: 50px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .container-f-9 {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .faq-header {
        margin-bottom: 35px;
        text-align: center;
    }
    
    .faq-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 10px;
        color: #144835;
        font-weight: 700;
    }
    
    .faq-header p {
        font-size: clamp(0.9rem, 2.8vw, 1rem);
        color: #666;
        line-height: 1.4;
        max-width: 90%;
        margin: 0 auto; 
    }
    
    .faq-container {
        gap: 15px;
    }
    
    .faq-item {
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        border: 1px solid rgba(162, 193, 68, 0.1);
    }
    
    .faq-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .faq-question {
        padding: 18px 20px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }
    
    .faq-question:hover {
        background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    }
    
    .faq-question h3 {
        font-size: clamp(1rem, 3vw, 1.1rem);
        color: #144835;
    margin: 0;
        font-weight: 600;
        line-height: 1.3;
        padding-right: 15px;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, #a2c144, #144835);
        border-radius: 50%;
    display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(162, 193, 68, 0.3);
    }
    
    .faq-icon i {
        font-size: 14px;
    color: white;
        transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-icon {
        background: linear-gradient(135deg, #144835, #a2c144);
        box-shadow: 0 3px 12px rgba(20, 72, 53, 0.4);
    }
    
    .faq-item.active .faq-icon i {
        transform: rotate(45deg);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        background: #f8f9fa;
    }
    
    .faq-answer.active {
        max-height: 250px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px 20px;
        margin: 0;
        font-size: clamp(0.9rem, 2.2vw, 0.95rem);
        color: #555;
        line-height: 1.5;
    }
}

/* Mobile Small Responsive for FAQ */
@media (max-width: 480px) {
    .bg-f-9 {
        padding: 40px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .container-f-9 {
        padding: 0 10px;
    }
    
    .faq-header {
        margin-bottom: 30px;
    text-align: center;
  }
    
    .faq-header h2 {
        font-size: clamp(1.6rem, 6vw, 2rem);
        margin-bottom: 8px;
        color: #144835;
        font-weight: 700;
    }
    
    .faq-header p {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        color: #666;
        line-height: 1.3;
        max-width: 95%;
    margin: 0 auto;
    }
    
    .faq-container {
        gap: 12px;
    }
    
    .faq-item {
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        border: 1px solid rgba(162, 193, 68, 0.1);
    }
    
    .faq-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    }
    
    .faq-question {
        padding: 15px 18px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }
    
    .faq-question:hover {
        background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    }
    
    .faq-question h3 {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        color: #144835;
        margin: 0;
        font-weight: 600;
        line-height: 1.2;
        padding-right: 10px;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, #a2c144, #144835);
        border-radius: 50%;
        display: flex;
        align-items: center;
    justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
        box-shadow: 0 2px 6px rgba(162, 193, 68, 0.3);
    }
    
    .faq-icon i {
        font-size: 12px;
        color: white;
        transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-icon {
        background: linear-gradient(135deg, #144835, #a2c144);
        box-shadow: 0 3px 10px rgba(20, 72, 53, 0.4);
    }
    
    .faq-item.active .faq-icon i {
        transform: rotate(45deg);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        background: #f8f9fa;
    }
    
    .faq-answer.active {
        max-height: 300px;
    }
    
    .faq-answer p {
        padding: 0 18px 15px 18px;
        margin: 0;
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
        color: #555;
        line-height: 1.4;
    }
}
.footer{
  margin-top: -0.3vw;
}

/* Additional SEO Content Section */
.additional-seo-section {
  background: #f8f9fa;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.additional-seo-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.additional-seo-article {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.additional-seo-article:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.additional-seo-section h2 {
  font-size: 2.5rem;
  color: #144835;
  font-family: 'Jost', sans-serif;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}

.additional-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.additional-seo-grid-item {
  transition: transform 0.3s ease;
}

.additional-seo-grid-item:hover {
  transform: translateY(-5px);
}

.additional-seo-grid-item h3 {
  font-size: 1.5rem;
  color: #a2c144;
  font-family: 'Jost', sans-serif;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.additional-seo-grid-item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  font-family: 'Jost', sans-serif;
  margin: 0;
}

.additional-seo-success-factors {
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(135deg, #f5f1e8 0%, #e8ddd4 100%);
  border-radius: 12px;
  border-left: 4px solid #a2c144;
  transition: all 0.3s ease;
}

.additional-seo-success-factors:hover {
  box-shadow: 0 4px 15px rgba(162, 193, 68, 0.2);
}

.additional-seo-success-factors h3 {
  font-size: 1.8rem;
  color: #144835;
  font-family: 'Jost', sans-serif;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.additional-seo-success-factors ul {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  font-family: 'Jost', sans-serif;
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

.additional-seo-success-factors ul li {
  margin-bottom: 8px;
}

.additional-seo-success-factors ul li:last-child {
  margin-bottom: 0;
}

/* Tablet Responsive for Additional SEO Section */
@media (max-width: 1024px) and (min-width: 769px) {
  .additional-seo-section {
    padding: 50px 20px;
  }
  
  .additional-seo-container {
    max-width: 900px;
  }
  
  .additional-seo-article {
    padding: 35px;
    border-radius: 12px;
  }
  
  .additional-seo-section h2 {
    font-size: clamp(2rem, 3.5vw, 2.2rem);
    margin-bottom: 18px;
  }
  
  .additional-seo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
  }
  
  .additional-seo-grid-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .additional-seo-grid-item p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .additional-seo-success-factors {
    margin-top: 40px;
    padding: 25px;
  }
  
  .additional-seo-success-factors h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  
  .additional-seo-success-factors ul {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Mobile Large Responsive for Additional SEO Section */
@media (max-width: 768px) {
  .additional-seo-section {
    padding: 40px 15px;
  }
  
  .additional-seo-container {
    max-width: 100%;
  }
  
  .additional-seo-article {
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  }
  
  .additional-seo-section h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
    margin-bottom: 25px;
    line-height: 1.2;
  }
  
  .additional-seo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  
  .additional-seo-grid-item {
    padding: 15px;
    background: #fafafa;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .additional-seo-grid-item:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .additional-seo-grid-item h3 {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  
  .additional-seo-grid-item p {
    font-size: clamp(0.95rem, 2.8vw, 1.05rem);
    line-height: 1.5;
  }
  
  .additional-seo-success-factors {
    margin-top: 35px;
    padding: 20px;
    border-radius: 10px;
  }
  
  .additional-seo-success-factors h3 {
    font-size: clamp(1.3rem, 4.5vw, 1.6rem);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  
  .additional-seo-success-factors ul {
    font-size: clamp(0.95rem, 2.8vw, 1.05rem);
    line-height: 1.6;
    padding-left: 15px;
  }
  
  .additional-seo-success-factors ul li {
    margin-bottom: 6px;
  }
}

/* Mobile Small Responsive for Additional SEO Section */
@media (max-width: 480px) {
  .additional-seo-section {
    padding: 30px 10px;
  }
  
  .additional-seo-article {
    padding: 20px 15px;
    border-radius: 10px;
  }
  
  .additional-seo-section h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    margin-bottom: 20px;
    line-height: 1.1;
  }
  
  .additional-seo-grid {
    gap: 20px;
    margin-top: 25px;
  }
  
  .additional-seo-grid-item {
    padding: 15px;
    border-radius: 8px;
  }
  
  .additional-seo-grid-item h3 {
    font-size: clamp(1.1rem, 4.5vw, 1.3rem);
    margin-bottom: 10px;
  }
  
  .additional-seo-grid-item p {
    font-size: clamp(0.9rem, 3.2vw, 1rem);
    line-height: 1.4;
  }
  
  .additional-seo-success-factors {
    margin-top: 30px;
    padding: 18px;
    border-radius: 8px;
  }
  
  .additional-seo-success-factors h3 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-bottom: 10px;
  }
  
  .additional-seo-success-factors ul {
    font-size: clamp(0.9rem, 3.2vw, 1rem);
    line-height: 1.5;
    padding-left: 12px;
  }
  
  .additional-seo-success-factors ul li {
    margin-bottom: 5px;
  }
}

/* Responsive margin-top for different screen sizes */
@media (max-width: 1024px) and (min-width: 769px) {
  body {
    margin-top: 12vw;
  }
}

@media (max-width: 768px) {
  body {
    margin-top: 18vw;
  }
}

@media (max-width: 480px) {
  body {
    margin-top: 22vw;
  }
}