.bar-icon::before {
    display: none !important;
    content: none !important;
}

.acpl-header-shell {
    direction: ltr;
    --acpl-navbar-primary: var(--rs-theme-orange);
    --acpl-navbar-primary-dark: #173815;
    --acpl-navbar-accent: var(--rs-theme-yellow);
    --acpl-navbar-text: var(--rs-title-primary);
    --acpl-navbar-soft: rgba(30, 72, 28, 0.08);
    --acpl-navbar-soft-border: rgba(30, 72, 28, 0.12);
    background: var(--rs-white);
    font-family: var(--rs-ff-body);
}

.acpl-header-shell .rs-header-inner {
    padding-inline: 30px;
}

.acpl-header-top-row {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 16px;
}

.acpl-header-brand {
    flex: 0 0 auto;
}

.acpl-header-shell .rs-header-logo-wrapper {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
}

.acpl-header-shell .rs-header-logo img {
    width: auto;
    max-height: 74px;
}

.acpl-header-contact-grid {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.acpl-header-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 14px 18px;
    border: 1px solid var(--acpl-navbar-soft-border);
    border-radius: 14px;
    background: linear-gradient(180deg, var(--rs-white) 0%, #f7fbf6 100%);
}

.acpl-header-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--acpl-navbar-soft);
    color: var(--acpl-navbar-primary);
    font-size: 20px;
}

.acpl-header-contact-text {
    min-width: 0;
}

.acpl-header-contact-label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: var(--rs-ff-title);
    color: var(--acpl-navbar-primary);
}

.acpl-header-contact-value,
.acpl-header-contact-value a,
.acpl-header-contact-value span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    font-family: var(--rs-ff-body);
    color: var(--acpl-navbar-text);
    word-break: break-word;
}

.acpl-header-contact-value a:hover {
    color: var(--acpl-navbar-primary);
}

.acpl-header-shell .rs-header-right {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.acpl-header-shell .rs-header-hamburger .bar-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--acpl-navbar-primary);
    border-radius: 14px;
    background: var(--acpl-navbar-primary);
    box-shadow: 0 10px 24px rgba(30, 72, 28, 0.18);
    transition: all 0.3s ease;
}

.acpl-header-shell .rs-header-hamburger .bar-icon svg line {
    stroke: var(--rs-white);
    transition: stroke 0.3s ease;
}

.acpl-header-shell .rs-header-hamburger .bar-icon:hover {
    background: var(--acpl-navbar-accent);
    border-color: var(--acpl-navbar-accent);
}

.acpl-header-shell .rs-header-hamburger .bar-icon:hover svg line {
    stroke: var(--acpl-navbar-primary-dark);
}

.acpl-header-nav-shell {
    background: linear-gradient(90deg, var(--acpl-navbar-primary-dark) 0%, var(--acpl-navbar-primary) 100%);
    box-shadow: 0 10px 28px rgba(22, 76, 58, 0.14);
}

.acpl-header-nav-row {
    min-height: 64px;
    justify-content: center;
    padding-block: 0;
}

.acpl-header-nav-row .rs-header-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.acpl-header-nav-row .main-menu {
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
}

.acpl-header-nav-row .main-menu > ul {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.acpl-header-nav-row .main-menu li a {
    padding: 22px 14px;
    color: var(--rs-white);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--rs-ff-title);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.acpl-header-nav-row .main-menu > ul > li > a::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    height: 2px;
    background: var(--acpl-navbar-accent);
    opacity: 1;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.acpl-header-nav-row .main-menu > ul > li:hover > a,
.acpl-header-nav-row .main-menu ul li.active > a,
.acpl-header-nav-row .main-menu ul li a.active {
    color: var(--rs-white);
}

.acpl-header-nav-row .main-menu > ul > li:hover > a::before,
.acpl-header-nav-row .main-menu ul li.active > a::before,
.acpl-header-nav-row .main-menu ul li a.active::before {
    transform: scaleX(1);
}

.acpl-header-nav-row .main-menu .submenu li a,
.acpl-header-nav-row .main-menu .mega-menu li a {
    color: var(--acpl-navbar-text);
    font-family: var(--rs-ff-body);
}

.acpl-header-nav-row .main-menu .submenu li a::before,
.acpl-header-nav-row .main-menu .mega-menu li a::before {
    content: none;
}

.rs-sticky-header.acpl-header-shell .acpl-header-top-row {
    min-height: 92px;
    padding-block: 10px;
}

.rs-sticky-header.acpl-header-shell .rs-header-logo img {
    max-height: 60px;
}

.rs-sticky-header.acpl-header-shell .acpl-header-contact-card {
    padding: 10px 14px;
}

.rs-sticky-header.acpl-header-shell .acpl-header-contact-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
}

.rs-sticky-header.acpl-header-shell .acpl-header-contact-label {
    font-size: 11px;
}

.rs-sticky-header.acpl-header-shell .acpl-header-contact-value,
.rs-sticky-header.acpl-header-shell .acpl-header-contact-value a,
.rs-sticky-header.acpl-header-shell .acpl-header-contact-value span {
    font-size: 14px;
}

.rs-sticky-header.acpl-header-shell .acpl-header-nav-row {
    min-height: 56px;
}

