:root {
    --primary-color: #C61D22;
    --secondary-color: #000000;
    --white-color: #ffffff;
    --black-color: #000000;
    --golden-color: #FF9903;
    --lblack-color: #121212;
    --body-bg: #F7F7F5;
    --overlay-color: rgba(0, 0, 0, 0.411);
    --green-color: #0e6118;
    --phone-border-color: #76b466;
    --light-gray-color: #ebebeb;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url("../img/bg.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.logo {
    width: 150px;
}

.btn-white-header {
    position: relative;
    color: var(--secondary-color);
    background-color: var(--white-color);
    font-size: 15px;
    padding: 0 30px;
    min-height: 48px;
    line-height: 48px;
    transition: all 300ms linear 0ms;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    border: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.w-yellow-btn {
    position: relative;
    color: var(--secondary-color);
    background-color: var(--white-color);
    font-size: 15px;
    padding: 10px 30px;
    min-height: 48px;
    line-height: 48px;
    transition: all 300ms linear 0ms;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    border: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-white-header:hover,
.w-yellow-btn:hover {
    background-color: var(--golden-color);
    color: var(--white-color);
}

.btn-white {
    position: relative;
    color: var(--secondary-color);
    background-color: var(--white-color);
    font-size: 15px;
    padding: 0 30px;
    min-height: 48px;
    line-height: 48px;
    transition: all 300ms linear 0ms;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    border: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-white:hover {
    background-color: var(--golden-color);
    color: var(--white-color);
}

.btn {
    position: relative;
    color: var(--white-color);
    background-color: var(--primary-color);
    font-size: 15px;
    padding: 0 30px;
    min-height: 48px;
    line-height: 48px;
    transition: all 300ms linear 0ms;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    border: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn2 {
    position: relative;
    color: var(--white-color);
    background-color: var(--primary-color);
    font-size: clamp(12px, 3vw, 16px);
    padding: clamp(4px, 1vw, 6px) clamp(20px, 3vw, 30px);
    min-height: 48px;
    line-height: 48px;
    transition: all 300ms linear 0ms;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    border: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn2:hover {
    background-color: var(--golden-color);
}

.btn .fa-arrow-right,
.btn2 .fa-arrow-right {
    display: inline-block;
    transform: rotate(-50deg);
    transition: transform 0.3s ease;
}

.btn:hover .fa-arrow-right,
.btn2:hover .fa-arrow-right {
    transform: rotate(0deg);
}

.btn:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.g-btn {
    position: relative;
    font-weight: 700;
    font-size: clamp(12px, 3vw, 16px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    color: var(--primary-color);
    text-decoration: none;
}

.w-explore-btn {
    position: relative;
    font-weight: 700;
    font-size: clamp(12px, 3vw, 16px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    color: var(--golden-color);
    text-decoration: none;
}

.w-explore-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--white-color);

}

.w-explore-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--golden-color);
    transition: width 0.3s ease;
}

.g-btn .fa-arrow-right,
.g-y-btn .fa-arrow-right,
.w-y-btn .fa-arrow-right,
.w-yellow-btn .fa-arrow-right,
.w-explore-btn .fa-arrow-right {
    display: inline-block;
    transform: rotate(-50deg);
    transition: transform 0.3s ease;
}

.g-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.g-btn:hover .fa-arrow-right,
.g-y-btn:hover .fa-arrow-right,
.w-y-btn:hover .fa-arrow-right,
.w-yellow-btn:hover .fa-arrow-right,
.w-explore-btn:hover .fa-arrow-right {
    transform: rotate(0deg);
}

.g-btn:hover::after,
.w-explore-btn:hover::after {
    width: 100%;
}

.g-y-btn {
    position: relative;
    font-weight: 700;
    font-size: clamp(12px, 3vw, 16px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s ease;
}

.w-y-btn {
    position: relative;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    color: var(--white-color);
    text-decoration: none;
    transition: 0.3s ease;
    width: fit-content;
}

.w-y-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--white-color);
}

.w-y-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--golden-color);
    transition: width 0.4s ease;
    z-index: 111;
}


.g-y-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s ease;
}

.g-y-btn:hover,
.w-y-btn:hover {
    color: var(--golden-color);
}

.w-y-btn:hover::before {
    width: 100%;
}

.g-y-btn:hover::after {
    background: var(--golden-color);
}

.iso-logo {
    padding-left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

@media (max-width:500px) {
    .iso-logo {
        font-size: 14px;
        justify-content: space-between;
        gap: 15px
    }

    .waste-collection {
        padding-top: 30px;
    }
}

.nav-link.active {
    color: var(--primary-color);
}

.mobile-nav ul .active {
    color: var(--primary-color);
}

/* Header Section Start */

header {
    background-color: var(--white-color);
}

.phone-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 128, 0, .2);
    border-radius: 50%;

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

    color: white;
    background: #1a7e00;

    animation: ripple 1.5s infinite;
}

