@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&family=Squada+One&display=swap');

* {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    box-sizing: border-box;
    text-decoration: none !important;
    font-family: "Sora", sans-serif;
}
body {
    padding: 0;
    margin: 0;
    overflow-x: hidden !important;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #006e25 !important;
}

p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    color: #444;
}

.brand-text {
    color: #006e25;
}

.bg-brand {
    background-color: #006e25;
}

.sub-title {
    color: #006e25;
    border: 1px solid #006e25;
    background-color: #cce2d3;
    padding: 4px 10px;
    border-radius: 20px;
}

/* header css start  */
.brand_logo img {
    width: 140px;
    cursor: pointer;
}

.top_icon_contact {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin-right: 10px;
    font-size: 18px;
    color: #006e25;
    transition: all 0.3s ease;
    background-color: #fff;
}

.top_icon_contact:hover {
    background-color: #006e25;
    color: #fff;
    border-color: #006e25;
    transform: scale(1.1);
}


.top_content_contact span {
    font-size: 14px;
    color: #006e25;
    font-weight: 700;
}


.icons_social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    margin: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    background-size: 100% 300%;
    background-position: 0% 5%;
    transition: background-position 0.5s, color 0.5s;
}

.icons_social a:nth-child(1) {
    color: #1976d3;
    background-image: linear-gradient(#fff 53%, #1976d3 50%);
}

.icons_social a:nth-child(2) {
    color: #db6f44;
    background-image: linear-gradient(#fff 53%, #db6f44 50%);
}

.icons_social a:nth-child(3) {
    color: #000;
    background-image: linear-gradient(#fff 53%, #000 50%);
}

.icons_social a:nth-child(4) {
    color: #b5332a;
    background-image: linear-gradient(#fff 53%, #b5332a 50%);
}

.icons_social a:hover {
    background-position: 0% 100%;
    color: #fff;
}



/* header css end  */

/* navbar css start  */
.cstm_nav {
    align-items: center;
    gap: 20px;
}

.cstm_nav .nav-link {
    position: relative;
    display: inline-block;
    padding: 10px 14px;
    overflow: hidden;
    transition: color 0.3s ease;
    font-weight: 600;
}

.cstm_nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: rgba(0, 110, 37, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
    transform: translateX(-50%);
}

.cstm_nav .nav-link:hover::before {
    width: 120%;
}

.cstm_nav .nav-link:hover {
    color: #006e25;
}

.cstm_nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #006e25;
    z-index: 1;
}

.cstm_nav .nav-link.active {
    color: #006e25 !important;
    font-weight: 600;
}

.dropdown-item.active,
.dropdown-item:active {
    color: white;
    text-decoration: none;
    background-color: #006e25;
}

.cstm_nav .nav-link:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.cstm_navbar {
    background: #cce2d3 !important;
    border-bottom: 2px solid #006e25;
    height: 74px;
}

.cstm_nav li a {
    color: #000;
    padding: 14px 14px !important;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;

}

.cstm_nav li a:active {
    color: #fff !important;
    background-color: #006e25;
}

.cstm_nav li a:focus {
    color: #fff !important;
    background-color: #006e25;
}


.cstm_nav li a:hover {
    color: #006e25;
    transition: color 0.3s ease;
}

.dropdown-item:hover {
    color: #fff !important;
    background-color: #006e25 !important;
    transition: color 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
}

.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
    transition: 0.3s ease-in-out;
}

.navbar-toggler {
    border: none !important;
    color: transparent !important;
    background-color: transparent;

}


.active-toggler {
    background-color: transparent !important;
}

.navbar_logo {
    display: none;
}

.navbar-toggler {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    padding: 10px;
}

.custom-toggler-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #006e25;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.custom-toggler-icon::before,
.custom-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #006e25;
    transition: all 0.3s ease-in-out;
}

.custom-toggler-icon::before {
    top: -8px;
}

.custom-toggler-icon::after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}


