

  :root {
    --main-green: #62B20F;
    --main-green-dark: #4e8f0c;
  }
  
  /* Buttons row */
  .banner-buttons{
    display:flex;
    gap:16px;
    justify-content:center;
    flex-wrap:wrap;
    padding-top:50px;
  }
  
  /* Base (keeps Bootstrap .btn paddings/fonts, but we override what we need) */
  .banner-btn{
    border-radius: 6px;
    font-weight: 600;
    padding: 12px 28px;
    transition: all .25s ease;
  }
  
  /* Primary */
  .banner-btn--primary{
    background: var(--main-green) !important;
    border-color: #425861 !important;
    color:#fff !important;
    box-shadow: 0 6px 16px rgba(98,178,15,.35);
  }
  
  .banner-btn--primary:hover,
  .banner-btn--primary:focus{
    background: var(--main-green-dark) !important;
    border-color: var(--main-green-dark) !important;
    box-shadow: 0 10px 22px rgba(98,178,15,.45);
    transform: translateY(-2px);
  }
  
  /* Outline */
  .banner-btn--outline{
    background: transparent !important;
    border: 2px solid var(--main-green) !important;
    color: var(--main-green) !important;
  }
  
  .banner-btn--outline:hover,
  .banner-btn--outline:focus{
    background: var(--main-green) !important;
    border-color: var(--main-green) !important;
    color:#fff !important;
    box-shadow: 0 6px 16px rgba(98,178,15,.35);
    transform: translateY(-2px);
  }
  
  /* Click */
  .banner-btn:active{
    transform: translateY(0);
  }
  


  .about-section {
    padding: 80px 0;
    background-color: #f9faf7;
  }
  
  .about-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1f2d1a;
    margin-bottom: 20px;
  }
  
  .section-line {
    width: 60px;
    height: 4px;
    background-color: #62B20F;
    margin-bottom: 15px;
  }
  
  .about-text {
    font-size: 15.5px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  
  .about-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
  }
  
  .about-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #2f2f2f;
  }
  
  .about-list li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #62B20F;
    font-weight: bold;
  }
  
  /* Stats boxes */
  .about-stats .stat-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 28px 20px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
  }
  
  .about-stats .stat-box:hover {
    transform: translateY(-6px);
  }
  
  .about-stats h3 {
    font-size: 36px;
    font-weight: 700;
    color: #62B20F;
    margin-bottom: 6px;
  }
  
  .about-stats span {
    font-size: 14px;
    color: #555;
  }
  
  /* Mobile */
  @media (max-width: 767px) {
    .about-section {
      padding: 60px 0;
    }
  
    .about-content h2 {
      font-size: 28px;
    }
  }



  /* NAV base */
