* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

a {
    text-decoration: none;
}


.header-area {
    border-top: 4px solid #f60000;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
}

.logo-wrapper {
    background: #fff;
    max-width: fit-content;
    padding: 12px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.logo {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.header-btn {
    background: linear-gradient(90deg, #4d0000 0%, #f60000 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 19px;
}

.cta-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1), inset 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.cta-box-header {
    background: linear-gradient(90deg, #4d0000 0%, #f60000 100%);
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1), inset 0px 0px 15px rgba(0, 0, 0, 0.2);

}

.cta-box-header h2 {
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    padding: 10px;
}

.cta-box-body {
    padding: 10px 30px;
}

.form-groups {
    position: relative;
}

.form-control {
    font-size: 15px;
    font-weight: 400;
    padding: .80rem .75rem;
    background-color: #f3f6fa;
}

.form-groups img {
    position: absolute;
    right: 10px;
    top: 13px;
}

.input-group-text {
    background-color: transparent;
    border: none;
}

.primary-btn {
    background: linear-gradient(90deg, #f60000, #4d0000);
    color: #fff;
    border: none;
    font-size: 19px;
    font-weight: 600;
    padding: 10px;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.15) 1px 2px 0px;
}

.area-title {
    color: #f60000;
    font-size: 60px;
    font-weight: 700;
    font-family: "Rajdhani", serif;
}

.area-subtitle {
    font-family: "Rajdhani", serif;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
}

.area-subtitle span {
    position: relative;
}

.area-subtitle span svg {
    width: 100%;
    height: 9px;
    position: absolute;
    bottom: -5px;
    left: 0;
    z-index: -1;
    animation: MoveUpDown 1s linear infinite alternate;
}

@keyframes MoveUpDown {
    0% {
        bottom: -5px;
        fill: #f60000
    }

    100% {
        bottom: -8px;
        fill: #4d0000
    }
}

.icon-list {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}

.icon-list li {
    width: auto;
    max-width: 33.33%;
}

.image-circle {
    width: 63px;
    height: 63px;
    border-radius: 100%;
    background-color: #f60000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px;

}

.icon-text-area {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    padding-left: 10px;
}


@keyframes fadeout {
    0% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        background-color: #4d0000;
    }

    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
        background-color: rgb(95 174 47 / 30%);
    }

}

@keyframes scale {
    0% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }

    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.section-padding {
    padding: 50px 0;
}

.banner-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 50px;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(0 0 0 / 55%);
    width: 100%;
    height: 100%;
}

.banner-section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../img/banner.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-animation: zoomin 10s ease-in infinite;
    animation: zoomin 20s ease-in infinite;
    transition: all .5s ease-in-out;
    overflow: hidden;
}

@-webkit-keyframes zoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}


.banner-section .container {
    position: relative;
    z-index: 9;
}

.area-desc {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 20px;
}

.review-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .75rem;
}

.img-boxes {
    display: flex;
    overflow: hidden;
}

.img-rounded {
    display: inline-block;
    width: 40px;
    height: 40px !important;
    border-radius: 9999px !important;
    border: 1px solid #fff !important;
    margin-left: -5px;
}

.img-rounded:first-child {
    margin-left: 0;
}

.h-line {
    width: 2px;
    height: 3.5rem;
    background-color: #f60000;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.gap-1\.5 {
    gap: .375rem;
}

.h-5 {
    height: 1.5rem
}

.w-5 {
    width: 1.5rem
}

.text-juicey {
    color: #fbbc05
}

.trust-text {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px
}

.trust-text span {
    color: #f80
}

.about-section {
    background: rgb(95 174 47 / 3%);
}



.title-heading {
    font-weight: 700;
    font-size: 30px;
    color: #f60000;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.5;
    font-family: "Rajdhani", serif;
    margin: 0;
}

.title-heading span {
    color: #000000;
}

.about-desc {
    color: rgb(38 38 38 / 75%);
    font-size: 15px;
    font-weight: 400;
}

.video-box {
    position: relative;
    padding: 10px;
}

.video-box:after {
    content: '';
    position: absolute;
    right: -8px;
    top: -8px;
    border: 1px solid #f60000;
    width: 95%;
    height: 95%;
    border-radius: 10px;
    z-index: -1;
}

.rect-img {
    position: relative;
}

.rect-img::after {
    content: '';
    position: absolute;

    right: -22px;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background-color: #f60000;
    bottom: 40px;

    animation: UpDown 6s linear infinite alternate;
}

@keyframes UpDown {
    0% {
        bottom: 10%;
    }

    50% {
        bottom: 50%;
    }

    70% {
        bottom: 90%;
    }

    100% {
        bottom: 10%;
    }
}



.rect-img::before {
    content: '';
    position: absolute;
    right: 40px;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background-color: #4d0000;
    top: -22px;
    animation: leftRight 6s linear infinite alternate;
}

@keyframes leftRight {
    0% {
        right: 10%;
    }

    50% {
        right: 50%;
    }

    70% {
        right: 90%;
    }

    100% {
        right: 10%;
    }
}

