/* -------------------------------------------------
   FEATURES SECTION – restored + polished
   ------------------------------------------------- */
.features-section {
  padding: 100px 15px;
  background: #ffffff;               /* pure white */
  text-align: center;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 260px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.feature-card:hover {
    cursor: pointer;
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(90,166,0,0.15);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: #5aa600;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  box-shadow: 0 6px 15px rgba(90,166,0,0.2);
  transition: all 0.4s ease;
}

.feature-card:hover .icon-circle {
    cursor: pointer;
  background: #00A651;
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(0,166,81,0.3);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 30px;
  }
  .feature-card {
    min-width: 100%;
  }
}

/* ===================================
   RESPONSIVE – MOBILE FIRST
   =================================== */

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 32px 20px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 15px;
    }

    .features-grid {
        gap: 25px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .feature-card h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 28px 16px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}

/* ===== IDEA SECTION ===== */
.idea-section {
  padding: 100px 15px;
  background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
  position: relative;
  overflow: hidden;
}

.idea-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.idea-heading {
  font-size: 48px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.idea-heading .highlight {
  color: #5aa600;
  position: relative;
}

.idea-heading .highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 12px;
  background: #FFD700;
  bottom: 4px;
  left: 0;
  opacity: 0.6;
  border-radius: 6px;
  z-index: -1;
  animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
  from { opacity: 0.5; transform: scaleX(0.9); }
  to { opacity: 0.7; transform: scaleX(1.05); }
}