#primary-nav .menu > li > a {
    color: #1f2d1a;
    font-weight: 600;
    transition: all 0.25s ease;
    position: relative;
  }
  
  /* Hover color */
  #primary-nav .menu > li > a:hover,
  #primary-nav .menu > li.active > a {
    color: #62B20F;
  }
  
  /* Underline animation */
  #primary-nav .menu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #62B20F;
    transition: width 0.25s ease;
  }
   
  
  /* Dropdown submenu */
  #primary-nav .sub-menu li a {
    color: #1f2d1a;
    padding: 10px 15px;
    display: block;
    transition: all 0.25s ease;
  }
  
  #primary-nav .sub-menu li a:hover {
    background-color: rgba(98, 178, 15, 0.1);
    color: #62B20F;
  }
  
  /* Flags hover (language switcher) */
  #primary-nav img {
    transition: transform 0.2s ease;
  }
  
  #primary-nav img:hover {
    transform: scale(1.1);
  }
  
  
  
  .services-section{
    padding: 80px 0;
    background: #ffffff;
  }
  
  .section-title{
    font-size: 34px;
    font-weight: 700;
    color: #1f2d1a;
    margin-bottom: 10px;
  }
  
  .section-subtitle{
    color: #555;
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 35px;
  }
  
  .section-line{
    width: 60px;
    height: 4px;
    background: #62B20F;
    margin: 0 0 15px;
  }
  
  .center-line{
    margin-left: auto;
    margin-right: auto;
  }
  
  .services-grid .service-card{
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    padding: 26px 20px;
    margin-top: 20px;
    min-height: 260px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }
  
  .services-grid .service-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:#62B20F;
    transition: width .25s ease;
  }
  
  .services-grid .service-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.10);
  }
  
  .services-grid .service-card:hover:before{
    width:100%;
  }
  
  .service-icon{
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(98,178,15,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
  }
  
  .services-grid h4{
    font-size: 16px;
    font-weight: 700;
    color: #1f2d1a;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  .services-grid p{
    color: #555;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
  }
  
  .services-grid .service-card{
    height: 100%;
    min-height: 305px;
    display: flex;

    flex-direction: column;
    align-items: center;
  }

  .services-grid .service-card h4{
    text-align: center;
  }

  .services-grid .service-card p{
    text-align: center;
  }
  
  
  @media (max-width: 767px){
    .services-section{ padding: 60px 0; }
    .section-title{ font-size: 28px; }
  }
  

  .process-section{
    padding: 80px 0;
    background: #f9faf7;
  }
  
  .process-steps{
    margin-top: 40px;
  }
  
  .process-step{
    background: #ffffff;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    position: relative; 
  }
  
  .process-step:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.10);
  }
  
  .step-number{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #62B20F;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .process-step h4{
    font-size: 16px;
    font-weight: 700;
    color: #1f2d1a;
    min-height: 55px;
    margin-bottom: 10px;
  }
  
  .process-step p{
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
    margin: 0;
  }
  
  /* Duration boxes */
  .process-duration{
    margin-top: 50px;
  }
  
  .duration-box{
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  }
  
  .duration-box h4{
    color: #1f2d1a;
    font-weight: 700;
    margin-bottom: 6px;
  }
  
  .duration-box span{
    font-size: 18px;
    font-weight: 700;
    color: #62B20F;
  }
  
  /* Mobile */
  @media (max-width: 767px){
    .process-section{ padding: 60px 0; }
    .process-step{ margin-bottom: 20px; }
  }
  

  .pricing-section{
    padding: 80px 0;
    background: #ffffff;
  }
  
  /* Pricing cards */
  .pricing-grid .price-card{
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    min-height: 225px; 
    
  }
  
  .pricing-grid .price-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.10);
  }
  
  .price-head h3{
    font-size: 18px;
    font-weight: 700;
    color: #1f2d1a;
    margin-bottom: 15px;
  }
  
  .price-amount{
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .price-amount .currency{
    font-size: 22px;
  }
  
  .price-amount .value{
    font-size: 38px;
    font-weight: 800;
    color: #62B20F;
    line-height: 1;
  }
  
  .price-amount .unit{
    font-size: 14px;
    color: #555;
    font-weight: 600;
  }
  
  .price-note{
    margin-top: 14px;
    color: #555;
    font-size: 14.5px;
    line-height: 1.7;
  }
  
  /* Featured card */
  .price-card.featured{
    border: 2px solid rgba(98,178,15,0.35);
    position: relative;
  }
  
  .price-card.featured:before{
    content: "Tavsiya etiladi";
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(98,178,15,0.12);
    color: #62B20F;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
  }
  
  /* Documents box */
  .docs-box{
    background: #f9faf7;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 26px 24px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  }
  
  .docs-list{
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .docs-list li{
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2f2f2f;
  }
  
  .docs-list li:before{
    content: "✔";
    position: absolute;
    left: 0;
    color: #62B20F;
    font-weight: 800;
  }
  
  .docs-hint{
    margin-top: 18px;
    padding: 14px 16px;
    border-left: 4px solid #62B20F;
    background: #ffffff;
    border-radius: 8px;
    color: #444;
    font-size: 14px;
  }
  
  /* Mobile */
  @media (max-width: 767px){
    .pricing-section{ padding: 60px 0; }
    .price-amount .value{ font-size: 34px; }
  }
  

  /* Reviews */
.reviews-section{
    padding: 80px 0;
    background: #fefefe;
  }
  
  .reviews-grid .review-card{
    background:#fff;
    border-radius:12px;
    padding:28px 22px;
    margin-top: 20px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
    transition: all .25s ease;
    position: relative;
  }
  
  .reviews-grid .review-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.10);
  }
  
  .review-quote{
    font-size: 56px;
    line-height: 1;
    color: rgba(98,178,15,0.25);
    font-weight: 800;
    position: absolute;
    top: 10px;
    right: 18px;
  }
  
  .review-text{
    font-size: 14.5px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 18px;
  }
  
  .review-footer strong{
    display:block;
    color:#1f2d1a;
    font-weight: 800;
    margin-bottom: 2px;
  }
  
  .review-footer span{
    color:#62B20F;
    font-weight: 700;
    font-size: 13px;
  }
  
  /* Map */
  .map-section{
    padding: 80px 0;
    background: #ffffff;
  }
  
  .map-embed{
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
  }
  
  /* Footer */
  .site-footer{
    background: #0f1a0c;
    color: rgba(255,255,255,0.86);
    padding: 55px 0 20px;
  }
  
  .footer-title{
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 14px;
  }
  
  .footer-text{
    margin-bottom: 8px;
    color: rgba(255,255,255,0.82);
  }
  
  .footer-contacts{
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-link{
    color: rgba(255,255,255,0.86);
    text-decoration: none;
    transition: all .2s ease;
  }
  
  .footer-link:hover{
    color: #62B20F;
    text-decoration: none;
  }
  
  .footer-mini-note{
    margin-top: 14px;
    padding: 14px 16px;
    border-left: 4px solid #62B20F;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
  }
  
  .footer-bottom{
    margin-top: 35px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
  }
  
  /* Mobile */
  @media (max-width: 767px){
    .reviews-section, .map-section{ padding: 60px 0; }
    .site-footer{ padding: 45px 0 18px; }
  }
  


  .site-footer-light{
    background: #f9faf7;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 70px 0 25px;
    color: #2f2f2f;
  }
  
  /* Layout */
  .footer-main{
    margin-bottom: 35px;
  }
  
  /* Logo block */
  .footer-logo{
    max-width: 170px;
    margin-bottom: 16px;
  }
  
  .footer-desc{
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
    max-width: 320px;
  }
  
  /* Titles */
  .footer-title{
    font-size: 17px;
    font-weight: 800;
    color: #1f2d1a;
    margin-bottom: 14px;
    position: relative;
  }
  
  .footer-title:after{
    content:"";
    width: 36px;
    height: 3px;
    background: #62B20F;
    display: block;
    margin-top: 6px;
  }
  
  /* Lists */
  .footer-list{
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-list li{
    margin-bottom: 10px;
    font-size: 14.5px;
    color: #444;
  }
  
  .footer-list a{
    color: #444;
    text-decoration: none;
    transition: color .2s ease;
  }
  
  .footer-list a:hover{
    color: #62B20F;
  }
  
  /* CTA */
  .footer-cta{
    display: inline-block;
    margin-top: 18px;
    padding: 12px 26px;
    background: #62B20F;
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(98,178,15,0.35);
    transition: all .25s ease;
  }
  
  .footer-cta:hover{
    background: #4e8f0c;
    color: #fff;
    transform: translateY(-2px);
  }
  
  /* Bottom */
  .footer-bottom-light{
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 18px;
    text-align: center;
    font-size: 13px;
    color: #666;
  }
  
  /* Mobile */
  @media (max-width: 767px){
    .site-footer-light{
      padding: 55px 0 20px;
    }
  
    .footer-logo{
      max-width: 150px;
    }
  
    .footer-desc{
      max-width: 100%;
    }
  
    .footer-main > div{
      margin-bottom: 30px;
    }
  }
  

  /* NAV items – make them smaller */
#primary-nav .menu > li > a {
    font-size: 15px;      /* oldin ~15–16px bo‘lgan */
    font-weight: 600;
    padding: 8px 12px;      /* balandlikni kamaytiradi */
    line-height: 1.2;
  }
  
  /* Nav list alignment */
  #primary-nav .menu {
    display: flex;
    align-items: center;
  }
  
  /* Remove extra height from li */
  #primary-nav .menu > li {
    margin: 0;
    padding: 0;
  }
  
  /* Header overall height control */
  #header {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  
  /* Logo size (slightly smaller, optional but recommended) */
   
  
  /* Language flag size */
  #primary-nav img {
    max-height: 18px;
    width: auto;
  }
  

  .logo1 {
    max-width: 100%;
    height: 130px;
}