@keyframes ripple {

    0% {
        box-shadow: 0 0 0 0 rgba(26, 126, 0, .4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(26, 126, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(26, 126, 0, 0);
    }

}



@media (max-width: 1150px) {

    .call-assistance :nth-child(2) {
        display: none;
    }

    .logo {
        width: 125px;
    }

    .nav-bar ul {
        gap: 20px;
    }
}

@media (max-width: 1024px) {

    .call-assistance .phone-icon {
        display: none;
    }
}

@media (max-width: 912px) {

    .right-head-btn {
        display: none !important;
    }

    #menuBtn {
        display: block;
    }

    .nav-bar {
        display: none;
    }
}


@media (max-width: 768px) {

    .logo {
        width: 125px;
    }
}

/* Header Section End */

/* Hero-Banner Section End  */

.hero-slider {
    width: 100%;
}

.hero-slider .swiper-slide {
    height: auto;
}

.hero-banner {
    min-height: 80vh;
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    position: relative;
}

.hero-banner1 {
    background-image: url('../img/hero-banner/banner1.jpeg');
}

.hero-banner2 {
    background-image: url('../img/hero-banner/banner2.jpeg');
}

.hero-banner3 {
    background-image: url('../img/hero-banner/banner3.jpeg');
}

.hero-banner4 {
    background-image: url('../img/hero-banner/banner4.jpeg');
}

.hero-banner5 {
    background-image: url('../img/hero-banner/banner5.jpeg');
}

.hero-banner6 {
    background-image: url('../img/hero-banner/banner6.jpeg');
}

.hero-banner7 {
    background-image: url('../img/hero-banner/banner7.jpeg');
}

.hero-banner8 {
    background-image: url('../img/hero-banner/banner8.jpeg');
}

.hero-banner9 {
    background-image: url('../img/hero-banner/banner9.jpeg');
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    z-index: 1;
}

.hero-content-wrapper {
    max-width: 700px;
    position: relative;
    z-index: 10;
    padding: 120px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--white-color);
}


.hero-content span {
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 6vw, 45px);
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 30px;
    max-width: 600px;
}

.heroswiper {
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.heroswiper .swiper-pagination {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.heroswiper .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 0;
    background: #ccc;
    opacity: 1;
    margin: 0 4px !important;
}

.heroswiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

@media (max-width: 768px) {

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

    .hero-content-wrapper {
        max-width: 100%;
    }

    .btn,
    .btn-white {
        padding: 0 15px;
        font-size: 10px;
    }

    .hero-banner {
        min-height: 60vh;
    }


}


/* Hero-Banner Section End  */

/* Top Card Section End */

.card-box {
    background-color: var(--white-color);
    padding: 25px;
    border: none;
    border-radius: 5px;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

}

.card-img img {
    margin: auto;
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.5s ease;
}

.card-box:hover .card-img img {
    transform: rotateY(180deg);
}

.card-box:hover {
    transform: translateY(-10px)
}

.card-content h3 {
    text-align: center;
    font-size: clamp(15px, 3vw, 20px);
    color: var(--secondary-color);
    margin: 10px 0;
    font-weight: 700;
}

.card-content p {
    text-align: center;
    font-size: clamp(13px, 2vw, 15px);
    color: var(--lblack-color);
    line-height: 1.8;
}


/* Top Card Section End */

/* Waste Collection Section Start */

.title {
    font-size: clamp(12px, 3vw, 16px);
    font-weight: 600;
    color: var(--primary-color);
    padding-bottom: 10px;
}

.heading {
    max-width: 650px;
    font-size: clamp(15px, 5vw, 35px);
    font-weight: 700;
    line-height: 1.3em;
    color: var(--secondary-color);
}

.heading-banner {
    background-image: url('../img/bg-patern-br.webp');
    background-repeat: no-repeat;
    background-position: bottom right;
    padding: 40px 40px 40px 0px;
    position: relative;
}

.heading-banner img {
    max-width: 100%;
    border: none;
    border-radius: 4px;
}

.heading-banner-title {
    position: absolute;
    margin-inline-start: -40px;
    bottom: 0;
    background-color: var(--white-color);
    border-radius: 4px;
    padding: 35px 40px;
    font-size: clamp(15px, 2vw, 19px);
    font-style: italic;
    font-weight: 500;
    color: var(--secondary-color);
    max-width: 360px;

}

/* Right Content Section */

.content-dsc {
    font-size: clamp(15px, 2vw, 16px);
    line-height: 26px;
    margin-bottom: 14px;
    color: var(--secondary-color);
    text-align: justify;
}

.content-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    padding-bottom: 50px;
}

.border-color-gray {
    border-color: var(--light-gray-color);
}

.values-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;

}

.value-card {

    display: flex;
    gap: 18px;

    background: #fff;

    padding: 24px;

    border-radius: 16px;

    border: 1px solid var(--light-gray-color);

    transition: .35s;

    position: relative;

    overflow: hidden;

}

.value-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 100%;

    background: var(--primary-color);

    transform: scaleY(0);

    transform-origin: top;

    transition: .35s;

}

.value-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.value-card:hover::before {

    transform: scaleY(1);

}

.value-icon {

    width: 70px;
    height: 70px;

    min-width: 70px;

    border-radius: 50%;

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

    background: rgba(198, 29, 34, .08);

    color: var(--primary-color);

    font-size: 40px;

    transition: .35s;

}

.value-card:hover .value-icon {

    background: var(--primary-color);

    color: #fff;

}

.value-content h4 {

    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
    margin-bottom: 10px;


}

.value-content p {

    color: var(--black-color);

    line-height: 1.8;

    font-size: 15px;

}

.full {

    grid-column: 1/-1;

}