.idea-subheading {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.idea-graphic {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.pulse-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 3px solid #5aa600;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

.pulse-circle.delay-1 { animation-delay: 0.3s; width: 140px; height: 140px; }
.pulse-circle.delay-2 { animation-delay: 0.6s; width: 160px; height: 160px; }

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.idea-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #5aa600;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}

/* ===== VOICE & UPDATES SECTION ===== */
.voice-section {
  padding: 120px 15px;
  background: #fff;
}

.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.voice-quote {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.voice-quote span {
  color: #5aa600;
  font-style: italic;
}

.update-card {
  perspective: 1000px;
  height: 220px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.update-card:hover .card-inner {
  transform: rotateY(180deg);
  cursor: pointer;
  cursor: pointer;
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
}

.card-front {
  background: #000;
}

.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.card-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #FFD700;
  color: #333;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: bold;
}

.card-back {
  background: linear-gradient(135deg, #5aa600, #00A651);
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: rotateY(180deg);
}

.card-back h4 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
}

.card-back p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 992px) {
  .voice-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .voice-quote {
    font-size: 24px;
  }
  .idea-heading {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .idea-section, .voice-section {
    padding: 80px 15px;
  }
  .idea-heading {
    font-size: 36px;
  }
  .voice-quote {
    font-size: 22px;
  }
}

/* -------------------------------------------------
   VALUES SECTION – copy into your <style> block
   ------------------------------------------------- */
.values-section{
  padding:100px 15px;
  background:#f8fff8;
}
.values-grid{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;                 /* space between cards */
  max-width:1200px;
  margin:0 auto;
}
.value-item{
  flex:1;
  min-width:260px;
  text-align:center;
  padding:20px;
  transition:transform .4s;
}
.value-item:hover{ transform:translateY(-8px); cursor: pointer; }

.value-icon-circle{
  width:90px;height:90px;
  background:#5aa600;
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
  font-size:36px;
  box-shadow:0 8px 20px rgba(90,166,0,.2);
  transition:all .4s;
  position:relative;
  overflow:hidden;
}
.value-icon-circle::before{
  content:'';position:absolute;
  top:50%;left:50%;width:0;height:0;
  background:rgba(255,215,0,.3);
  border-radius:50%;
  transform:translate(-50%,-50%);
  transition:width .4s,height .4s;
}
.value-item:hover .value-icon-circle{
    cursor: pointer;
  background:#00A651;
  box-shadow:0 12px 30px rgba(0,166,81,.3);
  transform:scale(1.1);
}
.value-item:hover .value-icon-circle::before{
  width:130px;height:130px;
  cursor: pointer;
}
.value-item h3{
  font-size:22px;font-weight:700;color:#333;margin-bottom:12px;
}
.value-item p{
  font-size:15px;color:#555;line-height:1.6;max-width:280px;margin:0 auto;
}

/* ---------- CONNECTOR LINES ---------- */
.value-connector{
  flex:0 0 80px;               /* fixed width for the line */
  display:flex;align-items:center;justify-content:center;
}
.value-connector .line{
  width:100%;height:3px;
  background:#5aa600;
  position:relative;
}
.value-connector .line::before,
.value-connector .line::after{
  content:'';position:absolute;
  width:12px;height:12px;
  background:#5aa600;
  border-radius:50%;
  top:50%;transform:translateY(-50%);
}
.value-connector .line::before{ left:-6px; }
.value-connector .line::after{ right:-6px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width:768px){
  .values-grid{ flex-direction:column; gap:50px; }
  .value-connector{ display:none; }   /* hide lines on mobile */
  .value-item{ min-width:100%; }
}

/* ===== TESTIMONIALS SECTION (CLEAN & FIXED) ===== */
.testimonials-section {
  padding: 51px 15px;
  background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #333;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #5aa600;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Swiper – full width */
.testimonials-swiper {
  width: 100%;
  padding: 20px 0;
  overflow: visible;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  max-width: 380px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: all .4s ease;
  text-align: center;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(90, 166, 0, .18);
}

.testimonial-card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid #5aa600;
  transition: all .4s ease;
}

.testimonial-card:hover .avatar {
  border-color: #FFD700;
  transform: scale(1.08);
}

.testimonial-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.testimonial-card .title {
  font-size: 14px;
  color: #5aa600;
  font-weight: 600;
  margin-bottom: 16px;
}

.testimonial-card .quote {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding: 0 10px;
  margin: 16px 0;
}

.testimonial-card .quote::before {
  content: '“';
  font-size: 40px;
  color: #5aa600;
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 0;
  font-family: Georgia, serif;
}

.testimonial-card .quote::after {
  content: '”';
  font-size: 40px;
  color: #5aa600;
  opacity: 0.2;
  position: absolute;
  bottom: -20px;
  right: 0;
  font-family: Georgia, serif;
}

.testimonial-card .author {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  margin-top: 10px;
}

/* NAVIGATION ARROWS – CLEAN & PROFESSIONAL */
.swiper-btn-prev,
.swiper-btn-next {
  width: 44px;
  height: 44px;
  background: #5aa600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(90, 166, 0, .3);
  transition: all .3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  outline: none;
}

.swiper-btn-prev { left: 10px; }
.swiper-btn-next { right: 10px; }

.swiper-btn-prev::after,
.swiper-btn-next::after {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  display: block;
}

.swiper-btn-prev::after {
  transform: rotate(-135deg);
  margin-left: 2px;
}

.swiper-btn-next::after {
  transform: rotate(45deg);
  margin-right: 2px;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: #00A651;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 166, 81, .4);
}

/* PAGINATION DOTS */
.swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
  border-radius: 50%;
  transition: all .3s ease;
  margin: 0 6px;
}

.swiper-pagination-bullet-active {
  background: #5aa600;
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(90, 166, 0, .2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }
  .testimonial-card {
    max-width: 340px;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 15px;
  }
  .section-title {
    font-size: 32px;
  }
  .swiper-btn-prev,
  .swiper-btn-next {
    display: none;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-card .avatar {
    width: 80px;
    height: 80px;
  }
}

/* ===== TESTIMONIALS ARROWS – FINAL NO-BLUE-LINE FIX ===== */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  background: #5aa600 !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 15px rgba(90,166,0,.3) !important;
  outline: none !important;
  background-image: none !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
}

.testimonials-swiper .swiper-button-prev { left: 15px !important; }
.testimonials-swiper .swiper-button-next { right: 15px !important; }

/* REMOVE DEFAULT ARROW ICONS */
.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
  display: none !important;
}

/* ADD CLEAN WHITE CHEVRON */
.testimonials-swiper .swiper-button-prev::before,
.testimonials-swiper .swiper-button-next::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  display: block;
}
.testimonials-swiper .swiper-button-prev::before {
  transform: rotate(-135deg);
  margin-left: 2px;
}
.testimonials-swiper .swiper-button-next::before {
  transform: rotate(45deg);
  margin-right: 2px;
}

