* {
    margin: 0px;
    padding: 0px;
    font-family: Poppins, sans-serif;
}

body {
    font-family: Poppins, sans-serif;
}

.top-header {
    background: rgb(245, 245, 245);
    /* padding: 6px 0px 5px; */
    border-bottom: 9px solid rgb(73, 170, 44);
    position: relative;
}

.top-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    width: 240px;
}

.bg-img {
    position: relative;
}

.bg-img img {
    position: absolute;
    width: 47px;
    bottom: -66px;
    left: 53px;
}

.leave-img img {
    position: absolute;
    width: 100px;
    top: 0px;
    left: 0px;
}

.leaf img {
    position: absolute;
    width: 50px;
    top: 66px;
}

.leaf-box img {
    position: absolute;
    width: 76px;
    top: 51px;
    right: 0px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box i {
    color: rgb(73, 170, 44);
    font-size: 18px;
}

.contact-box a {
    text-decoration: none;
    color: rgb(102, 102, 102);
    font-size: 16px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons a {
    font-size: 18px;
    width: 35px;
    height: 35px;
    border: 2px solid rgb(73, 170, 44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgb(73, 170, 44);
    transition: 0.3s;
}

.social-icons a:hover {
    background: rgb(73, 170, 44);
    color: rgb(255, 255, 255);
}

/* ================================
   TOP HEADER - TABLET FIX
================================ */

@media (min-width: 992px) and (max-width: 1100px) {

    .top-header-main {
        flex-wrap: nowrap;
        gap: 12px;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        width: 200px;
    }

    .top-contact {
        gap: 12px;
        flex: 1;
        justify-content: center;
    }

    .contact-box {
        gap: 6px;
        white-space: nowrap;
    }

    .contact-box i {
        font-size: 16px;
    }

    .contact-box a {
        font-size: 13px;
    }

    .social-icons {
        flex-shrink: 0;
        gap: 7px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

}
.mobile-header {
    display: none;
}

.main-header {
     position: sticky;
    top: 0;
    z-index: 999;
    margin-top: -25px;
    transition: all 0.3s ease;
}
.sticky-logo {
    display: none;
    align-items: center;
    flex-shrink: 0;
}

.sticky-logo img {
    width: 225px;
    display: block;
}
.main-header.is-sticky {
    margin-top: 0;
}

.main-header.is-sticky .navbar-main {
    margin-top: 0;
    border-radius: 0 0 25px 25px;
    padding: 5px 10px;
}
/* Sticky Navbar Full Width */
.main-header.is-sticky .container {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.main-header.is-sticky .sticky-logo {
    display: flex;
}

.main-header.is-sticky .menu {
    margin: 9px 0;
}
.navbar-main {
    background: rgb(255, 255, 255);
    border-radius: 60px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 20px;
    border: 2px solid rgb(73, 170, 44);
    margin-top: 23px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 0px;
    margin: 9px;
}

.menu li {
    position: relative;
}

.menu li a {
    text-decoration: none;
    color: rgb(45, 145, 197);
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu li a:hover {
    color: rgb(0, 0, 0);
}

.submenu {
    position: absolute;
    top: 130%;
    left: 0px;
    background: rgb(255, 255, 255);
    width: 220px;
    padding: 10px 0px;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 11%) 0px 10px 25px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    list-style: none;
}

.submenu li {
    width: 100%;
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    color: rgb(51, 51, 51);
    font-size: 15px;
    transition: 0.3s;
}

.submenu li a:hover {
    background: rgb(166, 204, 57);
    color: black;
    padding-left: 28px;
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    top: 115%;
}

.quote-btn a {
    background: rgb(73, 170, 44);
    color: rgb(255, 255, 255);
    padding: 14px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.quote-btn a:hover {
    background: rgb(45, 145, 197);
}
@media (max-width: 1024px) {
    .menu{
        gap: 16px;
    }
    .sticky-logo img{
        width: 180px;
    }
    .menu li a{
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .top-header {
        display: none;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        background: rgb(255, 255, 255);
        border-bottom: 2px solid rgb(73, 170, 44);
        position: sticky;
        top: 0px;
        z-index: 999;
    }

    .mobile-logo img {
        width:225px;
    }

    .menu-toggle {
        width: 45px;
        height: 45px;
        background: rgb(166, 204, 57);
        color: rgb(255, 255, 255);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        cursor: pointer;
        font-size: 22px;
    }

    .main-header {
        margin-top: 0px;
    }

    .navbar-main {
        border-radius: 0px;
        padding: 0px;
        border-width: medium;
        border-style: none;
        border-color: currentcolor;
        border-image: initial;
        box-shadow: none;
        display: block;
        background: transparent;
    }

    .menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 280px;
        height: 90vh;
        background: rgb(255, 255, 255);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 0px;
        transition: 0.4s;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px;
        overflow-y: auto;
        z-index: 999;
        border: 2px solid #a6cc39;
        border-radius: 0px 20px 20px 0px;
    }

    .menu.active {
        left: 0px;
        margin: 0px;
    }

    .menu li {
        width: 100%;
        border-bottom: 1px solid rgb(238, 238, 238);
    }

    .menu li a {
        padding: 14px 0px;
        width: 100%;
        justify-content: space-between;
        font-size: 17px;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        width: 100%;
        box-shadow: none;
        padding: 0;
        display: none;
        background: rgb(248, 248, 248);
        border-radius: 0;
    }

    .submenu li a {
        padding: 12px 15px;
        font-size: 15px;
    }

    .dropdown.active .submenu {
        display: block;
    }

    .quote-btn {
        display: none;
    }
    .sticky-logo img{
        display: none;
    }
}

.main-banner {
    position: relative;
    top: -77px;
    width: 100%;
}

.banner-img img {
    width: 100%;
    object-fit: cover;
    height: 90vh;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgb(255, 255, 255);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: rgb(255, 193, 7) !important;
}

.swiper-button-next, .swiper-button-prev {
    color: rgb(255, 255, 255);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 30px;
}

.banner-text {
    padding: 30px;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.28);
    border-radius: 20px;
}

.banner-text {
    position: absolute;
    top: 40%;
    left: 25%;
}

.banner-text h1 {
    color: white;
    font-size: 50px;
    position: relative;
    animation: 1s ease 0s 1 normal forwards running headingAnimation;
}

.banner-text h1::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    background-color: rgb(255, 255, 255);
    bottom: -10px;
    left: 0px;
    animation: 1s ease 1s 1 normal forwards running lineAnimation;
}

.banner-text p {
    color: rgb(255, 255, 255);
    font-size: 18px;
    margin-top: 18px;
    animation: 1s ease 0.8s 1 normal forwards running paragraphAnimation;
}

@keyframes headingAnimation {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes paragraphAnimation {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes lineAnimation {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .banner-img img {
        height: 60vh;
    }

    .banner-text {
        top: 37%;
        left: 10%;
    }

    .banner-text h1 {
        font-size: 35px;
    }

    .banner-text p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .banner-img img {
        height: 60vh;
    }

    .banner-text {
        top: 37%;
        left: 10%;
    }

    .banner-text h1 {
        font-size: 30px;
    }

    .banner-text p {
        font-size: 17px;
    }
}

@media (max-width: 420px) {
    .banner-img img {
        height: 50vh;
    }

    .banner-text {
        top: 29%;
        left: 0%;
    }

    .banner-text h1 {
        font-size: 25px;
    }

    .banner-text p {
        font-size: 13px;
    }
}

.about-us {
    padding: 80px 0px;
}

.why-choose-images-gold {
    position: relative;
    height: 100%;
    background-image: url("../images/why-choose-image-box-bg.png");
    background-repeat: no-repeat;
    background-position: left bottom 75px;
    background-size: auto;
    margin-right: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.why-choose-image-1-gold {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgb(255, 255, 255);
    border-radius: 0px 0px 12px;
    z-index: 1;
}

.why-choose-image-1-gold::before, .why-choose-image-1-gold::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    mask: url("../images/why-choose-image-corner-shape-gold.svg") 0% 0% / cover no-repeat;
    background-color: var(--bg-color);
}

.why-choose-image-1-gold::before {
    top: 0px;
    right: -12px;
}

.why-choose-image-1-gold::after {
    bottom: auto;
    left: 7.552vw;
}

.why-choose-image-1-gold figure {
    display: block;
    border-width: medium 20px 20px medium;
    border-style: none solid solid none;
    border-color: currentcolor rgb(255, 255, 255) rgb(255, 255, 255) currentcolor;
    border-image: initial;
    border-radius: 12px;
}

.why-choose-image-1-gold figure img {
    width: 100%;
    max-width: 360px;
    object-fit: cover;
    border-radius: 12px;
}

.why-choose-image-2-gold {
    padding-left: 7.552vw;
    height: 100%;
}

.why-choose-image-2-gold figure {
    position: relative;
    display: block;
    height: 100%;
    border-radius: 12px;
}

.why-choose-image-2-gold figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.1643;
    object-fit: cover;
    border-radius: 12px;
}

.why-choose-counter-box-gold {
    position: absolute;
    right: 0px;
    bottom: 0px;
    max-width: 300px;
    background: rgb(255, 255, 255);
    border-width: 20px 20px medium;
    border-style: solid solid none;
    border-color: rgb(255, 255, 255) rgb(255, 255, 255) currentcolor;
    border-image: initial;
    border-radius: 12px 0px 0px;
}

.why-choose-counter-box-gold::before, .why-choose-counter-box-gold::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    mask: url("../images/why-choose-counter-box-corner-shape-gold.png") 0% 0% / cover no-repeat;
    background-color: var(--bg-color);
}

.why-choose-counter-box-gold::before {
    top: -32px;
    right: -20px;
}

.why-choose-counter-box-gold::after {
    bottom: 0px;
    left: -32px;
}

.why-choose-counter-body-gold {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: rgb(166, 204, 57);
    border-radius: 12px;
    padding: 30px 20px;
}

.why-choose-counter-box-gold .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.why-choose-counter-box-gold .icon-box::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    background: rgb(45, 145, 197);
    border-radius: 50%;
    transition: 0.4s ease-in-out;
}

.why-choose-counter-box-gold:hover .icon-box::before {
    transform: scale(1);
}

.why-choose-counter-box-gold .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: 0.4s ease-in-out;
}

.why-choose-counter-box-gold:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.why-choose-counter-content-gold {
    width: calc(100% - 65px);
}

.why-choose-counter-content-gold h2 {
    font-size: 40px;
    line-height: 1em;
}

.why-choose-counter-content-gold p {
    margin: 5px 0px 0px;
    color: black;
    font-size: 12px;
    font-weight: 500;
}

.why-choose-item-list-gold {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-item-gold {
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.why-choose-item-gold .icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.why-choose-item-gold .icon-box::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    background: var(--primary-color);
    border-radius: 50%;
    transition: 0.4s ease-in-out;
}

.why-choose-item-gold:hover .icon-box::before {
    transform: scale(1);
}

.why-choose-item-gold .icon-box img {
    position: relative;
    width: 100%;
    max-width: 40px;
    transition: 0.4s ease-in-out;
}

.why-choose-item-gold:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.why-choose-item-content-gold {
    width: calc(100% - 95px);
}

.why-choose-item-content-gold h3 {
    font-size: 20px;
}

.why-choose-progress-list-gold {
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
    margin-top: 40px;
}

.skills-progress-bar-gold {
    margin-bottom: 30px;
}

.skills-progress-bar-gold:last-child {
    margin-bottom: 0px;
}

.skills-progress-bar-gold .skill-data-gold {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar-gold .skill-data-gold .skill-title-gold, .skills-progress-bar-gold .skill-data-gold .skill-no-gold {
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: var(--primary-color);
}

.skills-progress-bar-gold .skillbar-gold .skill-progress-gold {
    position: relative;
    width: 100%;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar-gold .skillbar-gold .skill-progress-gold .count-bar-gold {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    background: var(--accent-color);
    border-radius: 100px;
}

.why-choose-footer-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.why-choose-author-box-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.why-choose-author-box-gold .author-image figure {
    display: block;
    border-radius: 50%;
}

.why-choose-author-box-gold .author-image figure img {
    width: 100%;
    max-width: 50px;
}

.why-choose-author-content-gold h3 {
    font-size: 20px;
}

.why-choose-author-content-gold p {
    margin: 5px 0px 0px;
}

.section-name h3 {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1em;
    border: 1px solid rgba(128, 128, 128, 0.33);
    border-radius: 40px;
    padding: 8px 15px 8px 30px;
    margin-bottom: 15px;
}

.section-name h3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background: green;
    border-radius: 100px;
    width: 5px;
    height: 5px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 600;
}

.section-title p {
    text-align: justify;
    font-size: 16px;
    margin: 13px 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: black;
    background: rgb(161, 209, 31);
    border-radius: 100px;
    padding: 17px 45px 17px 24px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    z-index: 1;
    text-decoration: none;
    margin-top: 10px;
}

.btn-default::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 12px;
    height: 12px;
    background-image: url("../images/arrow-primary.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
    transition: 0.4s ease-in-out;
}

.btn-default:hover::before {
    filter: brightness(0) invert(1);
}

.btn-default:hover {
    background-color: rgb(45, 145, 197);
    color: rgb(255, 255, 255);
}

.about-points {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-point-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 20px;
    transition: 0.4s;
    border-left: 4px solid rgb(166, 204, 57);
}

.about-point-item:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 10px 25px;
}

.point-icon {
    min-width: 45px;
    height: 45px;
    background: rgb(166, 204, 57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon i {
    color: rgb(255, 255, 255);
    font-size: 18px;
}

.about-point-item p {
    margin: 0px;
    font-size: 16px;
    line-height: 28px;
    color: rgb(85, 85, 85);
    font-weight: 500;
}

@media only screen and (max-width: 1024) {
    .why-choose-images-gold {
        max-width: 700px;
        height: auto;
        margin: 0px auto 30px;
    }

    .why-choose-image-2-gold, .why-choose-image-2-gold figure, .why-choose-image-2-gold figure img {
        height: auto;
    }
}

@media only screen and (max-width: 991px) {
    .about-us {
        padding: 60px 0px;
    }

    .why-choose-us-gold {
        padding: 50px 0px;
    }

    .why-choose-item-gold .icon-box {
        width: 60px;
        height: 60px;
    }

    .why-choose-item-gold .icon-box img {
        max-width: 30px;
    }

    .why-choose-item-content-gold {
        width: calc(100% - 75px);
    }

    .why-choose-progress-list-gold {
        margin-top: 30px;
        padding-top: 30px;
    }

    .why-choose-footer-gold {
        margin-top: 30px;
    }

    .section-name h3 {
        margin-top: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .about-us {
        padding: 50px 0px;
    }

    .why-choose-us-gold {
        padding: 50px 0px;
    }

    .why-choose-item-gold .icon-box {
        width: 60px;
        height: 60px;
    }

    .why-choose-item-gold .icon-box img {
        max-width: 30px;
    }

    .why-choose-item-content-gold {
        width: calc(100% - 75px);
    }

    .why-choose-progress-list-gold {
        margin-top: 30px;
        padding-top: 30px;
    }

    .why-choose-footer-gold {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 420px) {
    .about-us {
        padding: 40px 0px;
    }

    .why-choose-us-gold {
        padding: 50px 0px;
    }

    .why-choose-image-1-gold figure img {
        width: 250px;
    }

    .section-title h2 {
        font-size: 31px;
    }

    .why-choose-item-gold .icon-box {
        width: 60px;
        height: 60px;
    }

    .why-choose-item-gold .icon-box img {
        max-width: 30px;
    }

    .why-choose-item-content-gold {
        width: calc(100% - 75px);
    }

    .why-choose-progress-list-gold {
        margin-top: 30px;
        padding-top: 30px;
    }

    .why-choose-footer-gold {
        margin-top: 30px;
    }
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgb(255, 255, 255);
    color: green;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
    color: rgb(34, 34, 34);
    max-width: 850px;
    margin: auto;
}

.products-section {
    padding: 80px 0px;
    background: url("../images/service-bg-shape.png") rgba(166, 204, 57, 0.31);
    opacity: 10;
    position: relative;
}

.products {
    position: relative;
    padding-top: 70px;
}

.product-box {
    background: rgb(255, 255, 255);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
    border: 1px solid rgb(238, 238, 238);
}

.product-box:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 20px 40px;
}

.product-img {
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
    display: block;
}

.product-box:hover .product-img img {
    transform: scale(1.08);
}

.product-content {
    padding: 25px 20px;
    text-align: center;
    background: rgb(255, 255, 255);
}

.product-content a {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: rgb(34, 34, 34);
    text-decoration: none;
    transition: 0.4s;
    display: inline-block;
}

.product-content a:hover {
    color: rgb(166, 204, 57);
}

.product-content::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: rgb(166, 204, 57);
    margin: 18px auto 0px;
    border-radius: 100px;
    transition: 0.4s;
}

.product-box:hover .product-content::after {
    width: 120px;
    background: rgb(45, 145, 197);
}

.products .swiper-button-next, .products .swiper-button-prev {
    background: rgb(73, 170, 44);
    border-radius: 50%;
    transition: 0.4s;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 20px;
    width: 48px !important;
    height: 48px !important;
    top: -20px !important;
}

.products .swiper-button-next {
    right: 0px !important;
}

.products .swiper-button-prev {
    left: auto !important;
    right: 60px !important;
}

.products .swiper-button-next::after, .products .swiper-button-prev::after {
    display: none;
}

.products .swiper-button-next:hover, .products .swiper-button-prev:hover {
    background: rgb(34, 34, 34);
    transform: translateY(-3px);
}

.swiper-button-next, .swiper-button-prev {
    & ::slotted(svg), & svg {
        display: none;
    }
}

@media (max-width: 1280px) {
  
    .product-content a{
        font-size: 18px;
    } 
}
 @media (max-width: 768px) {
   
    .product-content a{
        font-size: 16px;
    } 
}
.vision-mission {
    padding: 80px 0px;
    background-color: rgb(248, 246, 239);
    opacity: 1;
    position: relative;
    background-image: url("../images/section-bg-1.png");
    background-size: cover;
}

.about-us-item-box-gold {
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 30px;
}

.about-us-item-box-gold.mission-box-gold {
    background: rgb(227, 239, 194);
}

.about-us-item-box-gold.vision-box-gold {
    background: rgb(227, 239, 194);
}

.about-us-item-title-gold h3 {
    font-size: 25px;
    color: black;
}

.about-us-item-header-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.about-us-item-header-gold .icon-box, .about-counter-item-gold .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-us-item-header-gold .icon-box::before, .about-counter-item-gold .icon-box::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    background: rgb(199, 220, 73);
    border-radius: 50%;
    transition: 0.4s ease-in-out;
}

.about-us-item-box-gold.vision-box-gold .about-us-item-header-gold .icon-box::before {
    background: rgb(199, 220, 73);
}

.about-us-item-gold:hover .about-us-item-header-gold .icon-box::before, .about-counter-item-gold:hover .icon-box::before {
    transform: scale(1);
}

.about-us-item-header-gold .icon-box img, .about-counter-item-gold .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: 0.4s ease-in-out;
}

.about-us-item-box-gold.vision-box-gold:hover .about-us-item-header-gold .icon-box img {
    filter: none;
}

.about-us-item-title-gold, .about-counter-item-content-gold {
    width: calc(100% - 65px);
}

.about-us-item-title-gold h3 {
    font-size: 30px;
}

.about-us-item-content-gold p {
    margin: 0px;
}

.about-us-item-box-gold.vision-box-gold .about-us-item-content-gold {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding-bottom: 0px;
}

.about-us-item-box-gold.vision-box-gold .about-us-item-title-gold h3, .about-us-item-box-gold.vision-box-gold .about-us-item-content-gold p {
    color: var(--white-color);
}

.about-us-item-body-gold {
    background: rgb(238, 238, 238);
    border-radius: 12px;
    padding: 20px;
}

.about-counter-item-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.about-counter-item-gold:last-child {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.about-counter-item-content-gold h2 {
    font-size: 40px;
    line-height: 1em;
}

.about-counter-item-content-gold p {
    margin: 5px 0px 0px;
}

.about-client-rating-box-gold {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-client-rating-box-gold .satisfy-client-image {
    margin-left: -10px;
}

.about-client-rating-box-gold .satisfy-client-image:first-child {
    margin-left: 0px;
}

.about-client-rating-box-gold .satisfy-client-image img {
    max-width: 40px;
}

.about-satisfy-client-content-gold ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.about-satisfy-client-content-gold ul li {
    font-size: 16px;
    color: var(--primary-color);
}

.about-satisfy-client-content-gold ul li i {
    color: var(--accent-color);
}

.about-client-rating-body-gold {
    border-top: 1px solid var(--divider-color);
    padding-top: 20px;
    margin-top: 20px;
}

.about-client-rating-content-gold p {
    margin: 0px;
}

.about-client-rating-btn-gold {
    margin-top: 30px;
}

.about-us-image-gold {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.about-us-image-gold figure {
    height: 100%;
    display: block;
    border-radius: 12px;
}

.about-us-image-gold figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.6778;
    object-fit: cover;
    border-radius: 12px;
}

.about-us-item-content-gold p {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
}

.about-us-item-content-gold p::before {
    content: "";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0px;
    top: 3px;
    width: 20px;
    height: 20px;
    background: rgb(25, 135, 84);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.core-value {
    display: flex;
    align-items: start;
    justify-content: start;
}

.core-value i {
    color: green;
    margin-right: 5px;
}

.our-service {
    padding: 50px 0px;
    background-color: rgb(199, 220, 73);
    background-image: url("../images/core-value-cta-box-bg-metal.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-thumb-items {
    position: relative;
}

.testimonial-thumb-items img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

.testimonial-thumb-items::before {
    content: "";
    position: absolute;
    inset: -4px;
    border: 4px dashed rgb(255, 255, 255);
    border-radius: 50%;
}

@keyframes rotateBorder {
    100% {
        transform: rotate(360deg);
    }
}

.testimonial-thumb-items .sm-thumb-1 {
    position: absolute;
    top: 54px;
    left: 78px;
}

@media (max-width: 1199px) {
    .testimonial-thumb-items .sm-thumb-1 {
        display: none;
    }
}

.testimonial-thumb-items .sm-thumb-2 {
    position: absolute;
    top: 235px;
    left: -33px;
}

@media (max-width: 1399px) {
    .testimonial-thumb-items .sm-thumb-2 {
        top: 200px;
    }
}

@media (max-width: 1199px) {
    .testimonial-thumb-items .sm-thumb-2 {
        display: none;
    }
}

.testimonial-thumb-items .sm-thumb-3 {
    position: absolute;
    bottom: 42px;
    left: 70px;
}

@media (max-width: 1199px) {
    .testimonial-thumb-items .sm-thumb-3 {
        display: none;
    }
}

.testimonial-content {
    margin-left: 40px;
}

@media (max-width: 1399px) {
    .testimonial-content {
        margin-left: 0px;
    }
}

.testimonial-content .testi-box-items {
    background-color: rgb(247, 248, 237);
    padding: 40px;
    border-radius: 20px;
    margin-top: 25px;
    position: relative;
}

@media (max-width: 1199px) {
    .testimonial-content .testi-box-items {
        padding: 30px;
    }
}

.testimonial-content .testi-box-items .title {
    font-size: 24px;
    font-weight: 500;
}

.testimonial-content .testi-box-items .text {
    font-size: 20px;
    margin-top: 20px;
    line-height: 150%;
}

@media (max-width: 470px) {
    .testimonial-content .testi-box-items .text {
        font-size: 18px;
    }
}

.testimonial-content .testi-box-items .star {
    color: rgb(231, 225, 72);
    position: absolute;
    top: 40px;
    right: 40px;
}

.testimonial-content .testi-box-items .star i.style-2 {
    color: rgb(208, 208, 208);
}

.testimonial-content .testi-box-items .quote-icon {
    position: absolute;
    top: 65px;
    left: 39%;
}

.service-box {
    padding: 20px;
    background-color: rgb(255, 255, 255);
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-top: 15px;
}

.service-box-title {
    display: flex;
    align-items: start;
    justify-content: start;
}

.service-box-title i {
    font-size: 20px;
    margin-right: 15px;
    color: green;
}

.service-box-title h4 {
    font-size: 24px;
}

.choose-us {
    padding: 40px 0px;
    position: relative;
    background-color: rgb(246, 244, 230);
}

.tree-img {
    position: absolute;
    bottom: 0px;
}

.tree-img-right {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.choose-us-box {
    display: flex;
    align-items: center;
    border-top: 1px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
    padding: 20px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.choose-us-icon i {
    font-size: 30px;
    margin-right: 20px;
}

.choose-us-img {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    width: 150px;
}

.choose-us-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    transform: rotate(15deg);
    border: 1px solid green;
    padding: 10px;
}

.choose-us-box:hover .choose-us-img {
    transform: translateY(-50%) scale(1);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .tree-img {
        display: none;
    }

    .tree-img-right {
        display: none;
    }
}

.footer-section {
    padding: 60px 0px 30px 0px;
    background-color: rgb(31, 61, 44);
    background-image: url("../images/footer-shape2.png");
    position: relative;
}

.footer-logo img {
    width: 200px;
    filter: brightness(1) invert(0);
    background-color: white;
    border-radius: 20px;
    padding: 5px;
}

.footer-heading {
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
    position: relative;
}

.footer-heading::before {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 0px;
    width: 100px;
    height: 2px;
    background-color: rgb(166, 204, 57);
    animation: 2s linear 0s infinite normal none running lineMove;
}

@keyframes lineMove {
    0% {
        transform: scaleX(0);
        transform-origin: left center;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left center;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right center;
    }
}

.about-com p {
    color: white;
    text-align: justify;
}

.footer-heading i {
    font-size: 20px;
    margin-right: 8px;
}

.links ul li {
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

.links ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

.links-contact ul li {
    list-style: none;
}

.links-contact i {
    color: rgb(255, 255, 255);
    font-size: 20px;
    margin-right: 5px;
}

.links-contact a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 17px;
}

.links-contact {
    display: flex;
    align-items: center;
}

.links-contact i {
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.links-contact p {
    color: rgb(255, 255, 255);
    margin-left: 10px;
}

.footer-img {
    position: absolute;
    bottom: 0px;
    left: -70px;
}

.footer-img img {
    width: 45%;
    opacity: 0.5;
}

.footer-img-two {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.footer-img-two img {
    width: 80%;
    opacity: 0.7;
}
@media (max-width:1500px) {
    .footer-img {
        display: none;
    }
    .footer-img-two{
        display: none;
    }
}
.copyright-box{
    background-color: #12291c;
}
.copyright p{
    font-size: 16px;
    color: #fff;
}
/* =========================================
   FLOATING ACTION BUTTONS
========================================= */
.floating-left {
    position: fixed;
    left: 14px;
    bottom: 170px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* =========================================
   CIRCLE BUTTON
========================================= */
.floating-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 21px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    position: relative;
}
/* =========================================
   CALL BUTTON
========================================= */
.call-btn {
    background: #e60000;
}
.call-btn:hover {
    background: #c90000;
    color: #fff;
    transform: scale(1.12);
}
/* =========================================
   WHATSAPP BUTTON
========================================= */
.whatsapp-btn {
    background: #25D366;
}
.whatsapp-btn:hover {
    background: #1ebe5d;
    color: #fff;
    transform: scale(1.12);
}
/* =========================================
   PULSE EFFECT
========================================= */
.call-btn::before,
.whatsapp-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: floatingPulse 2s infinite;
}

.whatsapp-btn::before {
    color: #25D366;
}
.call-btn::before {
    color: #e60000;
}

@keyframes floatingPulse {

    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* =========================================
   RIGHT ENQUIRE NOW BUTTON
========================================= */
.enquiry-floating {
    position: fixed;
    right: 0;
    top: 65%;
    width: 36px;
    height: 125px;
    background:#49aa2c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px 0 0 5px;
    box-shadow: -3px 3px 12px rgba(0, 0, 0, 0.20);
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Text Rotation */
.enquiry-floating span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    transform: rotate(-90deg);
    display: block;
}
/* Hover */

.enquiry-floating:hover {
    width: 45px;
    background: #017abf;
    color: #fff;
}
/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {
    .floating-left {
        left: 12px;
        bottom: 25px;
        gap: 8px;
    }
    .floating-circle {
        width: 45px;
        height: 45px;
        font-size: 19px;
    }
    .enquiry-floating {
        top: auto;
        bottom: 150px;
        width: 34px;
        height: 115px;
    }
    .enquiry-floating span {
        font-size: 11px;
    }
}
/* Small Mobile */
@media (max-width: 480px) {
    .floating-left {
        left: 10px;
        bottom: 20px;
    }
    .floating-circle {
        width: 43px;
        height: 43px;
    }
    .enquiry-floating {
        bottom: 120px;
        height: 105px;
        width: 32px;
    }
    .enquiry-floating span {
        font-size: 10px;
    }
}

/* =========================================
   ENQUIRY POPUP
========================================= */
.inquiry-popup .modal-dialog {
    max-width: 650px;
    width: calc(100% - 30px);
}
.enquiry-modal {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
/* =========================================
   HEADER
========================================= */
.enquiry-header {
    position: relative;
    padding: 22px 55px 20px 25px;
    border: 0;
    background: #1b75bc;
}
.enquiry-header .modal-title {
    margin: 0;
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
/* Close Button */
.enquiry-header .custom-close {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    opacity: 1;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}
.enquiry-header .custom-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) rotate(90deg);
}
/* =========================================
   BODY
========================================= */
.enquiry-body {
    padding: 28px 30px 30px;
    background: #ffffff;
}
.form-info .row {
    row-gap: 0;
}
.form-info .form-group {
    margin-bottom: 17px;
}
/* =========================================
   INPUTS
========================================= */
.form-info .form-control {
    width: 100%;
    height: 52px;
    padding: 12px 16px;
    border: 1px solid #d9dfe5;
    border-radius: 8px;
    background: #f8fafc;
    color: #222;
    font-size: 15px;
    box-shadow: none;
    outline: none;
    transition: all 0.25s ease;
}
.form-info .form-control::placeholder {
    color: #8a929b;
    opacity: 1;
}
.form-info .form-control:hover {
    border-color: #b9c5d1;
    background: #ffffff;
}
.form-info .form-control:focus {
    border-color: #1b75bc;
    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(27, 117, 188, 0.10);
}
/* =========================================
   PHONE SECTION
========================================= */
.phone-wrapper {
    display: flex;
    gap: 7px;
}
.phone-wrapper .country-code {
    width: 100%;
    max-width: 140px;
    flex-shrink: 0;
}
/* =========================================
   TEXTAREA
========================================= */
.form-info textarea.form-control {
    height: auto;
    min-height: 105px;
    resize: vertical;
    line-height: 1.5;
}
/* =========================================
   RECAPTCHA
========================================= */
.recaptcha-size {
    display: flex;
    align-items: center;
    min-height: 78px;
}
/* =========================================
   SUBMIT BUTTON
========================================= */
.submit-btn {
    /* text-align: center; */
    padding-top: 4px;
}
.submit-btn .cm-btn {
    width: 180px;
    height: 50px;
    border: 0;
    border-radius: 7px;
    background: #1b75bc;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.submit-btn .cm-btn:hover {
    background: #155f98;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 117, 188, 0.25);
}
.submit-btn .cm-btn:active {
    transform: translateY(0);
}
/* =========================================
   POPUP BACKDROP
========================================= */
.inquiry-popup {
    background: rgba(0, 0, 0, 0.55);
}
/* =========================================
   POPUP ANIMATION
========================================= */
.inquiry-popup .modal-dialog {
    transform: scale(0.92);
    transition: transform 0.3s ease;
}
.inquiry-popup.show .modal-dialog {
    transform: scale(1);
}
/* =========================================
   MOBILE RESPONSIVE
========================================= */
@media (max-width: 767px) {
    .inquiry-popup .modal-dialog {
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .enquiry-modal {
        border-radius: 14px;
    }
    .enquiry-header {
        padding: 18px 50px 18px 20px;
    }
    .enquiry-header .modal-title {
        font-size: 19px;
    }
    .enquiry-body {
        padding: 22px 18px 24px;
    }
    .form-info .form-group {
        margin-bottom: 14px;
    }
    .form-info .form-control {
        height: 48px;
        font-size: 14px;
    }
    .phone-wrapper {
        gap: 5px;
    }
    .phone-wrapper .country-code {
        max-width: 125px;
    }
    .form-info textarea.form-control {
        min-height: 95px;
    }
    .recaptcha-size {
        overflow: hidden;
    }
    .submit-btn .cm-btn {
        width: 100%;
    }
}
/* =========================================
   SMALL MOBILE
========================================= */
@media (max-width: 400px) {
    .enquiry-body {
        padding: 18px 14px 20px;
    }
    .phone-wrapper .country-code {
        max-width: 110px;
        font-size: 13px;
    }
    .form-info .form-control {
        padding-left: 13px;
        padding-right: 13px;
    }
}
/* =========================================
   INNER BANNER
========================================= */
.inner-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    top: -77px;
    margin-bottom: -77px;
    padding: 150px;
}

/* =========================================
   BANNER IMAGE
========================================= */

.inner-banner-img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.inner-banner-img img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center center;
}


/* =========================================
   DARK OVERLAY
========================================= */

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 0 0 / 87%) 0%,
      rgba(0, 0, 0, 0.35) 50%, rgb(0 0 0 / 60%) 100%);
    z-index: 1;
}


/* =========================================
   CONTENT
========================================= */

.inner-banner .container {
    height: 100%;
    position: relative;
    z-index: 2;

}

.inner-banner-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}


/* =========================================
   PAGE TITLE
========================================= */

.inner-banner-content h1 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 48px;
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: 0.3px;

    position: relative;
}


/* Green underline */

.inner-banner-content h1::after {
    content: "";

    display: block;

    width: 65px;
    height: 4px;

    margin-top: 13px;

    background: #45b52a;

    border-radius: 5px;
}


/* =========================================
   BREADCRUMB
========================================= */

.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.inner-breadcrumb li {
    color: #ffffff;

    font-size: 15px;
    font-weight: 500;
}

.inner-breadcrumb li span {
    color: #45b52a;
    font-weight: 600;
}

.inner-breadcrumb li a {
    color: #ffffff;

    text-decoration: none;

    transition: all 0.3s ease;
}

.inner-breadcrumb li a:hover {
    color: #45b52a;
}


/* =========================================
   IMAGE ZOOM EFFECT
========================================= */

.inner-banner-img img {
    transition: transform 1s ease;
}

.inner-banner:hover .inner-banner-img img {
    transform: scale(1.02);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .inner-banner {
        height: 290px;
    }

    .inner-banner-content h1 {
        font-size: 40px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .inner-banner {
        height: 240px;
    }

    /* .inner-banner-content {
        padding-left: 15px;
        padding-right: 15px;
    } */

    .inner-banner-content h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .inner-banner-content h1::after {
        width: 50px;
        height: 3px;
        margin-top: 9px;
    }

    .inner-breadcrumb {
        gap: 7px;
        /* padding: 2px; */
    }

    .inner-breadcrumb li {
        font-size: 10px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .inner-banner {
        padding: 121px;
    }

    .inner-banner-content h1 {
        font-size: 17px;
    }
}

.what-we-do-gold{
	padding: 100px 0;
}

.what-we-images-gold{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-right: 15px;
}

.what-we-image-box-1-gold{
	position: relative;
	width: 50%;
	margin-bottom: 110px;
	z-index: 1;
}

.what-we-image-1-gold figure{
	display: block;
	border: 5px solid var(--bg-color);
	border-radius: 12px;
}

.what-we-image-1-gold figure img{
	width: 100%;
	aspect-ratio: 1 / 1.17;
	object-fit: cover;
	border-radius: 12px;
}

.what-we-image-box-1-gold .get-in-touch-circle-gold{
	position: absolute;
	right: 0;
	bottom: 0;
	transform: translate(50%, 50%);
	z-index: 2;
}

.what-we-image-box-1-gold .get-in-touch-circle-gold a{
	border: 5px solid var(--bg-color);
}

.what-we-image-box-1-gold .get-in-touch-circle-gold a img:hover{
	animation-play-state: paused;
}

.what-we-image-box-2-gold{
	position: relative;
	width: 50%;
	height: 100%;
	z-index: 0;
}

.what-we-image-2-gold{
	height: 100%;
}

.what-we-image-2-gold figure{
	display: block;
	height: 100%;
	border-radius: 12px;
	margin-left: -140px;
}

.what-we-image-2-gold figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.45;
	object-fit: cover;
	border-radius: 12px;
}

.what-we-item-gold{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 40px;
}

.what-we-item-gold:last-child{
	margin-bottom: 0;
}

.what-we-item-gold::after{
    content: "";
    display: block;
    position: absolute;
	top: 0;
    left: 25px;
    border-left: 1px solid var(--divider-color);
    width: 1px;
    height: calc(100% + 40px);
    z-index: 0;
}

.what-we-item-gold:last-child::after{
    display: none;
}

.what-we-item-gold .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: #adcb05;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	z-index: 1;
}

.what-we-item-gold .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	background: var(--primary-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.what-we-item-gold:hover .icon-box::before{
	transform: scale(1);
}

.what-we-item-gold .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.what-we-item-gold:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.what-we-item-content-gold{
	width: calc(100% - 65px);
}

.what-we-item-content-gold h3{
	font-size: 20px;
}

.what-we-item-content-gold p{
	margin: 10px 0 0;
}

.what-we-btn-gold{
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.what-we-counter-list-gold{
	display: flex;
	flex-wrap: wrap;
	gap: 5.208vw;
	border-top: 1px solid var(--divider-color);
	padding-top: 60px;
	margin-top: 60px;
}

.what-we-counter-item-gold{
	position: relative;
	width: calc(20% - 4.167vw);
	text-align: center;
}

.what-we-counter-item-gold::before{
	content: '';
	position: absolute;
	top: 50%;
	right: -2.604vw;
	transform: translateY(-50%);
	height: 60%;
	width: 1px;
	background: var(--divider-color);
}

.what-we-counter-item-gold:last-child:before,
.what-we-counter-item-gold:nth-child(5n + 5):before{
	display: none;
}

.what-we-counter-item-gold h3{
	font-size: 52px;
}

.what-we-counter-item-gold p{
	margin: 5px 0 0;
}

.our-pricing-gold{
	padding: 100px 0;
}
.what-we-do-gold .section-title h2{
    font-size: 34px;
}
.how-it-works-gold{
	padding: 100px 0;
}
.how-it-works-gold .section-title h2{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

.how-works-item-gold{
	position: relative;
	min-height: 400px;
	height: calc(100% - 30px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: #f6f4e6;
	border-radius: 12px;
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.how-works-item-gold::before{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: #49aa2c36;
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.how-works-item-gold:hover::before{
	height: 100%;
}

.how-works-item-header-gold{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	z-index: 1;
}

.how-works-item-no-gold h2{
	font-size: 52px;
	transition: all 0.4s ease-in-out;
}

.how-works-item-image-gold{
	max-width: 80px;
}

.how-works-item-image-gold figure{
	display: block;
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center center;
    border-radius: 12px;
	overflow: hidden;
}

.how-works-item-gold.box-1 .how-works-item-image-gold figure{
	background-image: url(../images/work-item-shape-1.svg);
	mask-image: url(../images/work-item-shape-1.svg);
}

.how-works-item-gold.box-2 .how-works-item-image-gold figure{
	background-image: url(../images/work-item-shape-2.svg);
	mask-image: url(../images/work-item-shape-2.svg);
}

.how-works-item-gold.box-3 .how-works-item-image-gold figure{
	background-image: url(../images/work-item-shape-3.svg);
	mask-image: url(../images/work-item-shape-3.svg);
}

.how-works-item-gold.box-4 .how-works-item-image-gold figure{
	background-image: url(../images/work-item-shape-4.svg);
	mask-image: url(../images/work-item-shape-4.svg);
}

.how-works-item-image-gold figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.how-works-item-content-gold{
	position: relative;
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.how-works-item-content-gold h3{
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.how-works-item-content-gold p{
	margin: 10px 0 0;
	transition: all 0.4s ease-in-out;
    font-size: 15px;
}

.how-works-item-gold:hover .how-works-item-content-gold{
	border-color: var(--dark-divider-color);
}

.how-works-item-gold:hover .how-works-item-no-gold h2,
.how-works-item-gold:hover .how-works-item-content-gold h3,
.how-works-item-gold:hover .how-works-item-content-gold p{
	color: var(--white-color);
}

@media (max-width: 991px) {
    .what-we-counter-list-gold{
		gap: 20px;
		margin-top: 30px;
		padding-top: 30px;
	}

	.what-we-counter-item-gold{
		width: calc(50% - 16px);
	}

	.what-we-counter-item-gold::before{
		right: -10px;
	}

	.what-we-counter-item-gold h3{
		font-size: 40px;
	}

	.what-we-counter-item-gold p{
		font-size: 14px;
	}

}
/* =========================================
   VIBRANT CONTACT SECTION
========================================= */

.vibrant-contact-section {
    padding: 70px 0;
    background: #f5faf3;
}


/* =========================================
   CONTACT CARD
========================================= */

.vibrant-contact-card {
    height: 100%;
    min-height: 190px;

    padding: 26px 15px;

    display: flex;
    align-items: center;
    gap: 20px;

    position: relative;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e3ecdf;
    border-radius: 15px;

    box-shadow: 0 8px 25px rgba(35, 77, 35, 0.07);

    transition: all 0.35s ease;
}


/* Top Green Line */

.vibrant-contact-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #45a925;

    transform: scaleX(0);
    transform-origin: left;

    transition: all 0.35s ease;
}


/* Hover */

.vibrant-contact-card:hover {
    transform: translateY(-7px);

    border-color: #45a925;

    box-shadow: 0 15px 35px rgba(35, 77, 35, 0.13);
}

.vibrant-contact-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   CONTACT ICON
========================================= */

.vibrant-contact-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf7e5;
    color: #45a925;

    font-size: 24px;

    transition: all 0.35s ease;
}

.vibrant-contact-card:hover .vibrant-contact-icon {
    background: #45a925;
    color: #ffffff;

    transform: rotateY(180deg);
}


/* =========================================
   CONTENT
========================================= */

.vibrant-contact-content {
    flex: 1;
}

.vibrant-contact-content h4 {
    margin: 0 0 9px;
    color: #173b54;
    font-size: 19px;
    font-weight: 700;
}

.vibrant-contact-content a {
    display: block;
    margin-bottom: 5px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.vibrant-contact-content a:hover {
    color: #45a925;
    padding-left: 3px;
}

.vibrant-contact-content p {
    margin: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .vibrant-contact-section {
        padding: 55px 0;
    }
    .vibrant-contact-card {
        margin-bottom: 25px;
        min-height: 175px;
    }
}


/* =========================================
   MOBILE
========================================= */
@media (max-width: 767px) {
    .vibrant-contact-section {
        padding: 45px 0;
    }
    .vibrant-contact-card {
        min-height: auto;
        padding: 25px 20px;
        margin-bottom: 18px;
        gap: 17px;
    }

    .vibrant-contact-icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 21px;
    }

    .vibrant-contact-content h4 {
        font-size: 17px;
    }

    .vibrant-contact-content a {
        font-size: 14px;
    }

    .vibrant-contact-content p {
        font-size: 13px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .vibrant-contact-card {
        padding: 22px 17px;
    }
    .vibrant-contact-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 19px;
    }

    .vibrant-contact-content h4 {
        font-size: 16px;
    }
}
/* =========================================
   VIBRANT ENQUIRY SECTION
========================================= */

.vibrant-enquiry-section {
    padding: 80px 0;
}

.enquiry-row {
    align-items: stretch;
}


/* =========================================
   LEFT IMAGE
========================================= */

.vibrant-enquiry-image {
    height: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(20, 70, 30, 0.12);
}

.vibrant-enquiry-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.vibrant-enquiry-image:hover img {
    transform: scale(1.04);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.vibrant-enquiry-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background: linear-gradient(to top, rgb(24 24 24 / 95%) 0%,
     rgb(255 255 255 / 0%) 45%, rgb(255 255 255 / 2%) 100%);
}

.vibrant-enquiry-caption {
    max-width: 480px;
}

.vibrant-enquiry-caption span {
    display: inline-block;
    margin-bottom: 12px;
    color: #72c84b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.vibrant-enquiry-caption h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.vibrant-enquiry-caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   FORM BOX
========================================= */

.vibrant-enquiry-form {
    height: 100%;
    padding: 42px 40px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e3ecdf;
    box-shadow: 0 15px 40px rgba(20, 70, 30, 0.08);
}


/* =========================================
   FORM HEADING
========================================= */

.vibrant-form-heading {
    margin-bottom: 28px;
}

.vibrant-form-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #45a925;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.vibrant-form-heading h2 {
    margin: 0 0 10px;
    color: #173b54;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.vibrant-form-heading p {
    margin: 0;
    color: #747d82;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   FORM GROUP
========================================= */

.vibrant-enquiry-form .form-group {
    margin-bottom: 16px;
}


/* =========================================
   INPUTS
========================================= */

.vibrant-enquiry-form .form-control {
    width: 100%;
    height: 52px;
    padding: 12px 16px;
    background: #f8faf7;
    border: 1px solid #dce7d9;
    border-radius: 8px;
    color: #243238;
    font-size: 14px;
    outline: none;
    box-shadow: none;
    transition: all 0.25s ease;
}

.vibrant-enquiry-form .form-control::placeholder {
    color: #929a9e;
}

.vibrant-enquiry-form .form-control:hover {
    background: #ffffff;
    border-color: #b9cdb3;
}

.vibrant-enquiry-form .form-control:focus {
    background: #ffffff;
    border-color: #45a925;
    box-shadow: 0 0 0 3px rgba(69, 169, 37, 0.10);
}

/* =========================================
   COUNTRY SELECT
========================================= */

.vibrant-phone-wrap {
    width: 100%;
}

.vibrant-phone-wrap select {
    width: 100%;
}

/* =========================================
   TEXTAREA
========================================= */

.vibrant-enquiry-form textarea.form-control {
    height: 110px;
    resize: vertical;
    line-height: 1.5;
}


/* =========================================
   RECAPTCHA
========================================= */

.vibrant-enquiry-form .recaptcha-size {
    min-height: 78px;
    display: flex;
    align-items: center;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.vibrant-enquiry-form .submit-btn {
    padding-top: 4px;
    text-align: left;
}

.vibrant-enquiry-form .cm-btn {
    min-width: 170px;
    height: 50px;
    padding: 0 30px;
    border: 0;
    border-radius: 7px;
    background: #45a925;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vibrant-enquiry-form .cm-btn:hover {
    background: #36891d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(69, 169, 37, 0.25);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .vibrant-enquiry-section {
        padding: 60px 0;
    }
    .vibrant-enquiry-image {
        min-height: 450px;
        margin-bottom: 30px;
    }
    .vibrant-enquiry-form {
        padding: 35px 30px;
    }
    .vibrant-enquiry-caption h2 {
        font-size: 32px;
    }
    .vibrant-form-heading h2 {
        font-size: 30px;
    }
}


/* =========================================
   MOBILE
========================================= */
@media (max-width: 767px) {

    .vibrant-enquiry-section {
        padding: 45px 0;
    }

    .vibrant-enquiry-image {
        min-height: 360px;

        margin-bottom: 25px;

        border-radius: 14px;
    }

    .vibrant-enquiry-overlay {
        padding: 25px;
    }

    .vibrant-enquiry-caption h2 {
        font-size: 27px;
    }

    .vibrant-enquiry-caption p {
        font-size: 13px;
    }

    .vibrant-enquiry-form {
        padding: 28px 20px;

        border-radius: 14px;
    }

    .vibrant-form-heading {
        margin-bottom: 22px;
    }

    .vibrant-form-heading h2 {
        font-size: 27px;
    }

    .vibrant-enquiry-form .form-control {
        height: 49px;
    }

    .vibrant-enquiry-form textarea.form-control {
        height: 100px;
    }

    .vibrant-enquiry-form .cm-btn {
        width: 100%;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .vibrant-enquiry-image {
        min-height: 320px;
    }

    .vibrant-enquiry-caption h2 {
        font-size: 24px;
    }

    .vibrant-enquiry-form {
        padding: 25px 16px;
    }

    .vibrant-form-heading h2 {
        font-size: 24px;
    }
}
/* =========================================
   VIBRANT LOCATION MAP
========================================= */

.vibrant-location-map {
    padding: 80px 0;
    background: #f5faf3;
}


/* =========================================
   MAP HEADING
========================================= */

.vibrant-map-heading {
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
}

.vibrant-map-heading span {
    display: inline-block;

    margin-bottom: 10px;

    color: #45a925;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.vibrant-map-heading h2 {
    margin: 0 0 14px;

    color: #173b54;

    font-size: 40px;
    font-weight: 700;

    line-height: 1.2;
}

.vibrant-map-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #6c7479;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   MAP WRAPPER
========================================= */

.vibrant-map-wrapper {
    position: relative;

    width: 100%;

    padding: 8px;

    background: #ffffff;

    border: 1px solid #dfe9dc;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(27, 70, 35, 0.10);
}


/* =========================================
   MAP IFRAME
========================================= */

.vibrant-map-wrapper iframe {
    display: block;

    width: 100%;
    height: 450px;

    border: 0;

    border-radius: 12px;
}


/* =========================================
   MAP TOP ACCENT
========================================= */

.vibrant-map-wrapper::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #45a925;

    z-index: 2;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .vibrant-location-map {
        padding: 60px 0;
    }

    .vibrant-map-heading {
        margin-bottom: 30px;
    }

    .vibrant-map-heading h2 {
        font-size: 35px;
    }

    .vibrant-map-wrapper iframe {
        height: 400px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .vibrant-location-map {
        padding: 45px 0;
    }

    .vibrant-map-heading {
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .vibrant-map-heading span {
        font-size: 13px;
    }

    .vibrant-map-heading h2 {
        font-size: 29px;
    }

    .vibrant-map-heading p {
        font-size: 14px;
    }

    .vibrant-map-wrapper {
        padding: 5px;
        border-radius: 13px;
    }

    .vibrant-map-wrapper iframe {
        height: 350px;
        border-radius: 9px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .vibrant-map-heading h2 {
        font-size: 25px;
    }

    .vibrant-map-wrapper iframe {
        height: 300px;
    }
}
.product-details{
    padding: 80px 0px;
}
/* =========================================
   VIBRANT CAREER SECTION
========================================= */

.vibrant-career-section {
    padding: 90px 0;
    /* background: #f5faf3; */
    position: relative;
}


/* =========================================
   LEFT CONTENT
========================================= */

.vibrant-career-content {
    padding-right: 35px;
}

.vibrant-career-heading {
    margin-bottom: 30px;
}

.vibrant-career-heading span,
.vibrant-career-form-heading span {
    display: inline-block;
    color: #45a925;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vibrant-career-heading h2 {
    color: #173b54;
    font-size: 37px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 18px;
}

.vibrant-career-heading h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #45a925;
    border-radius: 10px;
    margin-top: 15px;
}

.vibrant-career-heading p {
    color: #66727a;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    max-width: 560px;
}


/* =========================================
   CAREER IMAGE
========================================= */

.vibrant-career-image {
    width: 100%;
    margin-top: 30px;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(23, 59, 84, 0.10);
}

.vibrant-career-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.vibrant-career-image:hover img {
    transform: scale(1.03);
}


/* =========================================
   FORM BOX
========================================= */

.vibrant-career-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(23, 59, 84, 0.10);
    border: 1px solid #e5eee1;
    position: relative;
    overflow: hidden;
}

.vibrant-career-form-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #45a925;
}


/* =========================================
   FORM HEADING
========================================= */

.vibrant-career-form-heading {
    margin-bottom: 28px;
}

.vibrant-career-form-heading h2 {
    color: #173b54;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
}

.vibrant-career-form-heading p {
    color: #77838a;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================
   FORM INPUTS
========================================= */

.career-form input[type="text"],
.career-form input[type="email"],
.career-form textarea {
    width: 100%;
    border: 1px solid #dce7d9;
    background: #f8fbf7;
    border-radius: 8px;
    padding: 14px 16px;
    color: #173b54;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.career-form input[type="text"],
.career-form input[type="email"] {
    height: 52px;
}

.career-form textarea {
    min-height: 110px;
    resize: vertical;
}

.career-form input::placeholder,
.career-form textarea::placeholder {
    color: #8b969b;
}

.career-form input[type="text"]:focus,
.career-form input[type="email"]:focus,
.career-form textarea:focus {
    background: #ffffff;
    border-color: #45a925;
    box-shadow: 0 0 0 3px rgba(69, 169, 37, 0.08);
}


/* =========================================
   RESUME UPLOAD
========================================= */

.vibrant-resume-upload {
    background: #f8fbf7;
    border: 1px dashed #b9ceb2;
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
}

.vibrant-resume-upload:hover {
    border-color: #45a925;
    background: #f4faef;
}

.vibrant-resume-upload span {
    display: block;
    color: #173b54;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.career-form input[type="file"] {
    width: 100%;
    color: #66727a;
    font-size: 13px;
}


/* =========================================
   RECAPTCHA
========================================= */

.career-form .g-recaptcha {
    margin-top: 5px;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.career-submit-btn {
    border: none;
    background: #45a925;
    color: #ffffff;
    padding: 14px 30px;
    min-width: 145px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.career-submit-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.career-submit-btn:hover {
    background: #173b54;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 59, 84, 0.18);
}

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


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .vibrant-career-section {
        padding: 70px 0;
    }

    .vibrant-career-content {
        padding-right: 0;
    }

    .vibrant-career-heading h2 {
        font-size: 36px;
    }

    .vibrant-career-form-box {
        padding: 32px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .vibrant-career-section {
        padding: 55px 0;
    }

    .vibrant-career-heading h2 {
        font-size: 30px;
    }

    .vibrant-career-heading p {
        font-size: 15px;
    }

    .vibrant-career-image {
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .vibrant-career-form-box {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .vibrant-career-form-heading h2 {
        font-size: 27px;
    }

    .career-form input[type="text"],
    .career-form input[type="email"] {
        height: 50px;
    }

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


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .vibrant-career-section {
        padding: 45px 0;
    }

    .vibrant-career-heading h2 {
        font-size: 27px;
    }

    .vibrant-career-form-box {
        padding: 22px 16px;
    }

    .vibrant-career-form-heading h2 {
        font-size: 24px;
    }

    .vibrant-career-form-heading span,
    .vibrant-career-heading span {
        font-size: 12px;
    }
}
/* =========================================
   VIBRANT PRODUCTS SECTION
========================================= */

.vibrant-products-section {
    padding: 90px 0 75px;
}


/* =========================================
   SECTION HEADING
========================================= */

.vibrant-products-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.vibrant-products-heading span {
    display: inline-block;
    color: #45a925;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vibrant-products-heading h2 {
    position: relative;
    color: #173b54;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    padding-bottom: 20px;
}

.vibrant-products-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #45a925;
    border-radius: 10px;
    transform: translateX(-50%);
}


/* =========================================
   PRODUCT CARD
========================================= */

.vibrant-product-card {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(23, 59, 84, 0.10);
    cursor: pointer;
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.vibrant-product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.vibrant-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}


/* =========================================
   DARK SHADE
========================================= */

.vibrant-product-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: all 0.4s ease;
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.vibrant-product-info {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background-color: #ffffff96;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgb(180, 179, 179);
}

.vibrant-product-info a {
    color: #173b54;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}


/* =========================================
   ARROW
========================================= */

.vibrant-product-arrow {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #45a925;
    color: #ffffff;

    transition: all 0.4s ease;
}

.vibrant-product-arrow i {
    font-size: 14px;
    transition: transform 0.3s ease;
}


/* =========================================
   HOVER EFFECT
========================================= */

.vibrant-product-card:hover .vibrant-product-image img {
    transform: scale(1.08);
}

.vibrant-product-card:hover .vibrant-product-arrow {
    background: #ffffff;
    color: #45a925;
    transform: translateX(3px);
}

.vibrant-product-card:hover .vibrant-product-arrow i {
    transform: translateX(3px);
}


/* =========================================
   CARD TOP GREEN LINE
========================================= */

.vibrant-product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #45a925;
    z-index: 5;
    transition: width 0.4s ease;
}

.vibrant-product-card:hover::before {
    width: 100%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .vibrant-products-section {
        padding: 70px 0 55px;
    }

    .vibrant-products-heading {
        margin-bottom: 40px;
    }

    .vibrant-products-heading h2 {
        font-size: 34px;
    }

    .vibrant-product-card {
        height: 350px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .vibrant-products-section {
        padding: 55px 0 40px;
    }

    .vibrant-products-heading {
        margin-bottom: 30px;
    }

    .vibrant-products-heading h2 {
        font-size: 29px;
    }

    .vibrant-product-card {
        height: 500px;
        border-radius: 13px;
    }

    .vibrant-product-info {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .vibrant-product-info a {
        font-size: 16px;
    }

    .vibrant-product-arrow {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .vibrant-products-heading h2 {
        font-size: 26px;
    }

    .vibrant-product-card {
        height: 300px;
    }

    .vibrant-product-info a {
        font-size: 17px;
    }
}