@media (max-width:991px) {

    .values-grid {

        grid-template-columns: 1fr;

    }

    .full {

        grid-column: auto;

    }

}

@media (max-width:576px) {

    .value-card {

        flex-direction: column;
        text-align: center;

    }

    .value-icon {

        margin: auto;

    }

}

@media (max-width: 1024px) {

    .left-heading,
    .right-content {
        width: 100%;
    }

    .heading {
        max-width: 100%;
    }

    .heading-banner {
        padding: 20px 0;
    }

    .heading-banner-title {
        position: static;
        margin-inline-start: 0;
        margin-top: 20px;
        max-width: 100%;
        padding: 20px;
    }

    .content-btns {
        padding-bottom: 20px;
    }

}

/* Waste Collection Section End */

/* Collection Services Section Start */


.collection-services .item {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border: 1px solid #ec3c4c;
    border-radius: 19px;
}

.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.mySwiper {
    position: relative;
    padding-bottom: 30px;
    /* space for pagination */
}

.mySwiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    width: auto;
    text-align: right;
}

.mySwiper .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 0;
    background: #ccc;
    opacity: 1;
    margin: 0 4px !important;
}

.mySwiper .swiper-pagination-bullet-active {
    background: var(--golden-color);
}

.collection-services .icon img {
    width: clamp(70px, 8vw, 100px);
    height: clamp(70px, 8vw, 100px);
    padding-bottom: 20px;
}

.collection-services .item-content h3 {
    font-size: clamp(20px, 3vw, 22px);
    color: var(--white-color);
    font-weight: 700;
    padding-bottom: 5px;
}

.collection-services .item-dsc {
    font-size: 14px;
    color: var(--white-color);
    padding: 20px 0px;
}

.collection-services .features ul li {
    font-size: 13px;
    font-weight: 600;
    color: var(--white-color);
    padding-bottom: 5px;
}

.for-btn {
    background-color: var(--light-gray-color);
    color: var(--secondary-color);
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: color 0.3s ease;
}


@media (max-width: 1024px) {

    .collection-services-wrapper {
        gap: 40px;
    }

    .collection-services .item {
        padding: 25px;
    }

    .collection-services .item-content h3 {
        line-height: 1.3;
    }

    .mySwiper .swiper-pagination {
        left: 0;
        right: 0;
        text-align: center;
        width: 100%;
    }

}

/* Collection Services Section End */

/* Recycling Services Section Start */

.small-dsc {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--lblack-color);
    line-height: 27px;
}

.tabs-item h3 {
    font-size: clamp(15px, 3vw, 21px);
    font-weight: 600;
    color: var(--secondary-color);
}

.tabs-item .content {
    font-size: clamp(14px, 2vw, 15px);
    font-weight: 400;
    color: var(--lblack-color);
}

.tabs-item button {
    border-top: 1px solid var(--light-gray-color);
    border-bottom: 1px solid var(--light-gray-color);
}

.heading-banner2 {
    background-image: url('../img/bg-patern-br.webp');
    background-repeat: no-repeat;
    background-position: bottom right;
    padding: 40px 40px 40px 0px;
    position: relative;
}

.heading-banner-title2 img {
    width: clamp(20px, 6vw, 40px);
    height: clamp(20px, 6vw, 40px);
    margin-bottom: 20px;
}

.heading-banner-title2 {
    position: absolute;
    top: 62px;
    right: 64px;
    background-color: #cc2121;
    border-radius: 4px;
    padding: 17px;
    font-size: 15px;
    color: var(--white-color);
    font-weight: 500;
    max-width: 210px;
}

@media (max-width: 1024px) {

    .heading-banner2 {
        padding: 20px 0;
    }

    .heading-banner-title2 {
        position: static;
        max-width: 100%;
        margin-top: 20px;
        padding: 25px;
    }

    .mySwiper2 .swiper-pagination {
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
    }

}

/* Recycling Services Section End */

/* Facilities Services Section Start */

.facilities-card .item {
    background-color: var(--white-color);
}

.facilities-card .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 20px;
}

.facilities-card .item-content {
    padding: 0px 20px 20px 20px;
}

.facilities-card .item-content a {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--lblack-color);
    font-weight: 700;
    line-height: 1.3;
}

.facilities-card .item-content h3 {
    font-size: clamp(13px, 2vw, 14px);
    color: var(--lblack-color);
    padding-top: 15px;
    line-height: 1.6;
}

.facilities-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.facilities-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.mySwiper2 {
    position: relative;
    padding-bottom: 30px;
    /* space for pagination */
}

.mySwiper2 .swiper-pagination {
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    width: auto;
    text-align: right;
}

.mySwiper2 .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 0;
    background: #ccc;
    opacity: 1;
    margin: 0 4px !important;
}

.mySwiper2 .swiper-pagination-bullet-active {
    background: var(--golden-color);
}

@media (max-width: 768px) {

    .mySwiper2 .swiper-pagination {
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
    }

}


/* Brand-Partners Section Start */

.partnerSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.partner-logo img {
    width: auto;
    max-width: 100%;
}

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

/* Brand-Partners Section End */

/* How It Works Section Start */

.how-it-works {
    background-image: url('../img/dummy-overlay.png');
    min-height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.how-it-works::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.825);
    z-index: 1;
}

.how-it-works .title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white-color);
    padding-bottom: 10px;
}