/* HOVER */
.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
  background: #00A651 !important;
  transform: translateY(-50%) scale(1.1) !important;
}

/* HIDE ON MOBILE */
@media (max-width: 768px) {
  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next {
    display: none !important;
  }
}



/* ========================================
   AHSIS FOOTER – SEXY, MINIMAL, PERFECT
   ======================================== */

.ahsis-footer {
  background: #1a1a2e;
  color: #e0e0e0;
  padding: 90px 15px 40px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

.ahsis-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5aa600, #00A651, #FFD700, #5aa600);
  background-size: 200%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.ahsis-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

/* GRID */
.ahsis-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* TITLES */
.ahsis-title {
  color: #5aa600;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
  text-align: center;
}

.ahsis-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #FFD700;
  border-radius: 2px;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* LINKS */
.ahsis-links {
  list-style: none;
  text-align: center;
}

.ahsis-links li {
  margin-bottom: 14px;
}

.ahsis-links a {
  color: #d0d0d0;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  padding: 6px 0;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.ahsis-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.ahsis-links a:hover {
  color: #FFD700;
  padding-left: 8px;
}

.ahsis-links a:hover::before {
  width: 100%;
}

/* CONTACT */
.ahsis-contact {
  list-style: none;
  text-align: center;
}

.ahsis-contact li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}

.ahsis-contact i {
  color: #5aa600;
  font-size: 16px;
  width: 20px;
}

.ahsis-contact a,
.ahsis-contact span {
  color: #fff;
  transition: color 0.3s;
}

.ahsis-contact a:hover {
  color: #FFD700;
}

/* PULSE PIN */
.ahsis-pin {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  position: relative;
  animation: pinPulse 2s infinite;
}

.ahsis-pin::after {
  content: '';
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border: 2px solid #e74c3c;
  border-radius: 50%;
  animation: pinRing 2s infinite;
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

@keyframes pinRing {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* BOTTOM BAR */
.ahsis-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid #333;
  margin-top: 20px;
}

.ahsis-social a {
  width: 44px;
  height: 44px;
  background: rgba(90, 166, 0, 0.2);
  color: #5aa600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  margin: 0 6px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ahsis-social a::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.ahsis-social a:hover {
  background: #5aa600;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(90, 166, 0, 0.3);
}

.ahsis-social a:hover::before {
  width: 200px;
  height: 200px;
}

.ahsis-legal a {
  color: #aaa;
  font-size: 14px;
  margin: 0 12px;
  transition: color 0.3s;
  position: relative;
}

.ahsis-legal a:hover {
  color: #FFD700;
}

.ahsis-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #FFD700;
  transition: width 0.3s;
}

.ahsis-legal a:hover::after {
  width: 100%;
}