.video-grid-box {
    position: relative;
}

.video-img {
    position: absolute;
    top: 29px;
    left: 29px;
    width: 91%;
    height: 86%;
}

.video-box img {
    object-fit: cover;
    border-radius: 15px;
}

.back-box {
    background-color: rgb(95 174 47 / 15%);
    width: 100%;
    min-width: 410px;
    height: 100%;
    min-height: 267px;
    border-bottom-right-radius: 15px;
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(90deg, #f60000 0%, #4d0000 100%);
    position: relative;
}

.cta-section h4 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 9;
}

.cta-title {
    position: relative;
}

.shape-1 {
    position: absolute;
    left: 20%;
    top: -25%;
    animation: scale 1s linear infinite alternate;
}

.btn-blink {
    background: linear-gradient(180deg, #f60000 0%, #4d0000 100%);
    border: 1px solid transparent;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    animation: bg-change 2s ease-out infinite;
    transition: 0.3s all;
}

.btn-blink:hover {
    color: #fff;
}

@keyframes bg-change {
    0% {
        background: linear-gradient(180deg, #f60000 0%, #4d0000 100%);
        transform: scale(1, 1);
    }

    50% {
        background: transparent;
        border-color: #f60000;
        transform: scale(1.1, 1.1);
    }

    100% {
        background: linear-gradient(180deg, #f60000 0%, #4d0000 100%);
        transform: scale(1, 1);
    }
}

.team-img img {
    animation: heartbeat 3s ease-out infinite;
    transition: 0.3s all;
}

@keyframes heartbeat {
    0% {
        transform: scale(.75);
    }

    20% {
        transform: scale(1);
    }

    40% {
        transform: scale(.75);
    }

    60% {
        transform: scale(1);
    }

    80% {
        transform: scale(.75);
    }

    100% {
        transform: scale(.75);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(.9);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1, 1);
    }
}

.care-section {
    padding-bottom: 40px;
    background-color: rgb(95 174 47 / 3%);
}

.team-box {
    background: #fff;
    position: relative;
    text-align: center;
    padding: 15px;
    margin-bottom: 60px;
    min-height: 185px;
}

.team-box::after {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    z-index: -1;
    background: linear-gradient(180deg, #f60000 0%, #f60000 100%);
}

.icon-circle {
    width: 85px;
    height: 85px;
    background: #E8F4E2;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -55px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.team-hover-img-1 {
    display: none;
}

.team-box h5 {
    color: #4d0000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-box p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: rgb(38 38 38 / 75%);
}

.team-box:hover::after {
    content: none;
}

.team-box:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.team-box:hover .icon-circle {
    background-color: #f60000;
}

.team-box:hover .team-hover-img {
    display: none;
}

.team-box:hover .team-hover-img-1 {
    display: flex;
}

.team-box:hover h5 {
    color: #f60000;
}

.service-box {
    background-color: #fdf3f3;
    padding: 20px;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    min-height: 370px;
}

.service-box::after {
    content: '';
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    z-index: -1;
    background: linear-gradient(180deg, #f60000 0%, #f60000 100%);
    opacity: 0;
}

.service-box h5 {
    color: #f60000;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 15px;
    color: rgb(38 38 38 / 75%);
    margin: 0;
}

.service-img-1 {
    display: none;
}

.service-box:hover {
    background-color: #fff;
}

.service-box:hover .service-img {
    display: none;
}

.service-box:hover .service-img-1 {
    display: inline;
}

.service-box:hover::after {
    opacity: 1;
}

.service-box:hover img,
.service-box:hover h5,
.service-box:hover p {
    animation: bounceIn 3s ease-out;
    transition: 0.3s all;
}

.cta-section-two {
    padding: 60px 0;
    background: linear-gradient(90deg, #f60000 0%, #4d0000 100%);
    position: relative;
}

.cta-title-two h6 {
    font-size: 40px;
    font-weight: 100;
    color: #fff;
}

.cta-title-two h4 {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

.video-wrapper {
    position: relative;
}

/* .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */
.care-box {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    display: flex;
    border: 1px solid transparent;
    margin-bottom: 20px;
}

.care-box-inner {
    background-color: #f60000;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 22px;
}

.care-box p {
    margin: 0;
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    color: #4d0000;
    font-weight: 600;
}

.care-box:hover {
    border-color: #f60000;
}

.care-box:hover .care-box-inner {
    background-color: #f60000;
}

.care-box:hover p {
    color: #f60000;
}

.video-section {
    background: #fafcf8;
}

.video-play-btn {
    position: relative;
}


.ripple {
    position: relative;
}

.video-btn {
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--theme);
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 50%;
    top: 50%;
    webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
    width: 60px;
    height: 60px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
}

.ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

.accordion-section {
    background: #fafcf8;
}

.accordion-section .card {
    border: 2px solid transparent;
    border-bottom: 2px solid #f60000;
    border-radius: 0;
    min-height: 220px;
}

.accordion-section .card .card-header {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 0;
    border-left: 3px solid #f60000;
    position: relative;
    padding: 15px 20px;
}

.accordion-section .card .card-header::after {
    content: "\f063";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
}

.accordion-section .card .card-header h5 {
    font-size: 18px;
    font-weight: 600;
    color: #4d0000;
    margin: 0;
}

.accordion-section .card .card-body {
    padding: 15px 20px;
}

.accordion-section .card .card-body p {
    font-size: 15px;
    font-weight: 400px;
    color: rgb(38 38 38 / 75%);
    margin: 0;
}

.accordion-section .card:hover {
    border-color: #f60000;
}

.accordion-section .card:hover .card-header {
    background: #f60000;
    color: #fff;
}

.accordion-section .card:hover .card-header h5 {
    color: #fff;
}

.contact-area {
    background-color: #f60000;
    padding: 40px;
}

.address-area {
    background-color: #4d0000;
    padding: 40px;
}

.icon-box {
    background-color: #4d0000;
    min-width: 55px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.contact-area a,
.contact-area p {
    text-decoration: none;
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    padding-left: 10px;
    margin-bottom: 0;
}

.hover-box:hover .icon-box {
    background: transparent;
    border: 1px solid #89C647;
}

.address-area h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.address-area h4 span,
.address-area p {
    font-size: 19px;
    font-weight: 500;
    color: #fff;
}

.form-section {
    background-color: #fbfdf9;
}

.form-section .card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.form-section .card .card-header {
    background: linear-gradient(180deg, #f60000 0%, #f60000 100%);
    text-align: center;
    padding: 20px 40px;
}

.form-section .card .card-header h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.form-section .card .card-body {
    padding: 30px 40px;
}

.copyright-section {
    background: #f60000;
    padding: 10px 0;
}

.copyright-section p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

footer span img {
    margin-top: -4px;
}

.thank-div {
    height: 94vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #4d0000 0%, #f60000 100%);
    text-align: center;
}

.thank-div h1 {
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 75px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
}

.thank-div p {
    color: #fff;
}

.point-list {
    margin-bottom: 0;
    margin-top: 3rem;
    padding: 0;
    list-style: none;
}

.point-list li {
    display: flex;
    margin-bottom: 15px;
}

.point-list li:last-child {
    margin-bottom: 0;
}

.point-list li svg {
    height: 20px;
    width: 20px;
    min-width: 20px;
    color: #fff;
}

.point-list li p {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    padding-left: 10px;
}

.point-list li p span {
    font-weight: 700;
    color: #f60000;
}

/* review slider */
.element {
    margin: 0px 10px;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.review-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    position: relative;
    margin-bottom: 10px;
}

.review-header {
    display: flex;
    align-items: center;
    position: relative;
}
.platform-icon {
    width: 20px !important;
    height: 20px !important;
    position: absolute;
    top: 0;
    right: 0;
}
.avatar, .avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}
.avatar-title{
    margin-left: 10px;
}
.star-rating {
    color: gold;
}

.review-text {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
}

.read-more {
    margin-top: 10px;
    color: blue;
    cursor: pointer;
    font-size: 12px;
}

@media screen and (max-width:768px) {
    .logo-wrapper {
        margin: 0 auto;
    }

    .cta-section h4 {
        margin-bottom: 30px;
        font-size: 32px;
    }

    .shape-1 {
        left: 30%;
        top: -70%;
    }

    .area-title,
    .cta-box {
        margin-top: 30px;
    }

    .video-play-btn {
        text-align: center;
        margin-bottom: 20px;
    }

    .cta-title-two {
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-area,
    .address-area {
        padding: 20px;
    }

    .contact-area a,
    .contact-area p,
    .address-area p {
        font-size: 15px;

    }

    .contact-area a,
    .contact-area p {
        margin-top: 10px;
        text-align: center;
    }

    .form-section .card .card-header,
    .form-section .card .card-body {
        padding: 20px;

    }

    .title-heading,
    .cta-title-two h4 {
        font-size: 20px;
    }

    .accordion-section .card .card-header h5,
    .care-box p {
        font-size: 16px;
    }

    .cta-title-two h6 {
        font-size: 25px;
    }

    .care-box-inner {
        font-size: 18px;
    }

    .care-box p {
        padding-right: 0;
    }

    .right-top-btn {
        margin-top: 20px;
    }

    .area-title {
        font-size: 50px;
        margin-top: 40px;
        text-align: center;
    }

    .area-subtitle {
        font-size: 30px;
        text-align: center;
    }

}

@media screen and (max-width:767px) {

    .banner-section .row .col-3,
    .banner-section .row .col-4,
    .banner-section .row .col-5 {
        flex: 0 0 auto;
        width: 100%;
    }

    .video-box:after {
        right: -4px;
        top: -4px;
    }

    .rect-img::before {
        top: -18px;
    }

    .rect-img::after {
        right: -18px;
    }

    .video-wrapper iframe {
        margin-bottom: 10px;
    }
}
@media screen and (max-width:680px) {
    .review-card{
        max-width:340px;
    }
}
@media screen and (max-width:580px) {
    .review-card{
        max-width:320px;
    }
}