.how-it-works .heading {
    max-width: 550px;
    font-size: clamp(28px, 5vw, 35px);
    font-weight: 700;
    line-height: 1.3em;
    color: var(--white-color);

}

.tabs-section {
    margin-top: 40px;
}

.tabs-wrapper {
    display: flex;
    gap: 40px;
}

.tabs {
    width: 100%;
}

.tab-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 22px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    background: none;
    color: var(--white-color);
    cursor: pointer;
    text-align: left;
}

.tab-btn:nth-child(4) {
    border: none;
}


.tab-btn span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.tab-btn.active span {
    background: #d9d9d9;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .3);

}

.tab-btn:hover span {
    background: #d9d9d9;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .3);
    transition: 0.4s ease;
}

.tab-btn h3 {
    font-size: clamp(14px, 2vw, 15px);
    font-weight: 600;
    margin: 0;
}

.tab-content-wrap {
    width: 100%;
}

.tab-content {
    display: none;
    color: var(--white-color);
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 500;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .tabs-wrapper {
        gap: 40px;
    }

    .tabs-wrapper {
        flex-direction: column;
    }

    .tabs,
    .tab-content-wrap {
        width: 100%;
    }

    .tabs {
        width: 100%;
    }

    .tab-content-wrap {
        width: 100%;
    }

    .how-it-works {
        min-height: 100vh;
    }
}

/* How It Works Section End */

/* Footer Section Start */

footer {
    padding: 20px 0px;
    background-color: var(--primary-color);
}

.newsletter-form input {
    padding: 15px 15px 15px 15px;
    border: 1px solid #ddd;
    color: var(--white-color);
    background: transparent;
}

.social-logos .so-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--white-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 5px;
    outline: 2px solid var(--white-color);
    outline-offset: 5px;
    transition: 0.3s ease;
}

.social-logos .so-icons:hover {
    background-color: var(--golden-color);
    outline: 2px solid var(--golden-color);
}

.footer-menu-head {
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    text-decoration: none;
    padding-bottom: 20px;
}

.navigation-menu .item {
    margin-bottom: 5px;
    text-transform: capitalize;
}

.navigation-menu .item a {
    font-size: 14px;
    color: var(--white-color);
    text-decoration: none;
    position: relative;
    transition: width 0.4s ease;
}

.navigation-menu .item a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: var(--white-color);
    transition: width 0.4s ease;
}

.navigation-menu .item a:hover::before {
    width: 100%;
}

#brp,
#ac-unit {
    scroll-margin-top: 100px;
}

@media (max-width: 1024px) {

    .navigation-menu {
        width: 48%;
    }

    .newsletter-form input {
        padding: 15px 20px;
        width: 100%;
    }

}

@media (max-width: 768px) {

    .navigation-menu {
        width: 100%;
    }

    .footer-menu-head {
        padding-bottom: 15px;
    }

    .newsletter-form {
        text-align: center;
    }

    .newsletter-form input {
        width: 100%;
    }

}

@media (max-width: 640px) {

    .newsletter-form input {
        padding: 14px 16px;
    }

    .footer-title h3 {
        font-size: 16px;
        line-height: 1.5;
    }

}

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 34px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .25);
    z-index: 9999;
    transition: all .3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
        font-size: 26px;
    }
}

/* Home Page End */

/* Contact Us Start */

/* Breadcrum Banner Start */

.breadcrum-banner {
    min-height: 250px;
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    position: relative;
}

.contact-us-section {
    background-image: url('../img/hero-banner/banner1.jpeg');
}

.breadcrum-banner::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--overlay-color)
}

.breadcrum-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.left-section {
    padding-left: 20px;
}

.left-section .motto {
    font-size: 22px;
    color: var(--white-color);
    font-weight: 600;
}


.breadcrum-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.breadcrum-inner h1 {
    color: var(--white-color);
    font-size: clamp(1.4rem, 6vw, 43px);
    line-height: 1.25;
    font-weight: 700;
}

.right-logos {
    display: flex;
    gap: 0.75rem;
    /* gap-3 = 12px */
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
}

.logo-items {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    width: 60px;
    /* w-18 = 72px */
    height: 60px;
    /* h-18 = 72px */
    border-radius: 9999px;
    /* rounded-full */
    overflow: hidden;
    flex-shrink: 0;
}

/* Image styling - replaces w-20 */
.logo-items img {
    width: 5rem;
    /* w-20 = 80px */
    height: auto;
    object-fit: contain;
}

@media (max-width:500px) {
    .breadcrum-wrapper {
        flex-direction: column;
        gap: 20px
    }

    .left-section {
        width: 100% !important;
        padding-left: 0px;
        text-align: center;
    }

    .left-section .motto {
        font-size: 16px;
    }

    .breadcrum-inner {
        width: 100% !important;
    }

    .right-logos {
        padding-right: 0px;
        padding-bottom: 20px;
    }

    .logo-items {
        width: 40px;
        height: 40px;

    }

    .breadcrum-items ul li a {
        font-size: 14px;
    }

    .breadcrum-items ul li {
        font-size: 14px;
    }


    .logo-items img {
        width: 35px;

    }
}

/* Breadcrum Banner End */

/* Contact Forum Section End */

.contact-address .so-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--white-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 5px;
    outline: 2px solid var(--white-color);
    outline-offset: 5px;
    transition: 0.3s ease;
}