@media (max-width: 1080px) {
    .navbar_logo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 80px;
        margin-right: auto;
    }

    .top_header {
        display: none;
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #cce2d3;
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease-in-out;
        padding: 20px;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .close-menu {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        color: white;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    .navbar-nav .nav-link {
        font-size: 18px;
        padding: 10px 0;
    }

    .navbar-toggler {
        border: none !important;
        background: transparent;
    }

    .navbar-toggler-icon {
        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns%3D%27http://www.w3.org/2000/svg%27 viewBox%3D%270 0 30 30%27%3E%3Cpath stroke%3D%27rgba%28255, 255, 255, 1%27 stroke-width%3D%272%27 stroke-linecap%3D%27round%27 stroke-miterlimit%3D%2710%27 d%3D%27M4 7h22M4 15h22M4 23h22%27/%3E%3C/svg%3E');
    }

    .cstm_navbar {
        height: 80px;
    }

    .cstm_nav {
        align-items: start;
    }
}


/* slide button design  start*/
.slide-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0;
    background: transparent;
    color: white;
    font-weight: 600;
    border-radius: 999px;
    z-index: 0;
    transition: transform .16s ease, box-shadow .16s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Black base layer */
.slide-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #006e25 0%, #006e25 100%);
    z-index: -2;
    border-radius: inherit;
}

/* Gradient overlay for hover */
.slide-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: black;
    background: linear-gradient(90deg, #006e25 0%, #006e25 100%);
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(.2, .9, .2, 1);
    z-index: -1;
    border-radius: inherit;
}

.slide-btn:hover::after,
.slide-btn:focus::after {
    transform: translateX(0);
}

/* Text + icon always above both layers */
.slide-btn .label,
.slide-btn .ico {
    position: relative;
    z-index: 1;
    color: white;
}

.slide-btn .ico {
    display: inline-block;
    margin-left: 10px;
    transform: translateX(-4px);
    transition: transform .25s ease;
}

.slide-btn:hover .ico {
    transform: translateX(4px);
}
.border-btn {
    background-color: transparent;
    border: none; /* remove original border */
    border-radius: 50px;
    color: white;
    padding: 10px 25px;
    box-shadow: inset 0 0 0 2px #fff; /* inner border */
    transition: 0.3s;
}

.border-btn:hover {
    background-color: #006e25;
    box-shadow: inset 0 0 0 2px #006e25; /* inner border color on hover */
}


/* navbar css end  */





/* footer css start  */

/* LEFT YELLOW PART */
.left-footer {
    background: #006e25;
}