@media only screen and (max-width: 990px) {
    .logo1 {
        max-width: 100%;
        height: 100px;
    }
  }

  /* Header flex alignment */
.header-flex {
    display: flex;
    align-items: center;        /* 🔥 vertikal markaz */
    justify-content: space-between;
  }
  
  /* Logo always vertically centered */
  .header-logo {
    display: flex;
    align-items: center;
  }
  
  /* Nav items vertically centered */
  #primary-nav .menu {
    display: flex;
    align-items: center;
  }
  
  /* Remove old floats if template has them */
  #primary-nav,
  #primary-nav ul,
  #primary-nav li {
    float: none;
  }
  
  /* Menu button alignment */
  #primary-nav-button {
    margin: 0;
  }
  


  .lead-section{
    padding: 80px 0;
    background: #f9faf7;
  }
  
  .lead-card{
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 32px 26px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  }
  
  .lead-title{
    font-weight: 800;
    color: #1f2d1a;
  }
  
  .lead-subtitle{
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .lead-btn{
    background: #62B20F;
    color: #fff;
    font-weight: 800;
    padding: 12px 26px;
    border-radius: 6px;
    border: 1px solid #62B20F;
    box-shadow: 0 6px 16px rgba(98,178,15,0.35);
    transition: all .25s ease;
  }
  
  .lead-btn:hover{
    background: #4e8f0c;
    border-color: #4e8f0c;
    transform: translateY(-2px);
  }
  
  .lead-note{
    margin-top: 10px;
    font-size: 12.5px;
    color: #777;
  }
  
  /* Benefits */
  .lead-benefits{
    background: #ffffff;
    border-radius: 12px;
    padding: 34px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 22px rgba(0,0,0,0.05);
    height: 100%;
  }
  
  .lead-benefits h3{
    font-weight: 800;
    color: #1f2d1a;
    margin-bottom: 20px;
  }
  
  .benefits-list{
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .benefits-list li{
    padding-left: 26px;
    margin-bottom: 16px;
    position: relative;
  }
  
  .benefits-list li::before{
    content: "✔";
    position: absolute;
    left: 0;
    color: #62B20F;
    font-weight: 800;
  }
  
  .benefits-list strong{
    display: block;
    color: #1f2d1a;
  }
  
  .benefits-list span{
    font-size: 14px;
    color: #555;
  }
  
  .benefits-box{
    margin-top: 20px;
    padding: 14px 16px;
    background: rgba(98,178,15,0.1);
    border-left: 4px solid #62B20F;
    border-radius: 8px;
    font-size: 14.5px;
    color: #2f2f2f;
  }

  .lead-wrap {
    display: flex;
    align-items: stretch; /* 🔥 asosiy qism */
  }
  
  /* Make both cards fill column height */
  .lead-wrap > div {
    display: flex;
  }
  
  .lead-card,
  .lead-benefits {
    height: 100%;
    width: 100%;
  }
  
  /* Mobile */
  @media (max-width: 767px){
    .lead-section{ padding: 60px 0; }
    .lead-benefits{ margin-top: 25px; }
    .lead-wrap {
        display: block;
      }
  }
  

  .footer-socials{
    margin-top: 14px;
    display: flex;
    gap: 12px;
  }
  
  .footer-socials a{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #62B20F;
    font-size: 18px;
    transition: all 0.25s ease;
    text-decoration: none;
  }
  
  .footer-socials a:hover{
    background: #62B20F;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(98,178,15,0.35);
  }

  
  /* ✅ Mobile hamburger menu fix */
@media (max-width: 991px) {
  /* nav container full width under header */
  #primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
  }

  /* menu items vertical */
  #primary-nav .menu {
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
    width: 100%;
    margin: 0;
    padding: 10px 0;
  }

  #primary-nav .menu > li {
    width: 100%;
  }

  #primary-nav .menu > li > a {
    display: block;
    width: 100%;
    padding: 12px 18px !important;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  /* ✅ dropdown (flags) should NOT be absolute on mobile */
  #primary-nav .sub-menu {
    position: static !important;
    width: 100%;
    box-shadow: none;
    margin: 0;
    padding: 6px 0 10px;
    background: transparent;
  }

  #primary-nav .sub-menu li a {
    padding: 10px 18px;
  }

  /* prevent weird horizontal overflow panel */
  #primary-nav,
  #primary-nav .menu,
  #primary-nav .sub-menu {
    overflow: hidden;
  }
}


@media (max-width: 630px){
  .banner{
    background-image: url("./../img/farmer.webp");
    background-position: center top; /* kerak bo‘lsa o‘zgartirasiz */
    min-height: 520px;              /* xohlasangiz */
  }
}


 /* ✅ Equal-height process cards (no HTML changes) */
.process-steps{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* same height */
}

.process-steps > [class*="col-"]{
  display: flex;        /* let the card stretch */
}

.process-step{
  width: 100%;
  height: 100%;
}


@media (min-width: 992px){
  .process-steps{ display:flex; align-items:stretch; }
  .process-steps > [class*="col-"]{ display:flex; }
  .process-step{ width:100%; height:100%; }
}


.h1-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


 