.contact-address a {
    color: var(--white-color);
    transition: 0.5s ease;
}

.contact-address i {
    color: var(--green-color);
}

.contact-address a:hover {
    color: var(--golden-color);
}

.contact-address a:hover .so-icons {
    background-color: var(--golden-color);
    outline: 2px solid var(--golden-color);
}

/* Contact Forum Section End */

/* Our Team Section Start */

.our-team .heading {
    max-width: 100%;
    font-size: clamp(15px, 5vw, 35px);
    font-weight: 700;
    line-height: 1.3em;
    color: var(--primary-color);
}

.team-member {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.team-member .so-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white-color);
    background-color: var(--green-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 5px;
    outline: 2px solid var(--green-color);
    outline-offset: 5px;
    transition: 0.3s ease;
}

/* Our Clients Section Page Start */

.client-logo {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 18px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);

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

    transition: all 0.3s ease;
}

.client-logo:hover {
    box-shadow: 0 4px 6px rgba(255, 0, 0, 0.316);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.client-logo:hover img {
    transform: scale(1.1);
}


/* Our Gallery Page Start */

.gallery-img {
    transition: transform 0.5s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* This Made For Certificate Section  */

.no-hover-scale:hover {
    transform: scale(1) !important;
}

.certificates-section .heading {
    margin: auto;
    font-size: clamp(15px, 5vw, 35px);
    font-weight: 700;
    line-height: 1.3em;
    color: var(--white-color);
}

/* Our Gallery Page End */


/* Our Process Page Start */

/* Process Images Tab Section Start */

/* Filter Buttons */
.process-btn {
    padding: 10px 13px;
    border: none;
    border-radius: 8px;
    background: #f3f4f6;
    color: #333;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.process-btn:hover {
    background: #16a34a;
    color: #fff;
}

.process-btn.active {
    background: var(--primary-color);
    color: #fff;
}

/* Gallery Container */
.process-gallery {
    width: 100%;
}

/* Hide all groups by default */
.process-group,
.process-img-tab {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    animation: fadeIn 0.4s ease;
}

/* Show active group */
.process-group.active {
    display: block;
}

.process-group.active .process-img-tab {
    display: grid;
}

/* Images */
.process-group img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flow-chart-img img {
    height: auto;
}

.process-group img:hover {
    transform: scale(1.03);
}

/* Tablet */
@media (max-width: 991px) {

    .process-group,
    .process-img-tab {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-group img {
        height: 240px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .process-group,
    .process-img-tab {
        grid-template-columns: 2fr;
    }

    .process-group img {
        height: 220px;
    }

    .process-btn {
        width: 40%;
        font-size: 13px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mission Vision Section Start  */

.mission-vision {
    overflow: hidden;
}

/*============================*/

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.mission-vision .section-title .heading {
    margin: auto;
    font-size: clamp(15px, 5vw, 35px);
    font-weight: 700;
    line-height: 1.3em;
    color: var(--secondary-color);
}

/*============================*/

.mv-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
}

/*============================*/

.mv-card {

    width: 100%;
    max-width: 550px;

    background: var(--white-color);

    padding: 40px;

    border-radius: 18px;

    text-align: center;

    position: relative;

    transition: .4s;

    border: 2px solid transparent;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .06);

    border-top: 12px solid;
}

.mv-card:hover {

    transform: translateY(-10px);

}

/*============================*/

.mission {

    border-color: var(--primary-color);

}

.vision {

    border-color: var(--golden-color);

}

/*============================*/

.mv-icon {

    width: 90px;
    height: 90px;
    padding: 5px;
    border-radius: 50%;

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

    margin: auto;

    margin-bottom: 15px;

    color: #fff;
    border: 1px solid grey;
    box-shadow: 0 1px 5px grey;


}

.mission .mv-icon {

    background: var(--primary-color);

}

.vision .mv-icon {

    background: var(--golden-color);

}

/*============================*/

.mv-card h3 {

    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);

}

.mv-card p {

    line-height: 1.9;
    color: var(--black-color);
    font-size: 16px;

}

/*============================*/

.center-icon {

    width: 90px;
    height: 90px;
    padding: 10px;
    background: var(--primary-color);

    border-radius: 50%;

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

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 5px solid var(--body-bg);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);

    z-index: 10;

}


/*============================*/



@media (max-width:991px) {

    .mv-wrapper {

        flex-direction: column;
        gap: 30px;

    }

    .center-icon {

        position: relative;

        left: auto;
        top: auto;

        transform: none;

        order: 2;

    }

    .mission {

        order: 1;

    }

    .vision {

        order: 3;

    }

    .mv-card {

        max-width: 100%;

    }

}

/*=========================================
    Operational Performance Section
=========================================*/

.ka-performance-section {
    position: relative;
    overflow: hidden;
}

/*-------------------------
    Heading
--------------------------*/

.ka-performance-heading {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}



.ka-performance-heading .heading {
    margin: auto;
    font-size: clamp(15px, 5vw, 35px);
    font-weight: 700;
    line-height: 1.3em;
    color: var(--black-color);
}


.ka-performance-heading p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 16px;
}

.ka-performance-line {
    width: 90px;
    height: 4px;
    background: var(--primary-color);
    margin: 30px auto 0;
    border-radius: 10px;
}


/*-------------------------
    Wrapper
--------------------------*/

.ka-performance-wrapper {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}


/*-------------------------
    Card
--------------------------*/

.ka-performance-card {

    display: flex;
    flex-direction: column;
    width: calc(25% - 22px);
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 28px 32px;
    border-radius: 18px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .06);
    transition: .35s;
    border: 1px solid #ececec;
}