/* COPYRIGHT */
.ahsis-copyright {
  text-align: center;
  margin-top: 25px;
  color: #777;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ========================================
   RESPONSIVE – MOBILE PERFECT
   ======================================== */
@media (max-width: 768px) {
  .ahsis-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .ahsis-title {
    font-size: 17px;
  }

  .ahsis-contact li {
    flex-direction: column;
    gap: 6px;
  }

  .ahsis-bottom {
    flex-direction: column;
    text-align: center;
    padding: 25px 0;
  }

  .ahsis-social {
    order: 2;
    margin-top: 15px;
  }

  .ahsis-legal {
    order: 1;
  }

  .ahsis-legal a {
    display: inline-block;
    margin: 6px 10px;
  }
}

@media (max-width: 480px) {
  .ahsis-footer {
    padding: 70px 15px 30px;
  }

  .ahsis-title {
    font-size: 16px;
  }

  .ahsis-links a,
  .ahsis-contact li {
    font-size: 14px;
  }

  .ahsis-social a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}


/* ========================================
   ABOUT PAGE — MINIMAL, SEXY, MODERN
   ======================================== */

.about-body { background: #fff; }

/* HERO */
.about-hero {
  padding: 160px 15px 100px;
  background: linear-gradient(135deg, #5aa600 0%, #00A651 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 40px;
  animation: drift 20s linear infinite;
}

@keyframes drift {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

.about-hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-hero h1 span {
  color: #FFD700;
  font-size: 0.9em;
  display: block;
  font-weight: 600;
  margin-top: 8px;
}

.divider {
  width: 80px;
  height: 4px;
  background: #FFD700;
  margin: 25px auto;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255,215,0,0.6);
}

.about-hero p {
  font-size: 19px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  font-weight: 500;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #333;
  margin-bottom: 60px;
  position: relative;
}

.section-title span {
  color: #5aa600;
}

.section-title::after {
  content: '';
  width: 70px;
  height: 4px;
  background: #FFD700;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ABOUT COMPANY */
.about-company {
  padding: 100px 15px;
  background: #f9f9f9;
}

.company-text p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 22px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* FOUNDER */
.founder {
  padding: 120px 15px;
  background: white;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.founder-img {
  text-align: center;
}

.founder-img img {
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: 0.4s;
}

.founder-img:hover img {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.founder-img .social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.founder-img .social a {
  width: 44px;
  height: 44px;
  background: #5aa600;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  transition: 0.3s;
}

.founder-img .social a:hover {
  background: #FFD700;
  color: #333;
  transform: translateY(-4px);
}

.founder-text h3 {
  font-size: 32px;
  color: #5aa600;
  margin-bottom: 25px;
  font-weight: 700;
}

.founder-text blockquote {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  border-left: 5px solid #5aa600;
  padding: 20px 25px;
  background: #f8fff8;
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
}

.founder-text .name {
  font-weight: 700;
  color: #333;
  font-size: 18px;
  margin-top: 20px;
}

.founder-text .title {
  color: #5aa600;
  font-size: 15px;
  margin-top: 4px;
}

/* CHAIRMAN */
.chairman {
  padding: 120px 15px;
  background: #f9f9f9;
}

.chairman-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.chairman-text h3 {
  font-size: 32px;
  color: #5aa600;
  margin-bottom: 25px;
  font-weight: 700;
}

.chairman-text p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}

.chairman-img img {
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: 0.4s;
  display: block;
  margin: 0 auto;
}

.chairman-img:hover img {
  transform: translateY(-10px);
}

/* ACTIVE NAV */
.nav-desktop ul li a.active,
.nav-mobile ul li a.active {
  background: #5aa600 !important;
  color: white !important;
  border-radius: 50px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-hero h1 { font-size: 44px; }
  .founder-grid, .chairman-grid { grid-template-columns: 1fr; text-align: center; }
  .founder-text, .chairman-text { order: 2; }
  .founder-img, .chairman-img { order: 1; }
}

@media (max-width: 768px) {
  .about-hero { padding: 140px 15px 80px; }
  .about-hero h1 { font-size: 38px; }
  .section-title { font-size: 36px; }
  .about-company, .founder, .chairman { padding: 80px 15px; }
  .company-text p, .founder-text blockquote, .chairman-text p { font-size: 16px; }
}

@media (max-width: 576px) {
  .about-hero h1 { font-size: 32px; }
  .section-title { font-size: 30px; }
}

/* Reset & Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #fff;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Top Contact Bar */
    .top-bar {
      background: #5aa600;
      ;
      color: white;
      padding: 12px 0;
      font-size: 13px;
      position: relative;
      z-index: 100;
    }

    .top-bar .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .contact-info {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      font-size: 12px;
      align-items: center;
    }

    .contact-info i {
      margin-right: 5px;
      font-size: 13px;
    }

    .social-links a {
      color: white;
      margin-left: 12px;
      font-size: 15px;
      transition: transform 0.2s;
    }

    .social-links a:hover {
      transform: scale(1.2);
    }

    /* Header with Circular Navbar */
    header {
      background: white;
      padding: 15px 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 99;
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      height: 91px;
      width: 112px;
    }

    /* Desktop Circular Navbar */
    .nav-desktop {
      display: flex;
    }

    .nav-desktop ul {
      display: flex;
      list-style: none;
      gap: 8px;
      background: #f8f9fa;
      padding: 8px 12px;
      border-radius: 50px;
      border: 1px solid #e0e0e0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .nav-desktop ul li a {
      color: #555;
      font-weight: 500;
      font-size: 14px;
      padding: 8px 16px;
      border-radius: 50px;
      transition: all 0.3s;
      white-space: nowrap;
    }

    .nav-desktop ul li a:hover {
      background: #5aa600;
      color: white;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
      display: none;
      background: #5aa600;
      color: white;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 166, 81, 0.3);
    }

    /* Mobile Nav */
    .nav-mobile {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: white;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 15px 0;
      border-radius: 0 0 20px 20px;
    }

    .nav-mobile.active {
      display: block;
    }

    .nav-mobile ul {
      list-style: none;
      text-align: center;
    }

    .nav-mobile ul li {
      margin: 10px 0;
    }

    .nav-mobile ul li a {
      color: #555;
      font-weight: 500;
      font-size: 16px;
      display: block;
      padding: 10px 0;
      border-radius: 50px;
      margin: 0 20px;
      transition: 0.3s;
    }

    .nav-mobile ul li a:hover {
      background: #00A651;
      color: white;
    }

    .btn-agri {
      background: #00A651;
      color: white;
      padding: 10px 18px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      transition: 0.3s;
      box-shadow: 0 2px 8px rgba(0, 166, 81, 0.3);
    }

    .btn-agri:hover {
      background: #008c45;
      transform: translateY(-2px);
    }

    .btn-agri .arrow {
      background: #FFD700;
      color: #00A651;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: bold;
    }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      color: white;
      padding: 60px 15px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1;
    }

    .hero video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      bottom: 43px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      z-index: 2;
    }

    .welcome-text {
      font-size: 16px;
      margin-bottom: 8px;
      color: #fff;
      ;
      letter-spacing: 0.5px;
    }

    .highlight-line {
      height: 3px;
      width: 70px;
      margin: 12px auto;
      border-radius: 2px;
    }

    .hero h1 {
      font-size: 48px;
      font-weight: 800;
      margin: 15px 0;
      line-height: 1.1;
    }

    .hero h1 span {
      font-size: 18px;
      display: block;
      font-weight: normal;
      margin-bottom: 8px;
      color: #e0e0e0;
    }

    .hero .subtitle {
      font-size: 18px;
      margin: 18px 0;
      color: #fff;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .btn-dig {
      background: #5aa600;
      color: white;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      transition: 0.3s;
      box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
    }

    .btn-dig:hover {
      background: #008c45;
      transform: translateY(-2px);
    }

    .btn-dig .arrow-circle {
      background: #FFD700;
      color: #00A651;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: bold;
    }

    /* Floating Icons */
    .cloud-icon,
    .weather-icons {
      display: none;
    }

    /* Responsive */
    @media (min-width: 769px) {
      .cloud-icon {
        display: block;
        position: absolute;
        top: 12%;
        left: 50%;
        transform: translateX(-50%);
        width: 130px;
        opacity: 0.7;
      }

      .weather-icons {
        display: flex;
        position: absolute;
        top: 38%;
        right: 8%;
        gap: 20px;
      }

      .weather-icons img {
        width: 65px;
        opacity: 0.8;
      }
    }

    @media (max-width: 992px) {
      .hero h1 {
        font-size: 42px;
      }

      .hero h1 span {
        font-size: 17px;
      }

      .hero .subtitle {
        font-size: 17px;
      }
    }

    @media (max-width: 768px) {
      .nav-desktop {
        display: none;
      }

      .menu-toggle {
        display: flex;
      }

      .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
      }

      .contact-info {
        justify-content: center;
        font-size: 11.5px;
        gap: 10px;
      }

      .social-links a {
        margin: 0 8px;
      }

      .hero {
        min-height: 85vh;
        padding: 50px 15px;
      }

      .hero h1 {
        font-size: 36px;
      }

      .hero h1 span {
        font-size: 16px;
      }

      .hero .subtitle {
        font-size: 16px;
      }

      .btn-dig {
        padding: 13px 25px;
        font-size: 14px;
      }

      .btn-dig .arrow-circle {
        width: 30px;
        height: 30px;
        font-size: 14px;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 30px;
        line-height: 1.2;
      }

      .hero h1 span {
        font-size: 15px;
      }

      .hero .subtitle {
        font-size: 15px;
        padding: 0 10px;
      }

      .welcome-text {
        font-size: 14px;
      }

      .btn-dig {
        padding: 12px 22px;
        font-size: 14px;
      }

      .btn-agri {
        padding: 9px 16px;
        font-size: 13px;
      }

      .btn-agri .arrow {
        width: 22px;
        height: 22px;
        font-size: 11px;
      }

      .logo img {
        height: 83px;
        width: 95px;
      }

      .nav-desktop ul {
        gap: 5px;
      }

      .nav-desktop ul li a {
        padding: 6px 12px;
        font-size: 13px;
      }
    }


    /* ========================================
   VISION & MISSION – MODERN, SEXY
   ======================================== */

.vision-mission {
  padding: 120px 15px;
  background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
  position: relative;
  overflow: hidden;
}

.vision-mission::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="6" viewBox="0 0 6 6"><circle cx="3" cy="3" r="1" fill="rgba(90,166,0,0.05)"/></svg>');
  background-size: 20px;
  pointer-events: none;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.vm-card {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #5aa600, #FFD700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.vm-card:hover::before {
  transform: scaleX(1);
}

.vm-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(90,166,0,0.15);
}