.rs-sticky-header.acpl-header-shell .acpl-header-nav-row .main-menu li a {
    padding-block: 18px;
}

@media (max-width: 1399px) {
    .acpl-header-shell .rs-header-inner {
        padding-inline: 22px;
    }

    .acpl-header-top-row {
        gap: 18px;
    }

    .acpl-header-contact-grid {
        gap: 10px;
    }

    .acpl-header-contact-card {
        padding: 12px 14px;
    }

    .acpl-header-nav-row .main-menu li a {
        padding-inline: 10px;
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .acpl-header-shell .rs-header-inner {
        padding-inline: 20px;
    }

    .acpl-header-top-row {
        min-height: 88px;
        padding-block: 12px;
    }

    .acpl-header-shell .rs-header-logo img {
        max-height: 58px;
    }

    .acpl-header-contact-grid,
    .acpl-header-nav-shell {
        display: none;
    }

    .acpl-header-shell .rs-header-right {
        display: flex;
        align-items: center;
    }

    .acpl-header-shell .rs-header-hamburger .bar-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
}

@media (max-width: 575px) {
    .acpl-header-shell .rs-header-inner {
        padding-inline: 14px;
    }

    .acpl-header-top-row {
        min-height: 78px;
        gap: 12px;
        padding-block: 10px;
    }

    .acpl-header-shell .rs-header-logo img {
        max-height: 48px;
    }

    .acpl-header-shell .rs-header-hamburger .bar-icon {
        width: 42px;
        height: 42px;
    }
}

.brand-slider-shell {
    position: relative;
    padding-inline: 70px;
}

.brand-slider-shell .brand-nav {
    position: absolute;
    inset: 50% 0 auto;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

.brand-slider-shell .brand-prev,
.brand-slider-shell .brand-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e481c;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    pointer-events: auto;
}

@media (max-width: 991px) {
    .brand-slider-shell {
        padding-inline: 56px;
    }

    .brand-slider-shell .brand-prev,
    .brand-slider-shell .brand-next {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .brand-slider-shell {
        padding-inline: 38px;
    }

    .brand-slider-shell .brand-prev,
    .brand-slider-shell .brand-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

.partner-section .rs-brand-wrapper {
    display: block !important;
}

.partner-section .rs-section-title-wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.partner-section .rs-brand-item-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 4 per row */
    gap: 30px;
    justify-items: center;
}
@media (max-width: 768px) {
    .partner-section .rs-brand-item-wrapper {
        grid-template-columns: repeat(2, 1fr); /* mobile la 2 per row */
    }
}
#certificate .rs-brand-item {
    text-align: center;
}

#certificate .rs-brand-thumb img {
    max-width: 120px;
    margin-bottom: 10px;
}

.download-btn a {
    display: inline-block;
    font-size: 14px;
    color: #1e481c;
    text-decoration: none;
    border: 1px solid #1e481c;
    padding: 6px 12px;
    border-radius: 5px;
    transition: 0.3s;
}

.download-btn a i {
    margin-right: 5px;
}

.download-btn a:hover {
    background: #1e481c;
    color: #fff;
}
#certificate .rs-brand-item {
    display: block !important; /* important */
    text-align: center;
}

#certificate .rs-brand-thumb {
    margin-bottom: 10px;
}

#certificate .download-btn {
    margin-top: 10px;
}

#certificate .download-btn a {
    display: inline-block;
    border: 1px solid #1e481c;
    padding: 6px 14px;
    border-radius: 6px;
    color: #1e481c;
    text-decoration: none;
}

#certificate .download-btn a:hover {
    background: #1e481c;
    color: #fff;
}
#certificate .rs-brand-item {
    flex-direction: column !important;
    align-items: center !important;
}

@media (max-width: 768px) {
    .rs-header-top {
        display: none !important;
    }
}
.floating_btn {
    position: fixed;
    bottom: 79px;
    right: 4px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.contact_icon {
  background-color: #1e481c;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #1e481c;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}
@keyframes pulsing {
 
  to {
 
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
 
  }
 
}

.doc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .doc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f7f7f7;
    border-radius: 6px;
    padding: 20px 28px;
    cursor: pointer;
    transition: box-shadow 0.2s;
    min-width: 260px;
  }

  .doc-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  }

  .doc-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
  }


  .rs-banner-item-wrapper {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.rs-banner-bg-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Dark overlay */
.rs-banner-bg-thumb::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* Text */
.rs-banner-title {
    font-size: 48px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .rs-banner-title {
        font-size: 28px;
    }
}

.rs-banner-bg-thumb {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.rs-banner-one {
  height: 100vh;
  overflow: hidden;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
  /* height: 100vh !important; */
}

.rs-banner-item-wrapper {
  height: 100vh;
  position: relative;
}



.client-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
}

.client-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.client-card ul {
  padding-left: 18px;
  margin: 0;
}

.client-card li {
  margin-bottom: 6px;
  font-size: 14px;
}

.rs-postbox-item.no-image {
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.rs-footer-widget-email ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rs-footer-widget-email li {
    margin-bottom: 6px;
}

@media (min-width: 1200px) {
    .rs-section-title-1 {
        white-space: nowrap;
    }
}