.ka-performance-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .10);

}


/*-------------------------
    Left
--------------------------*/

.ka-performance-left {

    display: flex;
    align-items: center;

    gap: 22px;

    flex: 1;

}


/*-------------------------
    Icon
--------------------------*/

.ka-performance-icon {

    width: 35px;
    height: 35px;

    border-radius: 18px;

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

    background: linear-gradient(135deg, var(--primary-color), #c6000f);

    color: #fff;

    font-size: 17px;

    flex-shrink: 0;

    transition: .35s;

}

.ka-performance-card:hover .ka-performance-icon {

    transform: rotate(-8deg) scale(1.05);

}


/*-------------------------
    Content
--------------------------*/

.ka-performance-info h4 {

    margin: 0 0 8px;

    font-size: 18px;

    color: #222;

}

/* .ka-performance-info p {

    margin: 0;

    color: #777;

    line-height: 1.7;

    font-size: 15px;

} */


/*-------------------------
    Right
--------------------------*/

.ka-performance-right {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 10px;

}


/*-------------------------
    Progress
--------------------------*/

.ka-progress {

    flex: 1;

    height: 12px;

    background: #e8e8e8;

    border-radius: 30px;

    overflow: hidden;

}

.ka-progress-fill {

    width: 0;

    height: 100%;

    border-radius: 30px;

    background:
        linear-gradient(90deg,
            var(--primary-color),
            #ff4452);

    transition: 1.6s ease;

}


/*-------------------------
    Percentage
--------------------------*/

.ka-progress-percent {

    font-size: 18px;

    font-weight: 700;

    color: var(--primary-color);

    min-width: 60px;

    text-align: right;

}


/*-------------------------
    Footer
--------------------------*/

.ka-performance-footer {

    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

}


.ka-footer-item {

    background: #fff;

    border-radius: 16px;

    padding: 25px;

    display: flex;

    gap: 16px;

    align-items: flex-start;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .06);

    transition: .35s;

}


.ka-footer-item:hover {

    transform: translateY(-5px);

}


.ka-footer-item i {

    width: 55px;

    height: 55px;

    background: var(--primary-color);

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    flex-shrink: 0;

}


.ka-footer-item h5 {

    margin: 0 0 6px;

    color: #222;

    font-size: 18px;

}


.ka-footer-item p {

    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.6;

}

/*==============================
        Laptop
==============================*/

@media (max-width:1200px) {


     .ka-performance-card{
            width: calc(33.33% - 22px);
    }

}


/*==============================
        Tablet
==============================*/

@media (max-width:991px) {

    .ka-performance-card{
            width: calc(50% - 22px);
    }


    .ka-performance-footer {

        grid-template-columns: repeat(2, 1fr);

    }

}


/*==============================
        Mobile
==============================*/

@media (max-width:767px) {

    .ka-performance-heading {
        margin-bottom: 40px;
    }

    .ka-performance-card{
            width: 100%;
    }


    .ka-performance-heading p {
        font-size: 15px;
    }

    .ka-performance-left {

        align-items: flex-start;

        gap: 15px;

    }

    .ka-performance-icon {

        width: 58px;
        height: 58px;

        font-size: 22px;

    }

    .ka-performance-info h4 {

        font-size: 18px;

    }

    .ka-performance-info p {

        font-size: 14px;

    }

    .ka-performance-right {

        gap: 12px;

    }

    .ka-progress {

        height: 10px;

    }

    .ka-progress-percent {

        min-width: 50px;

        font-size: 18px;

    }

    .ka-performance-footer {

        grid-template-columns: 1fr;

        gap: 18px;

    }

}

/* Operating Procedure Section Start */

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: fit-content;
}

/* Operating Procedure Section End */