.vm-icon {
  width: 70px;
  height: 70px;
  background: #5aa600;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(90,166,0,0.25);
  transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
  background: #FFD700;
  color: #333;
  transform: scale(1.15);
  box-shadow: 0 12px 30px rgba(255,215,0,0.4);
}

.vm-card h3 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.vm-card p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

.vm-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  font-weight: 500;
  padding: 30px;
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ========================================
   BUSINESS ACHIEVEMENTS – STATS GRID
   ======================================== */

.achievements {
  padding: 120px 15px;
  background: #fff;
}

.achievements-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 1.9;
  color: #444;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  padding: 35px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #5aa600, #FFD700);
  transition: width 0.5s ease, left 0.5s ease;
}

.stat-card:hover::before {
  width: 100%;
  left: 0;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(90,166,0,0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: #5aa600;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  background: #FFD700;
  color: #333;
  transform: rotate(360deg) scale(1.1);
}

.stat-card h3 {
  font-size: 42px;
  font-weight: 800;
  color: #333;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

.stat-card p span {
  display: block;
  font-size: 13px;
  color: #5aa600;
  margin-top: 6px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .vm-grid, .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .vision-mission, .achievements {
    padding: 80px 15px;
  }
  .section-title { font-size: 36px; }
  .vm-card, .stat-card { padding: 30px 20px; }
  .vm-intro { font-size: 16.5px; padding: 20px; }
}

@media (max-width: 576px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card h3 { font-size: 36px; }
  .vm-card h3 { font-size: 24px; }
}

/* ========================================
   SERVICES PAGE — SEXY, MODERN, EPIC
   ======================================== */

.services-body { background: #fff; }

/* HERO */
.services-hero {
  padding: 160px 15px 100px;
  background: linear-gradient(135deg, #5aa600 0%, #00A651 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"><circle cx="4" cy="4" r="1" fill="rgba(255,255,255,0.08)"/></svg>');
  background-size: 30px;
  animation: drift 25s linear infinite;
}

@keyframes drift {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

.services-hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.services-hero h1 span {
  color: #FFD700;
  font-size: 0.9em;
  display: block;
  font-weight: 600;
  margin-top: 8px;
}

.divider {
  width: 80px;
  height: 4px;
  background: #FFD700;
  margin: 25px auto;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255,215,0,0.6);
}

.services-hero p {
  font-size: 19px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  font-weight: 500;
}

/* SECTION INTRO */
.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 1.9;
  color: #444;
}

/* SERVICES GRID */
.services-grid-section {
  padding: 100px 15px;
  background: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #5aa600, #FFD700);
  transition: width 0.5s ease, left 0.5s ease;
}

.service-card:hover::before {
  width: 100%;
  left: 0;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(90,166,0,0.15);
}

.service-card .icon {
  width: 70px;
  height: 70px;
  background: #5aa600;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: all 0.4s ease;
}

.service-card:hover .icon {
  background: #FFD700;
  color: #333;
  transform: scale(1.15) rotate(360deg);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
}

/* HOW WE WORK */
.how-we-work {
  padding: 120px 15px;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: #f8fff8;
  padding: 30px;
  border-radius: 18px;
  border-left: 5px solid #5aa600;
  position: relative;
  transition: all 0.4s ease;
}

.step-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(90,166,0,0.12);
  border-left-color: #FFD700;
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 44px;
  height: 44px;
  background: #5aa600;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(90,166,0,0.3);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  padding-left: 40px;
}

.step-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  padding-left: 40px;
}

/* SPECIALIZATIONS */
.specializations {
  padding: 120px 15px;
  background: #f9f9f9;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.spec-card {
  background: white;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: all 0.4s ease;
}

.spec-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(90,166,0,0.15);
}

