@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* color codes */
:root {
    --bg-gradient: linear-gradient(105deg, rgba(91, 104, 235, 1) 0%, rgba(40, 225, 253, 1) 100%);
    --bg-hover-gradient: linear-gradient(75deg, rgba(40, 225, 253, 1) 0%, rgba(91, 104, 235, 1) 100%);
    --bg-color: #fff;
    --primary-color: #007bff;
    --hover-primary-color: #003D9A;
    --secondary-color: #6c757d;
    --secondary-color-2: #333a3f;
    --hover-secondary-color: #8BB8FF;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --primary-text-color: #212529;
    --secondary-text-color: #212529;
    --primary-bg-color-light: #f8f9fa;
    --primary-color-dark: #0062cc;
}

/* Reset all properties */

* {
    scrollbar-width: thick;
    scrollbar-color: var(--primary-color) #f1f1f1;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

    *::-webkit-scrollbar-thumb {
        background-color: var(--primary-color);
    }

    *::-webkit-scrollbar-track {
        background-color: #f1f1f1;
    }

html,
body {
    background-color: var(--bg-color);
    font-family: 'Montserrat', sans-serif;
}

/* animation for whole page */
.hidden {
    /* filter: blur(2px); */
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.show {
    opacity: 1;
    /* filter: blur(0); */
    transform: translateY(0);
}

.hidden-content {
    /* filter: blur(2px); */
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.show-content {
    opacity: 1;
    /* filter: blur(0); */
    transform: translateX(0);
}

.hidden-content-left {
    /* filter: blur(2px); */
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.show-content-left {
    opacity: 1;
    /* filter: blur(0); */
    transform: translateX(0);
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}


/* Navbar Starts */

/* Animation on top navbar and top-nav */
@keyframes fadeDownIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-animation {
    animation: fadeDownIn 0.6s ease forwards;
}


/* Top-Nav Starts */
.social-nav-container {
    width: 100%;
    height: 40px;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
    background: var(--bg-gradient);
    z-index: 99;
}

.sn-content {
    margin-left: auto;
}

    .sn-content span {
        color: var(--secondary-text-color);
        padding-right: 6px;
        font-weight: 500;
        font-size: 0.9rem;
        transition: color 0.3s ease-in-out, transform 0.3s ease-in-out, font-weight 0.3s ease-in-out;
    }

        .sn-content span:hover {
            color: var(--primary-bg-color-light);
            transform: scale(1.2);
            /* font-weight: 550; */
            transition-delay: 0.1s;
        }

    .sn-content a {
        cursor: pointer;
        padding: 4px;
        text-decoration: none;
    }

        .sn-content a i {
            /* font-size: 1.1rem; */
            color: var(--secondary-color-2);
            transition: 0.4s ease;
        }

            .sn-content a i:hover {
                transform: scale(1.2);
                color: var(--bg-color);
            }

@media (max-width: 576px) {
    .social-nav-container {
        padding: 14px;
    }

    .sn-content span {
        font-size: 0.6rem;
    }

    .sn-content a {
        padding: 1.4px;
    }
}

@media (max-width: 768px) {
    .social-nav-container {
        padding: 18px;
    }

    .sn-content span {
        font-size: 0.8rem;
    }

    .sn-content a {
        padding: 2px;
    }
}

/* Top-Nav Ends */


/* Main-nav Starts */
.nav-content {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    width: 100%;
    height: 90px;
    z-index: 100;
    /* background-color: transparent; */
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.nav-webname {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-right: 14rem;
}

/* menu-image */
.nav-logo img {
    mix-blend-mode: darken;
    height: 5rem;
}

.nav-heading {
    padding: 20px;
    color: #000000;
}

    .nav-heading h2 {
        font-family: "Merriweather Sans", sans-serif;
        font-optical-sizing: auto;
        font-size: 1.5rem;
        font-weight: 800;
        position: relative;
        top: 6px;
        right: 12px;
    }

        .nav-heading h2 span {
            color: var(--primary-color);
        }

/* the menu for media screen\hamburger icon */
.menu-icon {
    margin-left: auto;
    color: var(--primary-color-dark);
    font-size: 1.5rem;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    z-index: 200;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.4s ease-in-out;
}

.close-btn:hover {
    transform: scale(1.1);
}

.overlay {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.448);
    display: none;
}

.menu.active+.overlay {
    display: block;
}

.menu {
    width: 300px;
    background: linear-gradient(45deg, rgba(91, 104, 235, 1) 0%, rgba(40, 225, 253, 1) 100%);
    color: #fff;
    position: fixed;
    top: 0;
    left: -300px;
    height: 100%;
    transition: left 0.6s ease;
    z-index: 200;
}

.menu img {
    height: 70px;
    padding: 12px;
}

.menu ul {
    margin-top: 5px;
    list-style: none;
    padding: 4px;
}

.menu ul li {
    padding: 15px;
    border-bottom: 1px solid #454545;
}

.menu ul li:hover {
    background: linear-gradient(45deg, rgb(103, 114, 237) 0%, rgb(75, 229, 252) 100%);
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
}

.menu .item-js {
    position: relative;
    cursor: pointer;
}

.menu .item-js a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.sub-menu-2 a {
    padding: 15px;
    border-bottom: 1px solid #454545;
}

.sub-menu-2 a:hover {
    background: linear-gradient(45deg, rgb(103, 114, 237) 0%, rgb(75, 229, 252) 100%);
}

.menu .item-js i {
    margin-left: 10px;
}

.menu .item-js a .dropdown {
    transition: transform 0.3s ease;
}

.menu .item-js .sub-menu-2 {
    background: linear-gradient(45deg, rgba(91, 104, 235, 1) 0%, rgba(40, 225, 253, 1) 100%);
    display: none;
}

.menu .item-js .sub-menu-2 a {
    padding-left: 40px;
}

.rotate {
    transform: rotate(90deg);
}

/* menu-list */
.menu-icon {
    display: none;
}

.nav-menu ul {
    display: flex;
    gap: 12px;
    position: relative;
    top: 6px;
    left: 4rem;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    list-style: none;
    margin-right: 20px;
}

.nav-menu ul li:last-child {
    margin-right: 0;
}

.nav-menu ul li a {
    display: block;
    position: relative;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    color: #2a2a2a;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease, border-color 0.3s ease;
    height: 40px;
    line-height: 40px;
    border: transparent;
    letter-spacing: 1px;
}

.nav-menu ul li a:hover {
    color: #007bff;
}

.nav-menu ul li a::after {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4b8ef1;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

/* sub button */
.sub-menu {
    position: absolute;
    background: var(--bg-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    min-width: 9rem;
    max-height: 0;
    overflow: hidden;
    padding: 12px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease, max-height 0.8s ease-in-out;
}

.sub-btn:hover .sub-menu {
    max-height: 20rem;
    opacity: 1;
}


/* signin-button */
.nav-sign-in {
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9rem;
    height: 2.6rem;
    border-radius: 30px;
}

    .nav-sign-in a {
        padding: 4px;
        color: var(--bg-color);
        font-size: 0.9rem;
        font-weight: 550;
        text-decoration: none;
    }

        .nav-sign-in a i {
            padding: 4px;
        }

/* Media queries for responsiveness */
@media screen and (max-width:1420px) {
    .nav-menu ul {
        position: relative;
        left: 0rem;
        gap: 7px;
    }

        .nav-menu ul li a {
            font-size: 16px;
        }
}

@media screen and (max-width:1320px) {
    .nav-menu ul {
        position: relative;
        left: 0rem;
        gap: 6px;
    }

        .nav-menu ul li a {
            font-size: 14px;
        }
}

@media screen and (max-width:1090px) {
    .nav-webname {
        margin-right: 5rem;
    }

    .nav-menu ul {
        position: relative;
        right: 6rem;
    }
}

@media screen and (max-width:930px) {
    .nav-webname {
        margin-right: 2rem;
    }

    .nav-heading h2 {
        font-size: 1.3rem;
    }

    .nav-menu ul li a {
        font-size: 12px;
    }
}

@media screen and (max-width:837px) {
    .nav-webname {
        margin-right: 0.8rem;
    }

    .nav-heading h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 780px) {
    .nav-content {
        display: flex;
        height: 80px;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo,
    .nav-webname {
        margin-right: auto;
    }

    .nav-heading h2 {
        font-size: 1.3rem;
    }

    .nav-logo img {
        height: 4.5rem;
    }

    .menu-icon {
        display: block;
        justify-self: flex-end;
    }

    .nav-sign-in {
        display: none;
    }

    .nav-menu ul {
        display: none;
    }

    .menu {
        width: 250px;
    }

    .close-btn {
        left: 18rem;
    }
}

@media (max-width: 576px) {
    .nav-content {
        height: 70px;
    }

    .nav-logo img {
        height: 4rem;
    }

    .menu-icon i {
        font-weight: 600;
    }

    .nav-heading {
        padding: 15px;
    }

        .nav-heading h2 {
            font-size: 1.1rem;
            position: relative;
            top: 2px;
        }

    .menu {
        width: 180px;
    }

    .close-btn {
        left: 12rem;
    }

    .menu ul li {
        font-size: 0.9rem;
        padding: 10px;
    }

    .menu img {
        height: 65px;
        padding: 12px;
    }
}

@media screen and (max-width: 262px) {
    .nav-content {
        height: 60px;
    }

    .menu {
        width: 140px;
    }

    .nav-webname {
        margin-top: 8px;
    }

    .nav-logo img {
        height: 3rem;
    }

    .nav-heading h2 {
        font-size: 1rem;
    }

    .close-btn {
        left: 9.5rem;
    }

    .menu ul li {
        padding: 8px;
        font-size: 0.8rem;
    }

    .menu img {
        height: 50px;
        padding: 8px;
    }
}

/* Main-nav Ends */


/* pop-up loader starts here */
#popup-containerr {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-contentt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    gap: 20px;
    width: 50%;
    max-width: 500px;
    height: 50%;
    max-height: 600px;
    margin: 180px auto;
    padding: 20px;
    border-radius: 5px;
    position: relative;
}

    .popup-contentt h2 {
        color: var(--primary-color);
        font-weight: 600;
    }

    .popup-contentt .pc-img {
        padding: 12px;
        object-fit: contain;
        max-width: 450px;
        height: auto;
    }

        .popup-contentt .pc-img img {
            width: 100%;
            border-radius: 4px;
        }

.close-btnl {
    position: absolute;
    top: 4rem;
    right: 10rem;
    color: var(--bg-color);
    cursor: pointer;
    font-weight: 600;
    font-size: 50px;
}

@media screen and (max-width: 768px) {
    .popup-contentt {
        width: 80%;
        margin: 150px auto;
    }

    .close-btnl {
        top: 2.5rem;
        right: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .popup-contentt {
        width: 90%;
        margin: 100px auto;
    }

        .popup-contentt h2 {
            font-size: 0.9rem;
        }

    .close-btnl {
        top: 2.5rem;
        right: 1.2rem;
        font-size: 30px;
    }
}

/* pop-up loader ends here */


/* pop-up content Starts */

/* .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
} */
/*
.popupContainer {
    position: fixed;
    top: 350%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f9f9f9;
    width: 400px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.popupHeader {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .popupHeader .header_title {
        margin-left: 5px;
        font-size: 1.5rem;
    }

    .popupHeader .modal_close {
        cursor: pointer;
        font-size: 1.4rem;
    }

.popupBody {
    padding: 30px;
}

.social_login {
    margin-bottom: 20px;
}

    .social_login .social_box {
        display: block;
        clear: both;
        padding: 10px;
        margin-bottom: 10px;
        background: #ededed;
        overflow: hidden;
    }

        .social_login .social_box:hover {
            background: #cbcbcb;
        }

    .social_login .icon_title {
        display: block;
        padding: 5px 0;
        float: left;
        font-weight: bold;
        font-size: 16px;
        color: #777;
    }

        .social_login .icon_title i {
            padding: 0 14px;
            font-size: 1.2rem;
            color: #000ed1;
        }

.google .icon_title i {
    padding: 0 14px;
    font-size: 1.2rem;
    color: #a00000;
}

.action_btns {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
    padding: 20px;
}

    .action_btns .btn {
        width: 100%;
        padding: 15px;
        color: #fff;
        background-color: #4B8EF1;
        cursor: pointer;
        font-size: 1rem;
        border-radius: 5% 25%;
        font-weight: 400;
        transition: background-color 0.3s ease;
    }

        .action_btns .btn:hover {
            background-color: #0056b3;
        }

.btn_red {
    background-color: #dc3545;
    color: #fff;
}

    .btn_red:hover {
        background-color: #c82333;
    }

.action_btns a {
    text-decoration: none;
}

.forgot_password {
    display: block;
    text-align: baseline;
    margin-top: 2px;
    color: #007bff;
    text-decoration: none;
    font-size: 0.85rem;
}

    .forgot_password:hover {
        text-decoration: underline;
    }

.centeredText {
    color: #afafaf;
    text-align: center;
    margin: 20px 0;
    clear: both;
    overflow: hidden;
    text-transform: capitalize;
}

form label {
    font-size: 0.9rem;
    font-weight: 200;
    margin-bottom: 5px;
    display: block;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.checkbox {
    display: flex;
    align-items: center;
    justify-content: baseline;
    gap: 6px;
    margin-top: 10px;
}

    .checkbox label {
        font-weight: 300;
        font-size: 0.8rem;
    }

    .checkbox input[type="checkbox"] {
        font-size: 1.1rem;
        margin-right: 5px;
        margin-bottom: 5px;
    }
    */
/* Responsive styles */
/*@media (max-width: 500px) {
    .popupContainer {
        width: 90%;
        max-width: 350px;
    }
}
    */

/* pop-up content Ends */

/* Navbar Ends */

/* marquee Starts here */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background:
    /* linear-gradient(to top, rgba(255, 255, 255, 0) 92%, rgba(255, 255, 255, 1) 100%),*/
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 1) 100%), var(--bg-gradient);
    padding: 10px;
}

.marquee-text {
    color: #fff;
    margin-top: 8px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    animation: marquee-scroll 25s linear infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(250%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .marquee-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .marquee-text {
        font-size: 14px;
        animation: marquee-scroll 9s linear infinite;
    }
}

/* marquee Ends here */

/* contact-icon starts */
.contact-container {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateZ(-50%);
    height: 11rem;
    z-index: 9999;
}

.contact-icons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    list-style: none;
    margin: 1em;
    animation: fadeInLeft 0.6s ease-in 0.2s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-icons li {
    position: relative;
    font-size: 1.2em;
}

.contact-icons i {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 265ms ease-out;
}

.contact-icons a {
    display: inline-block;
    position: relative;
}

    .contact-icons a:before {
        content: "";
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: block;
        background: var(--bg-gradient);
        transition: all 265ms ease-out;
        transform: scale(1);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .contact-icons a:hover:before {
        transform: scale(0);
        transition: all 265ms ease-in;
    }

    .contact-icons a:hover i {
        transform: translateX(-60%) scale(1.1);
        color: #00B5F5;
        background: var(--bg-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: all 265ms ease-in;
    }

@media screen and (max-width: 767px) {
    .contact-container {
        margin: auto;
    }
}

/* contact-icon ends */



/* Main content Starts Here */
/* Default styles */

.main-banner {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 250px 120px 150px 120px;
    position: relative;
    overflow: hidden;
}

    .main-banner:after {
        content: '';
        background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 1) 100%), url('/image/slider-left-dec-02.png');
        /* background-image: url('/image/slider-left-dec-02.png'); */
        background-repeat: no-repeat;
        background-size: 70%;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0;
        transition: opacity 1s ease;
        animation: fadeIn 1s ease 0.2s forwards;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.main-banner .main-banner-row {
    margin-bottom: 22rem;
}

.main-banner .left-content {
    margin-right: 15px;
}

.main-banner .main-banner-text,
.main-banner-button {
    z-index: 99;
}

.main-banner .main-banner-text {
    z-index: 99;
}

.main-banner .left-content h2 {
    z-index: 2;
    position: relative;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: -12px;
}

.main-banner .main-banner-text h3 {
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.main-banner .left-content p {
    margin-bottom: 35px;
    color: #2a2a2a;
    font-weight: 400;
    width: 45rem !important;
}

.main-banner .mb-white-button {
    background: var(--bg-hover-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11rem;
    height: 2.8rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .main-banner .mb-white-button a {
        text-decoration: none;
        font-weight: 600;
        color: var(--bg-color);
        transition: transform 0.3s ease, all 0.3s ease;
    }

        .main-banner .mb-white-button a:hover {
            transform: scale(1.02);
            color: #f2f2f2;
        }

.main-banner-image {
    position: relative;
}

.main-banner .right-image {
    text-align: center;
    position: relative;
    bottom: 6rem;
    left: 2rem;
    z-index: 20;
}

    .main-banner .right-image img {
        max-width: 610px;
    }

/* Media Queries for Improved Responsiveness */

@media only screen and (max-width: 1250px) {
    .main-banner {
        padding: 200px 80px 100px 80px;
    }

        .main-banner .left-content p {
            width: auto !important;
            align-items: baseline;
        }

        .main-banner .right-image {
            bottom: 4rem;
            left: 1rem;
        }
}

@media only screen and (max-width: 992px) {
    .main-banner {
        padding: 150px 60px 50px 60px;
    }

        .main-banner .main-banner-row {
            margin-bottom: 15rem;
        }

        .main-banner .right-image {
            bottom: 2rem;
            left: 0;
        }
}

@media only screen and (max-width: 768px) {
    .main-banner {
        padding: 120px 40px 30px 40px;
    }

        .main-banner .main-banner-row {
            margin-bottom: 10rem;
        }

        .main-banner .left-content h2 {
            font-size: 2.2rem;
        }

        .main-banner .right-image {
            bottom: 1rem;
        }
}

@media only screen and (max-width: 576px) {
    .main-banner {
        padding: 80px 20px 20px 20px;
    }

        .main-banner .left-content h2 {
            font-size: 1.8rem;
        }

        .main-banner .right-image img {
            max-width: 100%;
        }
}

@media screen and (max-width: 835px) {
    .main-banner:after {
        /* background-image: url('/image/about-bg.jpg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        position: absolute; */
        background-image: none;
        /* z-index: -1; */
    }
}

@media screen and (max-width: 992px) {
    .main-banner .right-image {
        position: relative;
        bottom: auto;
        left: auto;
    }

    .main-banner .main-banner-text h3 {
        color: #a2a2a2;
    }
}

/* Animation Style for main-banner-content */

.main-banner-content {
    z-index: 99;
    animation: leftIn 1.2s ease-out 0.4s 1 normal both;
}

@keyframes leftIn {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.main-banner-image {
    animation: rightIn 1s cubic-bezier(0.43, 1, 0.62, 1) 0.3s 1 normal both;
}

@keyframes rightIn {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* top-body-content Ends */

/* Services Content Starts */
.services {
    overflow: hidden;
    margin-top: -20rem;
    padding-top: 130px;
    padding-bottom: 30px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 1) 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 1) 100%), var(--light-color);
    position: relative;
}


    .services .section-heading p {
        width: auto;
        margin-top: 10px;
        margin-left: 18%;
        margin-right: 18%;
    }

    .services .container-fluid {
        padding-left: 65px;
        padding-right: 65px;
    }

    .services:after {
        content: '';
        background-image: url('/image/services-left-dec.png');
        background-repeat: no-repeat;
        position: absolute;
        left: 0;
        bottom: -300px;
        width: 261px;
        height: 368px;
        z-index: 0;
    }

    .services:before {
        content: '';
        background-image: url('/image/services-right-dec.png');
        background-repeat: no-repeat;
        position: absolute;
        right: 0;
        top: 0;
        width: 1136px;
        height: 244px;
        z-index: 0;
    }

    .services .section-heading {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 80px;
    }

        .services .section-heading p {
            z-index: 1 !important;
        }

        .services .section-heading h4 {
            font-weight: 600;
            font-size: 30px;
        }

            .services .section-heading h4 span {
                color: var(--primary-color);
            }

        .services .section-heading .line-dec {
            margin: 0 auto;
        }

.service-item {
    position: relative;
    z-index: 1;
    padding: 30px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 10px;
    border-top-right-radius: 50px;
    transition: all .3s;
}

    .service-item .icon {
        margin-left: 0px;
        margin-bottom: 30px;
        background-repeat: no-repeat;
        width: 50px;
        height: 50px;
        transition: all .3s;
    }

    .service-item h4 {
        transition: all .3s;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .service-item .text-button a {
        font-size: 15px;
        text-decoration: none;
        font-weight: 500;
    }

    .service-item p {
        width: auto;
        transition: all .3s;
        font-size: 15px;
        margin-bottom: 20px;
    }

    .service-item:hover h4,
    .service-item:hover p,
    .service-item:hover .text-button a {
        color: #fff;
    }

.first-service .icon {
    background-image: url('/image/mental-healthcare.png');
    background-size: 120%;
}

.first-service:hover .icon {
    background-image: url('/image/mental-healthcare.png');
}

.second-service .icon {
    background-image: url('/image/2xmultiplier.png');
    background-size: 120%;
}

.second-service:hover .icon {
    background-image: url('/image/2xmultiplier.png');
}


.third-service .icon {
    background-image: url('/image/long-life-renual.png');
    background-size: 100%;
}

.third-service:hover .icon {
    background-image: url('/image/long-life-renual.png');
}

.fourth-service .icon {
    background-image: url('/image/service-icon-04.png');
}

.fourth-service:hover .icon {
    background-image: url('/image/service-icon-04.png');
}

.service-item:hover {
    background-image: url('/image/service-bg.jpg');
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 1000px) {
    .services {
        margin-top: auto;
    }

        .services:after {
            content: '';
            position: absolute;
            z-index: -1;
        }

        .services:before {
            content: '';
            position: absolute;
            z-index: -1;
        }
}

/* Services Content Ends */

/* top-second-body-content-2 Ends */
/* Strip */
.white-icon-strip {
    overflow: hidden;
    box-shadow: 0 3px 6px #0000001C;
    padding: 15px 0;
    margin-top: 0rem;
    background-color: var(--bg-color);
    z-index: 1;
}

    .white-icon-strip .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

.white-icon-strip {
    padding: 30px 0;
}

/* Columns */
.col-md-3 {
    display: flex;
    justify-content: center;
    z-index: 1;
}

/* Icon */
.white-strr {
    text-align: center;
    margin-bottom: 12px;
}

    .white-strr img {
        width: 3rem !important;
    }

/* Text */
.white-conn {
    text-align: center;
}

/* Grid padding */
.col-md-3,
.col-sm-3,
.col-xs-3 {
    padding: 0 15px;
}

/* Heading */
h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Paragraph */
p {
    font-size: 16px;
    color: #555;
}

/* Media Queries */
@media (max-width: 992px) {
    .white-strr img {
        width: 80px;
        height: 80px;
    }

    h5 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .col-md-3 {
        display: flex;
        flex-direction: column;
    }

    .white-strr img {
        width: 60px;
        height: 60px;
    }

    h5 {
        font-size: 16px;
    }
}

/* top-second-body-content-2 Ends */

/* top-second-body-content-2-part-2 Starts */

.sudden-section .container-01 {
    overflow: hidden;
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 1) 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 1) 100%), var(--light-color);
    margin: 2rem auto 0 auto;
    padding: 20px;
}

.heading-lob-h1 {
    z-index: 1;
    justify-self: center;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

    .heading-lob-h1:before {
        content: "\2014 \00a0 \00a0";
        color: var(--primary-color);
        font-weight: 700;
    }

    .heading-lob-h1::after {
        margin-left: 20px;
        content: "\2014 \00a0 \00a0";
        color: var(--primary-color);
        font-weight: 700;
    }

    .heading-lob-h1 span {
        color: var(--primary-color);
    }

#car-ins-img img {
    z-index: 1;
    max-width: 100%;
    height: auto;
}

p {
    z-index: 1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

ul {
    /* list-style-type: none; */
    padding-left: 15px;
}

li {
    z-index: 1;
    margin-bottom: 10px;
}

.btn-hd {
    z-index: 1;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    /* background-color: #007bff; */
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-hd:hover {
        background-color: #3696fe;
    }

@media (max-width: 768px) {
    .sudden-section .container {
        margin: 2rem auto;
    }

    .heading-lob-h1 {
        font-size: 28px;
    }

    .col-md-push-8,
    .col-md-pull-4 {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .heading-lob-h1 {
        font-size: 18px;
    }
}

@media screen and (max-width: 350px) {
    .heading-lob-h1 {
        font-size: 15px;
    }
}


/* top-second-body-content-2-part-2 Ends */


/* body-about Section Starts */

.about-us-section {
    overflow: hidden;
    padding-top: 100px;
    position: relative;
}

.section-heading {
    margin-bottom: 45px;
}

    .section-heading h4 {
        font-weight: 600;
    }

        .section-heading h4 span {
            color: var(--primary-color);
        }

.box-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    margin-bottom: 30px;
}

    .box-item h4 {
        text-align: center;
    }

        .box-item h4 a {
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
        }

.gradient-button a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    background: var(--bg-gradient);
    border-radius: 25px;
    font-weight: 550;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .gradient-button a:hover {
        transform: scale(1.08);
        color: #f7f1f1;
        /* background: linear-gradient(to right, #0083b0, #00b4db); */
    }

/* Specific section styles */
.section-heading h2 {
    font-size: 36px;
    color: #2a2a2a;
}

.section-heading p {
    float: left;
    font-size: 18px;
    color: #7a7a7a;
    margin-bottom: 40px;
}

.box-item h3 {
    font-size: 24px;
    color: #2a2a2a;
}

.box-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0;
}

.cta {
    margin-top: 50px;
    text-align: center;
}

    .cta p {
        margin-bottom: 20px;
    }

@media screen and (max-width: 768px) {
    .right-image {
        z-index: 0;
        overflow: hidden;
    }

    .cta {
        margin-top: 20px;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 468px) {
    .right-image {
        display: none;
    }
}

/* body-about Section Ends */

/* body-features section Starts */
.common-health-hd .container-02 {
    overflow: hidden;
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 1) 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 1) 100%), var(--light-color);
    margin: 6rem auto auto auto;
    padding: 20px;
}

/* Heading */
.heading-lob-h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

    .heading-lob-h2:before {
        content: "\2014 \00a0 \00a0";
        color: var(--primary-color);
        font-weight: 700;
    }

    .heading-lob-h2::after {
        margin-left: 20px;
        content: "\2014 \00a0 \00a0";
        color: var(--primary-color);
        font-weight: 700;
    }

    .heading-lob-h2 span {
        color: var(--primary-color);
    }

/* Image */
.white-str img {
    max-width: 100%;
    height: auto;
}

.row-content {
    display: block;
}

/* Paragraph */
.row p {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.row .mt20 {
    text-align: center;
}

/* List Item */
.white-con h5 {
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .white-con h5:hover {
        color: var(--primary-color);
    }

/* Button */
.alcnt {
    margin-top: 2rem;
}

.btn-hd {
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-hd:hover {
        background-color: #3696fe;
    }

/* Media Queries */
@media (max-width: 768px) {
    .heading-lob-h2 {
        font-size: 24px;
    }
}


/* body-features section Ends */

/* customer rating starts */


/* .customer-rating-container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.customer-rating-card {
    width: 300px;
    height: 200px;
    background-color: #fff;
    margin: 20px;
    display: inline-block;
    transition: transform 0.5s ease;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel {
    white-space: nowrap;
    transition: transform 0.5s ease;
}

.controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.control-button {
    cursor: pointer;
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 20px;
    margin: 0 10px;
    font-size: 16px;
}

@media only screen and (max-width: 768px) {
    .customer-rating-card {
        width: 250px;
        height: 150px;
        margin: 10px;
    }
}

@media only screen and (max-width: 576px) {
    .customer-rating-card {
        width: 200px;
        height: 120px;
        margin: 5px;
    }
} */

/* customer rating ends */

/* partner content starts */

.partner-content {
    overflow: hidden;
    margin-top: 4rem;
    margin-bottom: -10rem;
    padding: 60px 25px 35px 25px;
    width: 100%;
    min-height: 40rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 1) 100%), var(--bg-hover-gradient), linear-gradient(to bottom, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 1) 100%);
    background-blend-mode: screen;
    text-align: center;
    color: #fff;
}

    .partner-content h2 {
        font-weight: 700;
        font-size: 1.7rem;
    }

    .partner-content h3 {
        font-size: 1.2rem;
        margin-top: 12px;
    }

.pc-box {
    display: flex;
    justify-content: center;
}

    .pc-box a {
        display: block;
        padding: 10px 20px;
        text-decoration: none;
        color: #333;
        background-color: #f0f0f0;
        border-radius: 2px;
        margin: 12px;
        transition: 0.5s ease;
    }

        .pc-box a:hover {
            background-color: #ddd;
        }

        .pc-box a:nth-child(2) {
            background-color: #4C48CB;
            transition: 0.5s ease;
            color: #f8f8f8;
        }

        .pc-box a:nth-child(3) {
            background-color: #CB204B;
            transition: 0.5s ease;
            color: #f8f8f8;
        }

        .pc-box a:nth-child(2):hover {
            background-color: #7E7DDB;
            color: #ddd;
        }

        .pc-box a:nth-child(3):hover {
            background-color: #d6355d;
            color: #ddd;
        }

/* Partner Grid */
.pc-grid {
    width: 100%;
    height: auto;
    display: grid;
    padding: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-gap: 10px;
    margin-top: 25px;
    overflow: hidden;
}

.pc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    .pc-img img {
        width: 100%;
        height: 100%;
    }

@media screen and (max-width: 767px) {
    .partner-content {
        margin-bottom: -5rem;
    }

        .partner-content h2 {
            font-weight: 800 !important;
            color: #808080;
        }

        .partner-content h3 {
            color: #b29595;
            font-weight: 500;
        }
    /* 
    .pc-box {
        display: flex;
        flex-direction: column;
    } */

    .pc-box a {
        font-weight: 600;
        padding: 10px 15px;
        margin: 4px;
    }

    .pc-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        grid-gap: 5px;
    }
}


/* partner content ends */


/* Main content Ends Here */


/* Footer Starts */


footer {
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
    z-index: 1;
    background-image: url('/image/footer-bg.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 130px;
    padding-top: 300px;
    padding-bottom: 60px;
    color: #fff;
}

    footer .section-heading {
        margin-bottom: 45px;
        text-align: center;
    }

        footer .section-heading h4 {
            line-height: 45px;
            font-weight: 600;
            margin: 0 13%;
        }

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-widget {
    margin-top: 20px;
    flex: 1 1 300px;
    max-width: 300px;
}

    .footer-widget .logo img {
        max-width: 96px;
        margin-bottom: 20px;
    }

    .footer-widget h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .footer-widget h5 {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
    }

    .footer-widget p {
        text-align: left;
        color: #fff;
        margin-bottom: 15px;
    }

    .footer-widget a {
        color: #fff;
        text-decoration: none;
        transition: all .3s;
    }

        .footer-widget a:hover {
            opacity: 0.75;
        }

    .footer-widget ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

            .footer-widget ul li a {
                font-size: 15px;
            }

footer .copyright-text {
    text-align: center;
    margin-top: 50px;
}

.row .copyright-text p {
    color: #fff;
}

@media screen and (max-width: 1000px) {
    footer .section-heading h4 {
        color: #2a2a2a;
        text-align: center;
        font-weight: 550;
    }
}

@media screen and (max-width: 768px) {
    footer {
        padding-top: 0;
        text-align: center;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

        .footer-widget p {
            text-align: center;
            font-size: 14px;
        }

        .footer-widget ul {
            text-align: center;
        }

            .footer-widget ul li {
                margin-bottom: 5px;
            }

    footer .copyright-text p {
        font-size: 12px;
        text-align: center;
    }
}

/* Footer Ends */