.left-footer p {
    font-size: 16px;
    line-height: 1.6;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: #006e25;
    border: 1px solid white;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {

    background: #000;
}


/* RIGHT BLACK AREA */


.footer-heading {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links,
.footer-contact {
    padding: 0;
    list-style: none;
}

.footer-links li,
.footer-contact li {
    font-size: 17px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-links li i,
.footer-contact li i {
    color: #006e25;
    font-size: 20px;
    margin-right: 10px;
}


.right-footer {
    background-color: #cce2d3;
}

.footer-contact i {
    background: #006e25;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    color: #fff !important;
    font-size: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* BOTTOM COPYRIGHT */
.footer-bottom {
    background: #000;
    font-size: 16px;
    color: #ddd;
}

/* footer css end  */

/* banner page or contact badge css start  */
.hero-banner {
    background: url('../img/about-banner.jpg') center/cover no-repeat;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 150px;
}

.hero-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-banner .content-box {
    position: relative;
    z-index: 2;
}

/* Green wave */
.yellow-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 200px;
    background: #006e25;
    z-index: 1;
    clip-path: polygon(0 40%, 25% 60%, 50% 75%, 75% 60%, 100% 40%, 100% 100%, 0 100%);
}

/* Contact badge */
.contact-badge {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    padding: 25px 45px;
    border-radius: 50px;
    z-index: 2;
    max-width: 480px;
}

@media (max-width: 992px) {
    .contact-badge {
        padding: 15px 15px;
        border-radius: 20px;
        bottom: -45px;
    }

    .contact-badge a {
        font-size: 18px !important;
    }
}

.breadcrumb {
    --bs-breadcrumb-divider: "/";
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

.breadcrumb-item a {
    color: #fff !important;
}

.breadcrumb-item.active {
    color: #fff !important;
}

/* banner page or contact badge css end  */

/* quote section css start  */
.quote_section {
    background: #f5f5f5;
    margin: 60px 0;
}


/* LEFT SIDE: CONTACT INFO */
.quote_left {
    flex: 1 1 45%;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote_contact_list {
    list-style: none;
    padding: 0;
    margin: 20px 0px;
}

.quote_contact_item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.quote_contact_icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #006e25;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    color: #ffffff;
    font-size: 18px;
}

.quote_contact_content {
    display: flex;
    flex-direction: column;
}

.quote_contact_label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #000;
    opacity: 0.8;
}

.quote_contact_value {
    font-size: 16px;
    font-weight: 600;
    color: black;
}

/* RIGHT SIDE: FORM CARD */


/* Floating form card */
.quote_form_card {
    background: #006e25;
    padding: 30px 30px 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 450px;
    margin-top: -30px;
    z-index: 10;
    position: relative;
}

/* small top corners shape like your screenshot */
.quote_form_card::before,
.quote_form_card::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.quote_form_card::before {
    left: -30px;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent #1f2a3c transparent;
}

.quote_form_card::after {
    right: -30px;
    border-width: 30px 0 0 30px;
    border-color: transparent transparent transparent #1f2a3c;
}

/* FORM ELEMENTS */
.quote_form_field {
    margin-bottom: 14px;
}

.quote_form_input,
.quote_form_select,
.quote_form_textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 5px;
    border: 1px solid #dde1e5;
    font-size: 14px;
    color: #333333;
    outline: none;
    resize: vertical;
    background: #ffffff;
    box-sizing: border-box;
}

.quote_form_textarea {
    min-height: 110px;
}

.quote_form_input:focus,
.quote_form_select:focus,
.quote_form_textarea:focus {
    border-color: #006e25;
}

/* BUTTON */
.quote_btn {
    width: 100%;
    padding: 12px 18px;
    border-radius: 5px;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    border: 2px solid #fff;
    transition: 0.5s;
}

.quote_btn:hover {
    background: #000;
    border: 2px solid #000;
}

@media (max-width: 992px) {
    .quote_form_card {
        margin-top: 0;
    }

    .quote_form_card {
        width: 80%;
        margin: -30px auto 0px;
    }
}

/* quote section css end */

.custom-card .icon-box {
    width: 60px;
    height: 60px;
    background: #e6f4ec;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 28px;
    color: #006e25;
}

.custom-card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}








/* KULDEEP */
/*  hero secrion css start */


.cstm_hero_text h1 {
    font-size: 90px !important;
    line-height: 100px;
}

.cstm_hero_box img {
    max-width: 100%;
    height: auto;
}

@media(max-width:1026px) {
    .cstm_hero_text h1 {
        font-size: 40px !important;
        line-height: 50px;
    }

}

@media(max-width: 768px) {
    .cstm_hero_text h1 {
        font-size: 50px !important;
        line-height: 60px;
    }

    .cstm_hero_text h5 {
        font-size: 20px !important;
    }

    .cstm_hero_text {
        margin-top: 40px;
    }
}

@media(max-width: 542px) {
    .cstm_hero_text h1 {
        font-size: 30px !important;
        line-height: 40px;
    }

    .cstm_hero_text {
        margin-top: 0px;
    }

    .cstm_hero_text h5 {
        font-size: 15px !important;
    }
}

/*  hero secrion css end */
/* about seciton css start  */
.about-img {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
}

/* Floating Info Boxes */
.floating-box {
    position: absolute;
    background: #fff;
    padding: 18px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    transition: 0.3s ease;
}

.floating-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.box-1 {
    bottom: 20px;
    right: -20px;
}

@media(max-width: 540px) {
    .box-1 {
        bottom: -35px;
        right: 50px;
    }
}

.icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f2f7f0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #006e25;
}