.spec-icon {
  width: 60px;
  height: 60px;
  background: #5aa600;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
  transition: all 0.4s ease;
}

.spec-card:hover .spec-icon {
  background: #FFD700;
  color: #333;
  transform: scale(1.2);
}

.spec-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.spec-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ACTIVE NAV */
.nav-desktop ul li a.active,
.nav-mobile ul li a.active {
  background: #5aa600 !important;
  color: white !important;
  border-radius: 50px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-hero h1 { font-size: 44px; }
  .steps-grid, .spec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .services-hero { padding: 140px 15px 80px; }
  .services-hero h1 { font-size: 38px; }
  .section-title { font-size: 36px; }
  .services-grid-section, .how-we-work, .specializations { padding: 80px 15px; }
}

@media (max-width: 576px) {
  .services-hero h1 { font-size: 32px; }
  .section-title { font-size: 30px; }
  .service-card, .step-card, .spec-card { padding: 25px 20px; }
}

/* ========================================
   TEAM PAGE — MODERN ORG CHART + WHY CHOOSE
   ======================================== */

.team-body { background: #fff; }

/* HERO */
.team-hero {
  padding: 160px 15px 100px;
  background: linear-gradient(135deg, #5aa600 0%, #00A651 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 35px;
  animation: drift 30s linear infinite;
}

@keyframes drift {
  0% { background-position: 0 0; }
  100% { background-position: 120px 120px; }
}

.team-hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.team-hero h1 span {
  color: #FFD700;
  font-size: 0.9em;
  display: block;
  font-weight: 600;
  margin-top: 8px;
}

.divider {
  width: 80px;
  height: 4px;
  background: #FFD700;
  margin: 25px auto;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255,215,0,0.6);
}

.team-hero p {
  font-size: 19px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  font-weight: 500;
}

/* ORG CHART */
.org-chart {
  padding: 120px 15px;
  background: #f9f9f9;
}

.chart-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* Founder */
.leader-card {
  text-align: center;
  margin-bottom: 50px;
}

.leader-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #5aa600;
  box-shadow: 0 15px 35px rgba(90,166,0,0.25);
  transition: all 0.4s ease;
}