.my-highlighter .text-center {
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Operating Procedure Section End */

/* Services Page Section Start */

.service-section {
    background: #fff;
}

.service-box {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-alt-bg {
    background-color: #f7f7f7;
}

.service-image {
    overflow: hidden;
    border-radius: 18px;
}

.service-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    transition: .5s;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-content h2 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    color: #1f2937;
    margin: 12px 0 20px;
}

.service-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

.service-content h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-tag {
    display: inline-block;
    background: rgba(0, 150, 90, .1);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.service-list li {
    background: #f8f8f8;
    padding: 14px 18px;
    border-radius: 10px;
    transition: .3s;
    position: relative;
    padding-left: 45px;
    position: relative;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 20px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.service-list li:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-4px);
}

.service-list li:hover::before {
    background: #fff;
    color: var(--primary-color);
}

@media(max-width:767px) {

    .service-box {
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

}


/*=========================================
      SOP SECTION
=========================================*/

.ka-sop-section {
    overflow: hidden;
    position: relative;
}


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

.ka-sop-heading {
    max-width: 780px;
    margin: auto;
}

.ka-sop-heading .heading {
    max-width: 100%;
    font-size: clamp(15px, 5vw, 35px);
    font-weight: 700;
    line-height: 1.3em;
    color: var(--secondary-color);
}

.ka-sop-heading p {
    margin-top: 25px;
    color: var(--black-color);
    line-height: 1.9;
    font-size: 16px;
}


/*=========================================
      GRID
=========================================*/

.ka-sop-grid {
    align-items: stretch;
}


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

.ka-sop-card {

    position: relative;

    background: #fff;

    border-radius: 20px;

    padding: 38px;

    overflow: hidden;

    border: 1px solid #ececec;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .05);

    transition: .4s;

    display: flex;

    flex-direction: column;

    height: 100%;
}

.ka-sop-card:hover {

    transform: translateY(-10px);

    border-color: var(--primary-color);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .09);

}


/*=========================================
      NUMBER
=========================================*/

.ka-sop-number {

    position: absolute;

    top: 18px;

    right: 25px;

    font-size: 82px;

    font-weight: 800;

    color: #f6f6f6;

    line-height: 1;

    user-select: none;

    z-index: 0;

}


/*=========================================
      TOP AREA
=========================================*/

.ka-sop-top {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 30px;

    position: relative;

    z-index: 2;

}


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

.ka-sop-icon {

    width: 74px;

    height: 74px;

    border-radius: 18px;

    background: #fff5f5;

    border: 2px solid var(--primary-color);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    transition: .4s;

}

.ka-sop-icon i {

    font-size: 32px;

    color: var(--primary-color);

    transition: .4s;

}

.ka-sop-card:hover .ka-sop-icon {

    background: var(--primary-color);

}

.ka-sop-card:hover .ka-sop-icon i {

    color: #fff;

}


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

.ka-sop-title {

    flex: 1;

}

.ka-sop-title h3 {

    font-size: 23px;

    color: #222;

    line-height: 1.4;

    margin-bottom: 12px;

    font-weight: 700;

}

.ka-sop-title span {

    width: 60px;

    height: 3px;

    background: var(--primary-color);

    display: block;

    border-radius: 10px;

}


/*=========================================
      LIST
=========================================*/

.ka-sop-card ul {

    margin: 0;

    padding: 0;

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 8px;

    position: relative;

    z-index: 2;

}

.ka-sop-card ul li {

    position: relative;

    padding-left: 32px;

    color: #555;

    line-height: 1.8;

    font-size: 15px;

}


/*=========================================
      RED BULLET
=========================================*/

.ka-sop-card ul li::before {

    content: "";

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: var(--primary-color);

    position: absolute;

    left: 0;

    top: 10px;

}


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

.ka-sop-card:hover .ka-sop-number {

    color: #fff3f3;

}

.ka-sop-card:hover .ka-sop-title h3 {

    color: var(--primary-color);

}

/*=========================================
      RESPONSIVE
=========================================*/

@media (max-width:1199px) {

    .ka-sop-card {
        padding: 32px;
    }

    .ka-sop-title h3 {
        font-size: 21px;
    }

    .ka-sop-number {
        font-size: 72px;
    }

}


@media (max-width:991px) {

    .ka-sop-heading p {
        max-width: 650px;
        margin: 25px auto 0;
    }

    .ka-sop-card {
        padding: 30px;
    }

    .ka-sop-top {
        gap: 16px;
    }

}


@media (max-width:767px) {

    .ka-sop-grid {
        gap: 22px;
    }

    .ka-sop-card {
        padding: 25px;
        border-radius: 18px;
    }

    .ka-sop-icon {

        width: 60px;
        height: 60px;
        border-radius: 14px;

    }

    .ka-sop-icon i {

        font-size: 26px;

    }

    .ka-sop-title h3 {

        font-size: 20px;

    }

    .ka-sop-number {

        font-size: 60px;
        top: 15px;
        right: 18px;

    }


}


@media (max-width:575px) {

    .ka-sop-heading h2 {

        line-height: 1.35;

    }

    .ka-sop-heading p {

        font-size: 15px;
        line-height: 1.8;

    }

    .ka-sop-top {

        flex-direction: column;
        align-items: flex-start;

    }

    .ka-sop-title span {

        margin-top: 10px;

    }

}



/*=========================================
      PREMIUM EFFECTS
=========================================*/

.ka-sop-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 0;

    background: var(--primary-color);

    transition: .45s;

}

.ka-sop-card:hover::before {

    height: 100%;

}


.ka-sop-card::after {

    content: "";

    position: absolute;

    left: -120px;
    top: -120px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(234, 9, 23, .03);

    transition: .5s;

}

.ka-sop-card:hover::after {

    transform: scale(1.25);

}



/*=========================================
      SMOOTH ANIMATION
=========================================*/

.ka-sop-card {

    animation: sopFade .7s ease both;

}