.tracking-wide {
    letter-spacing: 2px;
}

/* about seciton css end */

/* counter section css start  */
.cstm_info_sec {
    background: #f8f9fa;
}

.cstm_box {
    background: #fff;
    padding: 35px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.cstm_box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.icon_custom {
    font-size: 30px;
    color: #006e25;
    background-color: #cce2d3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    margin-bottom: 12px;
}

.counter {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.cstm_box p {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* counter section css end */
/* service section css start */

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
}

    .service-card:hover{
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    .service-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.service-card .card-body p {
    flex-grow: 1;
}
    .service-img{
        height: 220px;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
    }
    .service-title{
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
    }
    
.service-img {
    height: 220px;
    object-fit: cover;
}
    .call-icon {
    width: 80px;
    height: 80px;
    background: #e8f7ec;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.call-icon i {
    font-size: 35px;
    color: #028a0f;
}
/* service section css end */
/* values section css start */

.value_item {
    padding: 20px 20px;
    margin-top: 40px;
}
.value_item:hover {
    box-shadow: 2px 0px 10px #cce2d3;
    border-radius: 20px;
}

.value_icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    background-color: #cce2d3;
    color: #006e25;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.value_title {
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #006e25;
}

.value_text {
    font-size: 0.95rem;
    max-width: 260px;
    margin: 0 auto;
}

/* Responsive tweaks optional */
@media (max-width: 769px) {
    .value_item {
        padding: 25px 15px;
    }
}

/* values section css end */

.req_call {
    background-image: url('../img/callrequstimg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    z-index: 1;
}

.req_call::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.req_call * {
    position: relative;
    z-index: 5;
}





 .testimonial-section {
      background: #f7f7f7;
      padding: 80px 0;
    }

    .testimonial-title {
      letter-spacing: 2px;
      font-weight: 800;
    }

    .testimonial-card {
      position: relative;
      padding: 40px 32px 32px;
      border-radius: 24px;
      border: 1px solid #e0e0e0;
      background: #ffffff;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
      height: 100%;
    }

    .testimonial-card .quote-icon {
      font-size: 40px;
      position: absolute;
      top: 18px;
      left: 24px;
      opacity: 0.15;
    }

    .testimonial-text {
      font-size: 0.975rem;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .testimonial-footer {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .play-btn {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 2px solid #000;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .client-name {
      font-weight: 700;
      margin-bottom: 2px;
    }

    .client-role {
      font-size: 0.8rem;
      opacity: 0.7;
    }

    .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background-color: #000;
      opacity: 0.3;
    }

    .carousel-indicators .active {
      width: 26px;
      opacity: 1;
    }

    @media (max-width: 767.98px) {
      .testimonial-card {
        margin-bottom: 24px;
      }
    }




/* testimonial section css start   */
.premium-testi-section {
    position: relative;
    background: url('../img/about-image.jpg') center/cover no-repeat;
    padding: 80px 0;
    color: #fff;
}

.testi-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Heading */
.testi-main-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* Testimonial Box */
.testi-box {
    position: relative;
    border: 2px solid #ffcd00;
    padding: 40px 35px;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}


/* Testimonial Text */
.testi-text {
    font-size: 18px;
    line-height: 1.7;
    color: white;
}

/* Author */
.testi-author {
    margin-top: 20px;
    font-weight: 700;
}

/* FIXED BEAUTIFUL ARROWS - UPDATED */
.testi-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10 !important;
}

.testi-arrow i {
    font-size: 26px;
    color: #fff;
}

/* Position arrows little OUTSIDE like screenshot */
.carousel-control-prev {
    left: -60px !important;
}

.carousel-control-next {
    right: -60px !important;
}

/* Mobile Fix (move arrows inside on small screens) */
@media(max-width: 768px) {
    .carousel-control-prev {
        left: 10px !important;
    }

    .carousel-control-next {
        right: 10px !important;
    }

    .testi-arrow {
        width: 45px;
        height: 45px;
    }

    .testi-arrow i {
        font-size: 20px;
    }
}
@media (max-width: 1080px) {
.carousel-control-prev {
    left: 0px !important;
}
.carousel-control-next {
    right: 0px !important;
}
}

/* testimonial section css end   */

/*call now button start*/

.call-buton .cc-calto-action-ripple {
	z-index: 99999;
	position: fixed;
	right: 15px;
	bottom: 100px;
	background: #006e25;
	width: 3rem;
	height: 3rem;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none; }
	.call-buton .cc-calto-action-ripple i {
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 1.2rem; }
	.call-buton .cc-calto-action-ripple:hover i {
	  -webkit-transform: rotate(135deg);
	  transform: rotate(135deg); }
  
 @-webkit-keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 
            0 4px 10px rgba(0, 110, 37, 0.2), 
            0 0 0 0 rgba(0, 110, 37, 0.2), 
            0 0 0 5px rgba(0, 110, 37, 0.2), 
            0 0 0 10px rgba(0, 110, 37, 0.2);
        box-shadow: 
            0 4px 10px rgba(0, 110, 37, 0.2), 
            0 0 0 0 rgba(0, 110, 37, 0.2), 
            0 0 0 5px rgba(0, 110, 37, 0.2), 
            0 0 0 10px rgba(0, 110, 37, 0.2);
    }
    100% {
        -webkit-box-shadow: 
            0 4px 10px rgba(0, 110, 37, 0.2), 
            0 0 0 5px rgba(0, 110, 37, 0.2), 
            0 0 0 10px rgba(0, 110, 37, 0.2), 
            0 0 0 20px rgba(0, 110, 37, 0);
        box-shadow: 
            0 4px 10px rgba(0, 110, 37, 0.2), 
            0 0 0 5px rgba(0, 110, 37, 0.2), 
            0 0 0 10px rgba(0, 110, 37, 0.2), 
            0 0 0 20px rgba(0, 110, 37, 0);
    }
}

@keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 
            0 4px 10px rgba(0, 110, 37, 0.2), 
            0 0 0 0 rgba(0, 110, 37, 0.2), 
            0 0 0 5px rgba(0, 110, 37, 0.2), 
            0 0 0 10px rgba(0, 110, 37, 0.2);
        box-shadow: 
            0 4px 10px rgba(0, 110, 37, 0.2), 
            0 0 0 0 rgba(0, 110, 37, 0.2), 
            0 0 0 5px rgba(0, 110, 37, 0.2), 
            0 0 0 10px rgba(0, 110, 37, 0.2);
    }
    100% {
        -webkit-box-shadow: 
            0 4px 10px rgba(0, 110, 37, 0.2), 
            0 0 0 5px rgba(0, 110, 37, 0.2), 
            0 0 0 10px rgba(0, 110, 37, 0.2), 
            0 0 0 20px rgba(0, 110, 37, 0);
        box-shadow: 
            0 4px 10px rgba(0, 110, 37, 0.2), 
            0 0 0 5px rgba(0, 110, 37, 0.2), 
            0 0 0 10px rgba(0, 110, 37, 0.2), 
            0 0 0 20px rgba(0, 110, 37, 0);
    }
}


/*call now button end*/

/*back  to top section css start */
/* BACK TO TOP CONTAINER */
.back-to-top-container {
  position: fixed;
 bottom: 10px;
    right: 8px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85) translateY(25px);
  transition: 0.3s ease-out;
}

/* SHOW ON SCROLL */
.back-to-top-container.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

/* BUTTON */
.back-to-top {
  --fill-pos: 0%;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(#000 calc(50% - 0px), transparent calc(50% - -10px)),
    conic-gradient(#006e25 var(--fill-pos), transparent var(--fill-pos));
  cursor: pointer;
  transition: 0.3s;
}

/* ARROW COLOR */
.arrow-up {
  stroke: #f5f5dc;
  transition: stroke 0.15s ease-out;
}

/* HOVER EFFECT */
.back-to-top:hover .arrow-up {
  stroke: #006e25;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .back-to-top-container {
                bottom: 10px;
        right: 8px;
  }
}

/*back to top section css end */