.leader-card:hover img {
  transform: scale(1.1);
  border-color: #FFD700;
}

.leader-info {
  margin-top: 15px;
}

.leader-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.leader-info p {
  font-size: 16px;
  color: #5aa600;
  font-weight: 600;
}

/* Connector Line */
.connector-line {
  height: 4px;
  background: #5aa600;
  width: 80%;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  border-radius: 2px;
}

.connector-line::before,
.connector-line::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #5aa600;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.connector-line::before { left: -6px; }
.connector-line::after { right: -6px; }

/* Core Team */
.core-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.team-member {
  text-align: center;
  background: white;
  padding: 25px 15px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.team-member:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(90,166,0,0.15);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #e0e0e0;
  transition: border 0.3s;
}

.team-member:hover img {
  border-color: #5aa600;
}

.member-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}

.member-info p {
  font-size: 14px;
  color: #5aa600;
  line-height: 1.4;
  max-width: 180px;
  margin: 0 auto;
}

/* Extended Team (Right Side) */
.extended-team {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 300px;
  margin-left: auto;
}

.extended-team .team-member {
  margin-left: auto;
  max-width: 260px;
}

/* WHY CHOOSE AHSIS */
.why-choose {
  padding: 120px 15px;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: #f8fff8;
  padding: 35px 25px;
  border-radius: 22px;
  border-left: 5px solid #5aa600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(90,166,0,0.05), rgba(255,215,0,0.05));
  transition: height 0.5s ease;
}

