/********** Template CSS **********/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    color: #444444;
}

:root {
    --primary: #30013b;
    --secondary: #8F12FD;
    --light: #F0F6FF;
    --dark: #262B47;
    --Primary-Colour: #30013b;
    --Secondary-Colour: #ed004e;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
    color: var(--Primary-Colour);
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--Primary-Colour), var(--Secondary-Colour));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--Secondary-Colour), var(--Primary-Colour));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--Primary-Colour), var(--Secondary-Colour));
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--Secondary-Colour), var(--Primary-Colour));
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, var(--Primary-Colour), var(--Secondary-Colour));
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, var(--Secondary-Colour), var(--Primary-Colour));
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--Primary-Colour), var(--Secondary-Colour));
}




/*** Navbar ***/

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--Primary-Colour) !important;
    outline: none;
    transition: padding 0.3s ease-in-out, color 0.5s ease;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    /* Use scale for smooth transition */
    border: 10px solid;
    border-color: var(--Secondary-Colour) transparent transparent transparent;
    transition: transform .5s ease;
    /* Transitioning transform */
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--primary) !important;
}


.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
    transform: translateX(-50%) scale(1);

}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--Secondary-Colour) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 55px;
    transition: .5s ease;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 50px;
}


@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--Secondary-Colour) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--Secondary-Colour);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .footerdiv {
        display: flex;
        /* background-color: #25D366; */
        margin-left: 7rem;
    }

    .happier strong {
        white-space: nowrap;
        margin-right: 5px;
    }

}

/*** Hero Header ***/
.hero-header {
    margin-bottom: 2rem;
    padding: 13rem 0 0 0;
    background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom;
    background-repeat: no-repeat;
}


.outline-text {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    color: transparent;
    -webkit-text-stroke: 0.75px grey;
    /* outline color */
    text-transform: uppercase;
}

.flag-icon {
    width: 18px;
    height: auto;
    margin: 0 6px;
    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 0 0;
        margin-bottom: 0;
    }
}

@media (max-width:425px) {
    @keyframes slideInDown {
        from {
            transform: translate3d(0, -50%, 0);
            visibility: visible;
        }

        to {
            transform: translate3d(0, 0, 0);
        }
    }

    .slideInDown {
        animation-name: slideInDown;
    }

    .hero-header {
        padding: 2rem 0 0 0;
        margin-bottom: 0;
    }

    .outline-text {
        font-size: 13px;
    }
}

@media (max-width:320px) {
    .hero-header .btn {
        font-size: 0.8rem;
    }
}




/*** Feature ***/
.feature-item {
    transition: .5s;
    box-shadow: 4px 6px rgba(0, 0, 0, .08);
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

/* .bg-light {
    background-color: #e887ff !important;
} */


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--Primary-Colour), var(--Secondary-Colour));
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/screenshot-frame.png) center center no-repeat;
    background-size: 251px 495px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--Primary-Colour), var(--Secondary-Colour));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}





/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    /* background: linear-gradient(to bottom right, var(--primary), var(--secondary)); */
    background: linear-gradient(to bottom right, var(--Primary-Colour), var(--Secondary-Colour));
}


.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item .initials {
    background-color: white !important;
}

.testimonial-carousel .owl-item:not(.center) .testimonial-item .initials {
    background-color: #ed004e !important;
    color: white !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--Primary-Colour), var(--Secondary-Colour));
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, var(--Secondary-Colour), var(--Primary-Colour));
}



/* FAQS */

.accordion-button:not(.collapsed) {
    color: #ed004e;
}

/* Contact */

input.form-control,
textarea.form-control {
    background-color: #f9ebff;
}


/*** Footer ***/
.footer {
    /* margin-top: 6rem; */
    /* padding-top: 9rem; */
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        /* url(../img/bg-top.png), */
        /* linear-gradient(to bottom right, var(--primary), var(--secondary)); */
        linear-gradient(to bottom right, var(--Primary-Colour), var(--Secondary-Colour));
    background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Modal Box */
.demo-modal {
    border-radius: 1.2rem;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Modal Header */
.demo-modal .modal-header {
    border-bottom: none;
    padding: 1.2rem 1.5rem;
    border-radius: 1.2rem 1.2rem 0 0;
}

.demo-modal .modal-title {
    font-weight: 600;
    color: #fff;
}

.demo-modal .btn-close {
    filter: invert(1);
}

/* Modal Body */
.demo-modal .modal-body {
    padding: 1.5rem;
}

/* Form Labels */
.demo-modal .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* Inputs */
.demo-modal .form-control {
    border-radius: 0.6rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ddd;
    color: #444444;
}

.demo-modal .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.15rem rgba(143, 18, 253, 0.25);
}

/* Default checkbox box */
.demo-modal .form-check-input {
    background-color: #fff;
    accent-color: #ed004e;
    border-radius: 4px;
    box-shadow: none;
}

/* When checked */
.demo-modal .form-check-input:checked {
    background-color: #ed004e;
    border-color: #ed004e;
    box-shadow: none;
}

.demo-modal .form-check-input:focus {
    box-shadow: none !important;
}


/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.6rem;
    font-weight: 500;
}

.btn-submit:hover {
    opacity: 0.95;
}

.Google {
    margin-right: 50px;
}

@media (max-width: 580px) {
    .Google {
        margin-right: 0;
    }
}


/* --====================================----- */


.contact-buttons-fixed {
    position: fixed;
    bottom: 15px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    /* Ensure it's above other content */
}

.whatsapp-position {
    position: fixed;
    bottom: 45px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.whatsapp-button,
.call-button {
    padding: 5px 5px;
    background-color: #25D366;
    text-decoration: none;
    border-radius: 15%;
    /* To make them round */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-button img,
.call-button img {
    height: 40px;
}

.call-button {
    background-color: #FFC107;
}

.whatsapp-button:hover,
.call-button:hover {
    opacity: 0.8;
    transform: scale(1.1);
}