@keyframes sopFade {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/*=========================================
      OPTIONAL STAGGER
=========================================*/

.ka-sop-card:nth-child(2) {

    animation-delay: .15s;

}

.ka-sop-card:nth-child(3) {

    animation-delay: .3s;

}

.ka-sop-card:nth-child(4) {

    animation-delay: .45s;

}

/* SOP Section End  */

/*=========================================
        COMPLIANCE SECTION
=========================================*/

.ka-compliance-section {
    overflow: hidden;
}


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

.ka-compliance-heading {
    max-width: 600px;

}


.ka-compliance-heading p {

    color: var(--black-color);

    line-height: 1.9;

    font-size: 16px;

}


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

.ka-compliance-wrapper {

    align-items: flex-start;

}


/*=========================================
        LEFT PANEL
=========================================*/

.ka-compliance-nav {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


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

.ka-compliance-nav .tab-btn {

    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    width: 100%;

    background: #fff;

    border: none;

    border-left: 4px solid transparent;

    border-radius: 16px;

    padding: 22px;

    text-align: left;

    cursor: pointer;

    transition: .35s;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

}

.ka-compliance-nav .tab-btn:hover {

    transform: translateX(8px);

    border-left-color: var(--primary-color);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}


/*=========================================
        ACTIVE BUTTON
=========================================*/

.ka-compliance-nav .tab-btn.active {

    background: var(--primary-color);

    border-left-color: #222;

}

.ka-compliance-nav .tab-btn.active h4,

.ka-compliance-nav .tab-btn.active small {
    color: var(--white-color);
}

.ka-compliance-nav .tab-btn.active .ka-compliance-count {

    color: var(--primary-color);

}


/*=========================================
        NUMBER
=========================================*/

.ka-compliance-count {

    font-size: 34px;

    font-weight: 700;

    color: var(--primary-color);

    min-width: 50px;

}


/*=========================================
        TEXT
=========================================*/

.ka-compliance-nav h4 {

    margin: 0;

    font-size: 18px;

    color: #222;

    font-weight: 600;

}

.ka-compliance-nav small {

    color: #777;

    font-size: 14px;

}


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

.ka-compliance-content {

    position: relative;

}


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

.ka-content-card {

    background: #fff;

    border-radius: 22px;

    padding: 40px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);

    border: 1px solid #eee;

}


/*=========================================
        TOP
=========================================*/

.ka-content-top {

    display: flex;

    align-items: center;

    gap: 24px;

    margin-bottom: 35px;

}


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

.ka-content-icon {

    width: 82px;

    height: 82px;

    border-radius: 18px;

    border: 2px solid var(--primary-color);

    background: #fff5f5;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .4s;

}

.ka-content-icon i {

    font-size: 34px;

    color: var(--primary-color);

    transition: .4s;

}

.ka-content-card:hover .ka-content-icon {

    background: var(--primary-color);

}

.ka-content-card:hover .ka-content-icon i {

    color: #fff;

}


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

.ka-content-top span {

    display: block;

    color: var(--primary-color);

    font-weight: 600;

    margin-bottom: 6px;

    letter-spacing: .5px;

}

.ka-content-top h3 {

    font-size: 30px;

    color: #222;

    line-height: 1.35;

}


/*=========================================
        LIST
=========================================*/

.ka-content-card ul {

    margin: 0;

    padding: 0;

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.ka-content-card ul li {

    position: relative;

    padding-left: 34px;

    color: var(--black-color);

    font-size: 16px;

    line-height: 1.8;

}


/*=========================================
        BULLET
=========================================*/

.ka-content-card ul li::before {

    content: "";

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: var(--primary-color);

    position: absolute;

    left: 0;

    top: 10px;

}


/*=========================================
        TAB SHOW / HIDE
=========================================*/

.tab-content {

    display: none;

    animation: fadeTab .35s ease;

}

.tab-content.active {

    display: block;

}


@keyframes fadeTab {

    from {

        opacity: 0;

        transform: translateY(15px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

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

.ka-compliance-nav .tab-btn.active::after {

    content: "";

    position: absolute;

    right: -14px;

    top: 50%;

    transform: translateY(-50%);

    width: 0;
    height: 0;

    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid var(--primary-color);

}


/*=========================================
        CARD HOVER
=========================================*/

.ka-content-card {

    transition: .35s;

}

.ka-content-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}


/*=========================================
        LEFT BUTTON HOVER
=========================================*/

.ka-compliance-nav .tab-btn span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    font-weight: 700;
}


/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1199px) {

    .ka-content-card {

        padding: 34px;

    }

    .ka-content-top h3 {

        font-size: 26px;

    }

}


@media(max-width:991px) {

    .ka-compliance-wrapper {

        flex-direction: column;

    }

    .ka-compliance-nav {

        width: 100%;

    }

    .ka-compliance-content {

        width: 100%;

    }

    .ka-compliance-nav .tab-btn.active::after {

        display: none;

    }

}


@media(max-width:767px) {

    .ka-compliance-nav {

        gap: 14px;

    }

    .ka-compliance-nav .tab-btn {

        padding: 18px;

    }

    .ka-compliance-count {

        font-size: 28px;

        min-width: 42px;

    }

    .ka-compliance-nav h4 {

        font-size: 16px;

    }

    .ka-content-card {

        padding: 26px;

    }

    .ka-content-top {

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        margin-bottom: 24px;

    }

    .ka-content-icon {

        width: 70px;
        height: 70px;

    }

    .ka-content-icon i {

        font-size: 30px;

    }

    .ka-content-top h3 {

        font-size: 24px;

    }

    .ka-content-card ul li {

        font-size: 15px;

        line-height: 1.7;

    }

}


@media(max-width:575px) {

    .ka-compliance-heading p {

        font-size: 15px;

    }

    .ka-compliance-nav .tab-btn {

        gap: 14px;

    }

    .ka-content-card {

        border-radius: 18px;

    }

}