.why-card:hover::before {
  height: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  border-left-color: #FFD700;
  box-shadow: 0 20px 40px rgba(90,166,0,0.12);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: #5aa600;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: all 0.4s ease;
}

.why-card:hover .why-icon {
  background: #FFD700;
  color: #333;
  transform: scale(1.15);
}

.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* ACTIVE NAV */
.nav-desktop ul li a.active,
.nav-mobile ul li a.active {
  background: #5aa600 !important;
  color: white !important;
  border-radius: 50px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .core-team { grid-template-columns: repeat(2, 1fr); }
  .extended-team { margin-left: 0; max-width: 100%; }
  .extended-team .team-member { margin: 0 auto; }
}

@media (max-width: 992px) {
  .team-hero h1 { font-size: 44px; }
  .core-team { grid-template-columns: 1fr; }
  .connector-line { width: 60%; }
}

@media (max-width: 768px) {
  .team-hero { padding: 140px 15px 80px; }
  .team-hero h1 { font-size: 38px; }
  .org-chart, .why-choose { padding: 80px 15px; }
  .section-title { font-size: 36px; }
  .leader-card img { width: 120px; height: 120px; }
}

@media (max-width: 576px) {
  .team-hero h1 { font-size: 32px; }
  .section-title { font-size: 30px; }
  .why-card { padding: 25px 20px; }
  .team-member img { width: 90px; height: 90px; }
}

/* ========================================
   CONTACT PAGE — SEXY, MODERN, WAVE BG
   ======================================== */

.contact-body { background: #fff; }

/* HERO */
.contact-hero {
  padding: 160px 15px 120px;
  background: #fff;
  color: #333;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero h1 {
  font-size: 58px;
  font-weight: 800;
  color: #ff6a00;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(255,106,0,0.15);
}

.contact-hero h1 span {
  color: #5aa600;
  font-weight: 700;
}

.divider {
  width: 90px;
  height: 5px;
  background: linear-gradient(90deg, #ff6a00, #5aa600);
  margin: 25px auto;
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(255,106,0,0.4);
}

.contact-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
  font-weight: 500;
}

/* WAVE BACKGROUND */
.wave-bg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23FFD700" fill-opacity="0.15" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,176C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center bottom;
  background-size: cover;
  animation: waveMove 12s ease-in-out infinite alternate;
}

@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100px); }
}

/* CONTACT INFO GRID */
.contact-info-section {
  padding: 100px 15px 80px;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 25px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: all 0.4s ease;
}

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(90,166,0,0.12);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.contact-icon.phone { background: #ff6a00; }
.contact-icon.email { background: #5aa600; }
.contact-icon.web { background: #007bff; }
.contact-icon.location { background: #dc3545; }

.contact-details a,
.contact-details p {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: #5aa600;
}

.contact-details p {
  margin: 0;
  color: #555;
}

/* WHATSAPP CTA */
.whatsapp-cta {
  text-align: center;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
  transition: all 0.4s ease;
  animation: pulseGlow 2s infinite;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37,211,102,0.4);
}

.whatsapp-btn i {
  font-size: 24px;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 10px 40px rgba(37,211,102,0.5); }
}

/* ACTIVE NAV */
.nav-desktop ul li a.active,
.nav-mobile ul li a.active {
  background: #5aa600 !important;
  color: white !important;
  border-radius: 50px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-hero h1 { font-size: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .contact-hero { padding: 140px 15px 100px; }
  .contact-hero h1 { font-size: 42px; }
  .contact-info-section { padding: 80px 15px 60px; }
  .contact-item { flex-direction: column; text-align: center; gap: 15px; }
  .whatsapp-btn { font-size: 16px; padding: 14px 28px; }
}

@media (max-width: 576px) {
  .contact-hero h1 { font-size: 36px; }
  .contact-hero p { font-size: 16px; }
  .contact-item { padding: 20px 15px; }
}