
/* ========== ENHANCED HEADER STYLES ========== */

/* Base styles */
* {
  box-sizing: border-box;
}

/* Top accent bar */
.header-top-bar {
  background: linear-gradient(90deg, #2e8b57 0%, #3cb371 50%, #2e8b57 100%);
  height: 4px;
  width: 100%;
}

/* Header layout */
.site-header {
  background: #fff;
  padding: 12px 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Scrolled state */
.site-header.scrolled {
  padding: 8px 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.site-header.scrolled .logo img {
  height: 55px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
  transition: all 0.3s ease;
}

.logo a {
  display: flex;
  align-items: center;
}

/* Navigation */
.nav {
  display: flex;
  gap: 5px;
  list-style: none;
  align-items: center;
}

.nav > a,
.nav > li > a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.nav > a:hover,
.nav > li > a:hover {
  color: #2e8b57;
  background-color: rgba(46, 139, 87, 0.06);
}

/* Active page indicator */
.nav > a.active {
  color: #2e8b57;
  font-weight: 600;
}

.nav > a.active::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #2e8b57;
  border-radius: 50%;
}

/* Hover underline effect */
.nav > a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, #2e8b57, #3cb371);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav > a.active::after {
  display: none;
}

/* CTA Button */
.nav-cta {
  background: linear-gradient(135deg, #2e8b57 0%, #3cb371 100%);
  color: #fff !important;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
  transition: all 0.3s ease !important;
  margin-left: 10px;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #247a4a 0%, #2e8b57 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
  color: #fff !important;
}

.nav-cta::after {
  display: none !important;
}

/* Animated Hamburger Menu */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1003;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.menu-btn:hover {
  background: rgba(46, 139, 87, 0.1);
}

.menu-btn .bar {
  width: 24px;
  height: 3px;
  background-color: #2e8b57;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-btn .bar:nth-child(1) {
  margin-bottom: 5px;
}

.menu-btn .bar:nth-child(3) {
  margin-top: 5px;
}

/* Hamburger animation when open */
.menu-toggle:checked + .menu-btn .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle:checked + .menu-btn .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle:checked + .menu-btn .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Close button styling */
.close-btn {
  display: none;
}

/* Mobile menu header */
.mobile-menu-header {
  display: none;
  padding: 20px 0 25px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.mobile-menu-header img {
  height: 40px;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 992px) {
  .site-header {
    padding: 10px 20px;
  }

  .nav > a,
  .nav > li > a {
    padding: 10px 14px;
    font-size: 14px;
  }

  .nav-cta {
    padding: 10px 18px !important;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .mobile-menu-header {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
    padding: 0 25px 25px 25px;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 3px;
    align-items: stretch;
  }

  .nav > a,
  .nav > li > a {
    padding: 16px 15px;
    font-size: 16px;
    border-radius: 10px;
    width: 100%;
    color: #333;
  }

  .nav > a::after {
    display: none;
  }

  .nav > a::before {
    display: none;
  }

  .nav > a:hover,
  .nav > li > a:hover {
    background-color: rgba(46, 139, 87, 0.1);
    padding-left: 20px;
    color: #2e8b57;
  }

  .nav > a.active {
    background-color: rgba(46, 139, 87, 0.1);
    color: #2e8b57;
  }

  /* Mobile CTA button */
  .nav-cta {
    margin: 20px 0 0 0 !important;
    text-align: center;
    justify-content: center;
  }

  .dropdown {
    position: relative;
    list-style: none;
    width: 100%;
  }

  .dropdown > a {
    display: block;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    background: rgba(46, 139, 87, 0.05);
    display: none;
    flex-direction: column;
    padding: 10px;
    box-shadow: none;
    width: 100%;
    border-radius: 10px;
    margin-top: 5px;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .logo img {
    height: 55px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 8px 15px;
  }

  .nav {
    width: 100%;
    right: -100%;
  }

  .menu-toggle:checked + .menu-btn + .nav-overlay + .nav {
    right: 0;
  }

  .logo img {
    height: 50px;
  }
}

/* Mobile Navigation Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle:checked + .menu-btn + .nav-overlay {
    display: block;
    opacity: 1;
  }

  .menu-toggle:checked + .menu-btn + .nav-overlay + .nav {
            display: flex;
        right: 0;
        flex-direction: row;

  }
}

@media (max-width: 480px) {
  .menu-toggle:checked + .menu-btn + .nav-overlay + .nav {
    width: 100%;
  }
}






/* ========== IMPROVED DROPDOWN STYLES ========== */

/* Hide close btn on desktop */
@media (min-width: 769px) {
  .close-btn {
    display: none !important;
  }
}

/* Prevent bullet on list item */
.dropdown {
  position: relative;
  list-style: none;
}

/* Dropdown menu styles */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 520px;
  padding: 25px;
  display: none;
  z-index: 999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.dropdown-column {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dropdown-column a {
  padding: 10px 12px;
  text-decoration: none;
  color: #444;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-column a:hover {
  background-color: rgba(46, 139, 87, 0.1);
  color: #2e8b57;
  padding-left: 18px;
}

/* Desktop hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 10px 5px;
    flex-direction: column;
    transform: none;
    border-radius: 8px;
    background: #f8f9fa;
    opacity: 1;
    visibility: visible;
    display: none;
    transition: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-column {
    width: 100%;
  }

  .dropdown-column a {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #333 !important;
    display: block;
  }

  .dropdown-column a:last-child {
    border-bottom: none;
  }

  .dropdown-column a:hover {
    color: #2e8b57 !important;
    background-color: rgba(46, 139, 87, 0.1);
  }

  .dropdown.active .dropdown-menu {
    display: flex !important;
  }
}
 
    /* Menu toggle checkbox - hidden */
    #menu-toggle {
      display: none;
    }

    /* Dropdown toggle using checkbox */
    .dropdown-toggle {
      display: none;
    }

    .dropdown-content {
      display: none;
      flex-direction: column;
      margin-left: 15px;
    }

    .dropdown-toggle:checked + .dropdown-label + .dropdown-content {
      display: flex;
    }
  /* <!-- Enhanced Footer Styles --> */
/* ========== ENHANCED FOOTER STYLES ========== */
.footer-section {
  background: linear-gradient(135deg, #1a5a3d 0%, #2e8b57 50%, #1a5a3d 100%);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Footer Top Section */
.footer-top {
  background: rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-cta h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.footer-cta p {
  margin: 0;
  opacity: 0.85;
  font-size: 15px;
}

.footer-newsletter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-newsletter input {
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  width: 280px;
  font-size: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
}

.footer-newsletter input::placeholder {
  color: #888;
}

.footer-newsletter button {
  padding: 14px 28px;
  background: #fff;
  color: #2e8b57;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-newsletter button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Main Footer Content */
.footer-main {
  padding: 60px 20px 40px;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col.logo-col {
  padding-right: 30px;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-col.logo-col p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 20px;
}

.footer-col.logo-col .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col.logo-col .footer-contact-item i {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Footer Column Headings */
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.3));
  border-radius: 3px;
}
.footer-col h4{
    color: #fff;
}
/* Footer Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-col ul li a:hover::before {
  width: 15px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
  background: #fff;
  color: #2e8b57;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  position: relative;
  z-index: 1;
}

.footer-bottom-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color:#fff;  
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* ========== FOOTER MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-col.logo-col {
    grid-column: span 3;
    text-align: center;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .footer-col.logo-col .footer-contact-item {
    justify-content: center;
  }

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

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col {
    text-align: center;
  }

  .footer-col ul li a::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-top-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-newsletter {
    justify-content: center;
    width: 100%;
  }

  .footer-newsletter input {
    width: 100%;
    max-width: 300px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-col.logo-col {
    grid-column: span 2;
  }

  .footer-main {
    padding: 40px 20px 30px;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

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

  .footer-col.logo-col {
    grid-column: span 1;
  }

  .footer-cta h3 {
    font-size: 20px;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: center;
  }

  .footer-newsletter button {
    width: 100%;
    max-width: 300px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}


/* About section */
    
@media (max-width: 768px) {
  .about-right .img-grid {
    grid-template-columns: 1fr; /* 1 column */
    gap: 20px;
    padding: 0px;
    margin: 0;
  }

  .about-right .img-grid div {
    padding: 0;
  }

  .about-right .img-grid div img {
    width: 200px;
    height: 180px;
    display: block;
    object-fit: cover;
    /* margin-left: -60px;
    margin-right: 210px; */
  }
}


 /* Enhanced About Section Styles  */

/* ========== ENHANCED ABOUT SECTION ========== */
.about-section-enhanced {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fdf9 100%);
  position: relative;
  overflow: hidden;
}

.about-section-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2e8b57, #3cb371, #2e8b57);
}

.about-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About Content */
.about-content {
  position: relative;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 139, 87, 0.1);
  color: #2e8b57;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-badge i {
  font-size: 12px;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 25px 0;
}

.about-title span {
  color: #2e8b57;
  position: relative;
}

.about-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(46, 139, 87, 0.2);
  z-index: -1;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

.about-description strong {
  color: #2e8b57;
}

/* Feature List */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.about-feature-item:hover {
  transform: translateX(8px);
  border-left-color: #2e8b57;
  box-shadow: 0 8px 30px rgba(46, 139, 87, 0.15);
}

.about-feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2e8b57 0%, #3cb371 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.about-feature-item .feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.about-feature-item .feature-text p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* About CTA */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2e8b57 0%, #3cb371 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

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

.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(46, 139, 87, 0.4);
}

.about-cta:hover i {
  transform: translateX(5px);
}

/* About Images */
.about-images {
  position: relative;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-img-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-img-item:nth-child(2) {
  margin-top: 40px;
}

.about-img-item:nth-child(3) {
  margin-top: -40px;
}

.about-img-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-item:hover img {
  transform: scale(1.08);
}

.about-img-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(46, 139, 87, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-img-item:hover::after {
  opacity: 1;
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: white;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 10;
}

.experience-badge .number {
  font-size: 48px;
  font-weight: 800;
  color: #2e8b57;
  line-height: 1;
  display: block;
}

.experience-badge .text {
  font-size: 14px;
  color: #555;
  font-weight: 500;
  margin-top: 5px;
}

/* Stats Section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #e8e8e8;
}

.stat-item {
  text-align: center;
  padding: 25px 15px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 139, 87, 0.15);
}

.stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(60, 179, 113, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #2e8b57;
  font-size: 24px;
}

.stat-item .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #2e8b57;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* ========== ABOUT SECTION MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-wrapper {
    gap: 50px;
  }

  .about-title {
    font-size: 36px;
  }

  .experience-badge {
    left: 0;
    bottom: 20px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-section-enhanced {
    padding: 70px 15px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-images {
    order: -1;
  }

  .about-title {
    font-size: 32px;
  }

  .about-img-item:nth-child(2),
  .about-img-item:nth-child(3) {
    margin-top: 0;
  }

  .about-img-item img {
    height: 180px;
  }

  .experience-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 20px;
    display: inline-block;
  }

  .about-stats {
    margin-top: 50px;
    padding-top: 40px;
  }

  .stat-item .stat-number {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }

  .about-feature-item {
    padding: 15px;
  }

  .about-feature-item .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .stat-item {
    padding: 20px 10px;
  }

  .stat-item .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .stat-item .stat-number {
    font-size: 26px;
  }
}

/* 
 Enhanced Hero Section Styles  */
/* ========== ENHANCED HERO SECTION ========== */
.hero-enhanced {
  min-height: 100vh;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
}

/* Decorative Elements */
.hero-enhanced::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 139, 87, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-enhanced::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(60, 179, 113, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}

/* Floating Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.hero-shape-1 {
  width: 20px;
  height: 20px;
  background: #2e8b57;
  top: 20%;
  left: 10%;
  animation: bounce 4s ease-in-out infinite;
}

.hero-shape-2 {
  width: 15px;
  height: 15px;
  background: #3cb371;
  top: 60%;
  left: 5%;
  animation: bounce 5s ease-in-out infinite 1s;
}

.hero-shape-3 {
  width: 25px;
  height: 25px;
  background: #90ee90;
  top: 30%;
  right: 8%;
  animation: bounce 6s ease-in-out infinite 0.5s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease;
}

.hero-badge .badge-dot {
  width: 10px;
  height: 10px;
  background: #2e8b57;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #2e8b57;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title-enhanced {
  font-size: 58px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 25px 0;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title-enhanced span {
  color: #2e8b57;
  position: relative;
  display: inline-block;
}

.hero-title-enhanced span::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(46, 139, 87, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 20px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle strong {
  color: #2e8b57;
  font-weight: 700;
}

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

/* Hero Buttons */
.hero-buttons-enhanced {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2e8b57 0%, #3cb371 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(46, 139, 87, 0.35);
}

.hero-btn-primary i {
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(46, 139, 87, 0.45);
}

.hero-btn-primary:hover i {
  transform: translateX(5px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #2e8b57;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}

.hero-btn-secondary:hover {
  border-color: #2e8b57;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #2e8b57;
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* Hero Media */
.hero-media {
  position: relative;
  animation: fadeInRight 1s ease 0.4s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-video-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.hero-video-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-video-container video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Floating Cards */
.hero-floating-card {
  position: absolute;
  background: white;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-floating-card.card-1 {
  top: 20px;
  left: -40px;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  bottom: 40px;
  right: -30px;
  animation-delay: 2s;
}

.hero-floating-card .card-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2e8b57 0%, #3cb371 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.hero-floating-card .card-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.hero-floating-card .card-text p {
  font-size: 12px;
  color: #777;
  margin: 3px 0 0 0;
}

/* ========== HERO MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-enhanced {
    padding: 100px 20px 60px;
  }

  .hero-wrapper {
    gap: 40px;
  }

  .hero-title-enhanced {
    font-size: 48px;
  }

  .hero-floating-card.card-1 {
    left: 0;
  }

  .hero-floating-card.card-2 {
    right: 0;
  }
}

@media (max-width: 768px) {
  .hero-enhanced {
    min-height: auto;
    padding: 100px 15px 50px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-media {
    order: 2;
    margin-top: 20px;
  }

  .hero-title-enhanced {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 17px;
    max-width: 100%;
  }

  .hero-buttons-enhanced {
    justify-content: center;
  }

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

  .hero-floating-card {
    display: none;
  }

  .hero-video-container {
    border-radius: 20px;
  }

  .hero-shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-enhanced {
    padding: 90px 15px 40px;
  }

  .hero-title-enhanced {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons-enhanced {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat .stat-number {
    font-size: 30px;
  }
}
 /* Scrolling Ticker Section  */

.ticker-enhanced {
  background: linear-gradient(135deg, #2e8b57 0%, #3cb371 100%);
  padding: 15px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
}

.ticker-content {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  padding-right: 50px;
}

.ticker-content span {
  color: white;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ticker-content span::before {
  content: '•';
  font-size: 20px;
  opacity: 0.7;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}




    /* ✅ Mobile Responsive */
@media screen and (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
            margin-top: 100px;
  }

  .hero-text {
    text-align: center;
  }

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

  .hero-title {
            font-size: 50px;
        font-weight: bold;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-image video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
    .hero-image {
    width: 100%;
            margin-bottom: -277px;
        padding-top: 20px;
  }

  .responsive-video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}



     .product-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .product-card {
      width: 300px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
    }

    .product-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .product-info {
      padding: 15px;
      position: relative;
    }

    .plus-btn {
      position: absolute;
      top: 250px;
      right: 15px;
      /* background-color: #007bff; */
      color: white;
      border: none;
      border-radius: 50%;
           width: 30px;
    height: 30px;
    font-size: 15px;     /* Smaller font */
  cursor: pointer;
  line-height: 18px;
  text-align: center;
  padding: 0;
    }

    .product-title {
      margin: 0;
      font-size: 18px;
      font-weight: bold;
    }

    .product-type {
      margin: 5px 0;
      font-size: 14px;
      color: #666;
    }

    .product-desc {
      margin: 0;
      font-size: 13px;
      color: #888;
    }



 /* Enhanced Products Section Styles */

/* ========== ENHANCED PRODUCTS SECTION ========== */
.products-section-enhanced {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fdf9 0%, #ffffff 50%, #f8fdf9 100%);
  position: relative;
  overflow: hidden;
}

.products-section-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2e8b57, #3cb371, #2e8b57);
}

.products-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Header */
.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 139, 87, 0.1);
  color: #2e8b57;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.products-badge i {
  font-size: 14px;
}

.products-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}

.products-title span {
  color: #2e8b57;
}

.products-subtitle {
  font-size: 17px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Swiper Container */
.products-swiper-container {
  position: relative;
  padding: 20px 0;
}

.products-swiper {
  padding: 20px 10px 40px !important;
  overflow: visible !important;
}

.products-swiper .swiper-slide {
  height: auto;
}

/* Product Card Enhanced */
.product-card-enhanced {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(46, 139, 87, 0.2);
}

/* Product Image */
.product-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 520px;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-enhanced:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(46, 139, 87, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.product-card-enhanced:hover .product-image-overlay {
  opacity: 1;
}

.product-quick-view {
  background: white;
  color: #2e8b57;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.product-card-enhanced:hover .product-quick-view {
  transform: translateY(0);
}

/* Product Badge */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #2e8b57 0%, #3cb371 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Product Content */
.product-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  transition: color 0.3s ease;
}

.product-content h3 a {
  text-decoration: none;
  color: inherit;
}

.product-card-enhanced:hover .product-content h3 {
  color: #2e8b57;
}

.product-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Product Button */
.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2e8b57 0%, #3cb371 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(46, 139, 87, 0.3);
  width: fit-content;
}

.product-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.product-btn:hover {
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
  transform: translateY(-2px);
}

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

/* Navigation Arrows */
.products-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #2e8b57;
  font-size: 18px;
}

.products-nav:hover {
  background: #2e8b57;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.products-nav-prev {
  left: -25px;
}

.products-nav-next {
  right: -25px;
}

/* Pagination */
.products-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.products-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.products-pagination .swiper-pagination-bullet-active {
  background: #2e8b57;
  width: 35px;
  border-radius: 6px;
}

/* View All Button */
.products-view-all {
  text-align: center;
  margin-top: 50px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #2e8b57;
  padding: 16px 35px;
  border: 2px solid #2e8b57;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-btn i {
  transition: transform 0.3s ease;
}

.view-all-btn:hover {
  background: #2e8b57;
  color: white;
  box-shadow: 0 10px 30px rgba(46, 139, 87, 0.3);
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/* ========== PRODUCTS SECTION MOBILE RESPONSIVE ========== */
@media (max-width: 1200px) {
  .products-nav-prev {
    left: 10px;
  }

  .products-nav-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .products-section-enhanced {
    padding: 70px 15px;
  }

  .products-title {
    font-size: 32px;
  }

  .products-subtitle {
    font-size: 15px;
  }

  .products-nav {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .products-nav-prev {
    left: 5px;
  }

  .products-nav-next {
    right: 5px;
  }

  .product-image-wrapper {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .products-header {
    margin-bottom: 40px;
  }

  .products-title {
    font-size: 28px;
  }

  .products-nav {
    display: none;
  }

  .product-content {
    padding: 20px;
  }

  .view-all-btn {
    width: 100%;
    justify-content: center;
  }
}



/* Enhanced Contact Section Styles */

/* ========== ENHANCED CONTACT SECTION ========== */
.contact-section-enhanced {
  background: linear-gradient(135deg, #f8fdf9 0%, #e8f5eb 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.contact-section-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 139, 87, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section-enhanced::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 139, 87, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Contact Info Side */
.contact-info-side {
  padding: 40px;
  background: linear-gradient(135deg, #2e8b57 0%, #3cb371 100%);
  border-radius: 20px;
  color: white;
  box-shadow: 0 20px 60px rgba(46, 139, 87, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-info-side::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-info-side::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-info-side h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px 0;
  position: relative;
}

.contact-info-side > p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
}

.contact-info-item .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .icon-box {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.contact-info-item .info-content h4 {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin: 0 0 6px 0;
}

.contact-info-item .info-content p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.contact-info-item .info-content span {
  font-size: 13px;
  opacity: 0.8;
  display: block;
  margin-top: 4px;
}

/* Contact Social */
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: white;
  color: #2e8b57;
  transform: translateY(-4px);
}

/* Contact Form Side */
.contact-form-side {
  background: white;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-side h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.contact-form-side > p {
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
}

.form-enhanced {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  background: #fafafa;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2e8b57;
  background: white;
  box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group.full-width {
  grid-column: span 2;
}

.submit-btn-enhanced {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #2e8b57 0%, #3cb371 100%);
  color: white;
  padding: 16px 35px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
  width: fit-content;
  margin-top: 10px;
}

.submit-btn-enhanced i {
  transition: transform 0.3s ease;
}

.submit-btn-enhanced:hover {
  background: linear-gradient(135deg, #247a4a 0%, #2e8b57 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(46, 139, 87, 0.4);
}

.submit-btn-enhanced:hover i {
  transform: translateX(5px);
}

/* ========== CONTACT SECTION MOBILE RESPONSIVE ========== */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-side {
    order: 2;
  }

  .contact-form-side {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact-section-enhanced {
    padding: 60px 15px;
  }

  .contact-info-side,
  .contact-form-side {
    padding: 30px 25px;
  }

  .contact-info-side h2 {
    font-size: 26px;
  }

  .contact-form-side h3 {
    font-size: 24px;
  }

  .form-row-enhanced {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .contact-info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .submit-btn-enhanced {
    width: 100%;
  }
}
