html {
    scroll-behavior: smooth;
    font-size: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    overflow-x: hidden;
    margin: 0;
    padding: 0;
}


body {
    font-size: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: rgb(43, 43, 43);

    margin: 0;
    padding: 0;
    min-height: 100vh;

    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;


    background:
        radial-gradient(ellipse 90% 60% at 20% 100%, rgb(244 24 189 / 25%), transparent 70%), radial-gradient(ellipse 90% 60% at 80% 100%, rgb(55 255 21 / 22%), transparent 70%), #fdfaff;
    background-size: 180% 100%;

    background-attachment: fixed;
    background-repeat: no-repeat;


    animation: bottomGlowMove 18s ease-in-out infinite alternate;


    overflow-x: hidden;
}



@keyframes bottomGlowMove {

    0% {
        background-position: 0% 100%;
    }


    50% {
        background-position: 100% 100%;
    }


    100% {
        background-position: 0% 100%;
    }

}


/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}


/* Keep sections transparent so body gradient shows */
section,
main,
header,
footer {
    background: transparent;
}


p {
    color: rgb(43, 43, 43) !important;
}

a {
    color: rgb(43, 43, 43);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: rgb(43, 43, 43);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.font-family-1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


.font-family-2 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1 {
    font-size: 50px;
    font-weight: 600;
}

h2 {
    font-size: 32px;
    font-weight: 600;
}

h3 {
    font-size: 27px;
    font-weight: 600;
}


::-moz-selection {
    background-color: #871d87;
    color: white;
}

::selection {
    background-color: #560a56;
    color: white;
}

body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px white;
    box-shadow: inset 0 0 6px white;
}

body::-webkit-scrollbar-thumb {
    background-color: #560a56;
    outline: 1px solid #560a56;
}


.section {
    padding: 50px 0px;
}

.image-white {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(103%);
    -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(103%);
}

.image-green {
    filter: invert(42%) sepia(95%) saturate(350%) hue-rotate(65deg) brightness(88%) contrast(96%);
    -webkit-filter: invert(42%) sepia(95%) saturate(350%) hue-rotate(65deg) brightness(88%) contrast(96%);
}

.image-green-light {
    filter: invert(61%) sepia(57%) saturate(477%) hue-rotate(64deg) brightness(96%) contrast(89%);
    -webkit-filter: invert(61%) sepia(57%) saturate(477%) hue-rotate(64deg) brightness(96%) contrast(89%);
}

.image-purple {
    filter: invert(16%) sepia(74%) saturate(3320%) hue-rotate(287deg) brightness(82%) contrast(93%);
    -webkit-filter: invert(16%) sepia(74%) saturate(3320%) hue-rotate(287deg) brightness(82%) contrast(93%);
}

.image-purple-light {
    filter: invert(49%) sepia(15%) saturate(5909%) hue-rotate(268deg) brightness(74%) contrast(88%);
    -webkit-filter: invert(49%) sepia(15%) saturate(5909%) hue-rotate(268deg) brightness(74%) contrast(88%);
}



.font-100 {
    font-weight: 100 !important;
}

.font-200 {
    font-weight: 200 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.font-600 {
    font-weight: 600 !important;
}

.font-700 {
    font-weight: 700 !important;
}

.font-800 {
    font-weight: 800 !important;
}

.font-900 {
    font-weight: 900 !important;
}


.text-purple {
    color: #560a56 !important;
}

.text-purple-light {
    color: #871d87 !important;
}

.text-green {
    color: #388c2a !important;
}

.text-green-light {
    color: #5fc24c !important;
}

.text-white {
    color: #fff !important;
}

.border-radius-0 {
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
}

.border-radius-3 {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    overflow: hidden;
}

.border-radius-5 {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}

.border-radius-10 {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.border-radius-15 {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.border-radius-20 {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
}

.border-radius-50 {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    overflow: hidden;
}

.form-border-red {
    border: 2px solid red !important;
}

button:focus {
    outline: 0;
    box-shadow: none;
}

.btn {
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    position: relative;
    overflow: hidden !important;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    font-size: 13px;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: white;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-purple {
    background: linear-gradient(120deg, #871d87 0%, #b647b6 50%, #560a56 100%) !important;
    background-size: 200% auto;
    color: #fff !important;
    box-shadow: 0 10px 35px -8px rgba(135, 29, 135, 0.6);
}

.btn-green {
    background: linear-gradient(120deg, #388c2a 0%, #388c2a 50%, #5fc24c 100%) !important;
    background-size: 200% auto;
    color: #fff !important;
    box-shadow: 0 10px 35px -8px #388c2a;
}

.btn-transparent {
    background: #ffffff24 !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #560a56;
    box-shadow: 0 10px 35px -8px rgba(135, 29, 135, 0.6);
}

.btn-white {
    background: linear-gradient(120deg, #ffffff 0%, #ffffff 50%, #ffffff 100%) !important;
    background-size: 200% auto;
    color: #560a56 !important;
    box-shadow: 0 10px 35px -8px rgba(135, 29, 135, 0.6);
}


/* Topbar Starts */
.bg-purple {
    background-color: #b647b6 !important;
}

.bg-purple-dark {
    background-color: #560a56 !important;
}

.bg-green {
    background-color: #388c2a !important;
}

.bg-green-light {
    background-color: #5fc24c !important;
}

.bg-white {
    background-color: white;
}

.bg-glass {
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(22px);
    border: 1px solid rgb(255 255 255 / 89%);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.bg-gradient {
    background-image: linear-gradient(120deg, #560a56 0%, #388c2a 100%);
}

.social-icons {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.social-icons li {
    margin-right: 8px
}

.header-contacts a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.fixed-top {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
}

/* Topbar Ends */

/* Navbar Starts */
.nav-wrap {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    -moz-transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    -ms-transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar {
    background-color: #560a56;
    z-index: 999;
}

.topbar .social-icons li {
    margin-bottom: 0px;
}

.navbar {
    top: 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 12px 22px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 40px -12px rgba(0, 0, 0, 0.5);
    transition: padding 0.4s var(cubic-bezier(0.16, 1, 0.3, 1)), background 0.4s var(cubic-bezier(0.16, 1, 0.3, 1));
    -webkit-transition: padding 0.4s var(cubic-bezier(0.16, 1, 0.3, 1)), background 0.4s var(cubic-bezier(0.16, 1, 0.3, 1));
    -moz-transition: padding 0.4s var(cubic-bezier(0.16, 1, 0.3, 1)), background 0.4s var(cubic-bezier(0.16, 1, 0.3, 1));
    -ms-transition: padding 0.4s var(cubic-bezier(0.16, 1, 0.3, 1)), background 0.4s var(cubic-bezier(0.16, 1, 0.3, 1));
    -o-transition: padding 0.4s var(cubic-bezier(0.16, 1, 0.3, 1)), background 0.4s var(cubic-bezier(0.16, 1, 0.3, 1));
}

.navbar.scrolled {
    padding: 8px 10px 8px 18px;
    background: rgba(15, 6, 19, 0.78);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14.5px;
    font-weight: 500;
    color: #d8c8da;
    margin: 0px;
    list-style-type: none;
}

.nav-links li {
    margin-bottom: 0px !important;
}

.nav-links a {
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5fc24c, #b647b6);
    transition: width 0.35s var(cubic-bezier(0.16, 1, 0.3, 1));
}

.nav-links a:hover {
    color: #560a56;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.06);
    align-items: center;
    justify-content: center;
    color: #560a56;
    font-size: 17px;
}

@media (max-width:920px) {

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: none;
        color: #560a56;
        font-size: 28px;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0px;
        right: initial;
        width: 100%;

        flex-direction: column;
        align-items: flex-start;
        /* Override desktop */
        gap: 0;

        background: rgb(255 255 255 / 97%);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        margin: 0;
        padding: 20px;
        list-style: none;
        z-index: 99999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px 0;
        color: #560a56;
    }


    .nav-cta {
        display: none;
    }
}


/* .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
} */

/* Navbar Ends */


/* Banner Starts */
.subheading {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b647b6;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
}

.subheading::before {
    content: '';
    width: 24px;
    height: 1px;
    background: #b647b6;
}

.home-banner-section {
    margin-top: 112px;
    /* min-height: 90vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 20px !important;
}


.hero-title {
    font-size: 50px;
    font-weight: 600;
}

.hero-title em {
    font-weight: 500;
    font-size: 30px;
}

.small {
    font-size: 12px;
}

.gradient-text {
    background: linear-gradient(90deg, #1f081a, #b647b6, #2f5a27, #388c2a, #7b4c6f);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 16s ease-in-out infinite;
    -webkit-animation: shine 16s ease-in-out infinite alternate;
    padding: 0px 10px;
}

@keyframes shine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

img {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}


.glass-card {
    /* background: rgba(255, 255, 255, 0.06); */
    background: rgb(255 255 255 / 76%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.float-card1 {
    position: absolute;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    top: -20px;
    left: 0px;
    animation: bob 6s ease-in-out infinite;
    -webkit-animation: bob 6s ease-in-out infinite;
    animation-delay: 0s;
}

.float-card2 {
    position: absolute;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    bottom: -20px;
    right: 0px;
    animation: bob 6s ease-in-out infinite;
    -webkit-animation: bob 6s ease-in-out infinite;
    animation-delay: 1.4s;
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}


.glass-card img {
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}


.glow-shape1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #ff9ae6 0%, transparent 70%);
    top: -160px;
    left: -160px;
    animation: float1 16s ease-in-out infinite;
    position: absolute;
    border-radius: 0;
    filter: blur(70px);
    z-index: 0;
    opacity: 0.55;
}

.glow-shape2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #5fc24c 0%, transparent 70%);
    bottom: -120px;
    right: -80px;
    animation: float2 19s ease-in-out infinite;
    position: absolute;
    border-radius: 0;
    filter: blur(70px);
    z-index: 0;
    opacity: 0.55;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, 30px) scale(1.08);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, -40px) scale(1.05);
    }
}



/* Banner Emds */


/* Intro Starts */
.intro-image-wrapper {
    position: relative;
}

.intro-image-wrapper .glass-card {
    bottom: -20px;
    left: 0px;
    top: initial;
}

.glass-card .number {
    font-size: 30px;
    font-weight: 800;
    color: #b647b6;
}

/* Intro Ends */

/* Service Starts */
.splide__slide {

    width: 100%;

}

.splide__slide img {

    width: 100%;

}

.service-box {
    background-color: #ffffff24;
    backdrop-filter: blur(16px);
    border: 1px solid #891f891a;
    transition: all 0.5s ease;
    height: 174px;
}

.service-box:hover {
    background-color: #560a56;
    backdrop-filter: blur(16px);
    border: 1px solid #ffffff;
    transition: all 0.5s ease;
}

.service-box img {
    width: auto !important;
    height: 60px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.service-box h5 {
    transition: all 0.5s ease;
}



.condition-box {
    background-color: #ffffff24;
    backdrop-filter: blur(16px);
    border: 1px solid #891f891a;
    transition: all 0.5s ease;
}

.condition-box:hover {
    background-color: #2f5a27;
    backdrop-filter: blur(16px);
    border: 1px solid #ffffff;
    transition: all 0.5s ease;
}

.condition-box img {
    width: auto !important;
    height: 60px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.condition-box h5 {
    transition: all 0.5s ease;
}


.splide__pagination {
    bottom: -25px;
}

.splide__pagination__page {
    background-color: #b647b6;
}

.splide__pagination__page.is-active {
    background-color: #560a56;
}

.why-section {
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

.testi-section {
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

.robotic-section {
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}



/* Service Ends */

/* Focus Starts */
.focus-row {
    margin: -8px;
}

.focus-row>div {
    padding: 8px;
}

.focus-box {
    overflow: hidden;
    border: 1px solid #607d8bba;
    background: transparent;
    position: relative;
}

.focus-main-image {
    width: 100%;
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.focus-card {
    background: rgba(255, 255, 255, 0.06) !important;
    position: absolute;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    bottom: 0px;
    left: 0px;
    width: 100%;
    color: white;
    font-weight: 700;
    font-size: 13px;
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
}

/* Focus Ends */

/* Contact Slider Starts */
.contact-carousel .splide__list {
    transition-timing-function: linear !important;
}

/* Contact Slider Ends */


/* Video Starts */
.video-section {
    position: relative;
    background-image: url('../images/video-bg.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-section .container-fluid {
    position: relative;
    z-index: 5;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #8b208bb3 0%, #6f1a6f63 99%, #fecfef 100%);
    z-index: 1;
    backdrop-filter: blur(5px);
}

.home-video-wrapper {
    position: relative;
}


.play-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.play-icon::before,
.play-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffffba;
    animation: play-ripple 3.5s infinite ease-out;
    -webkit-animation: play-ripple 3.5s infinite ease-out;
}

.play-icon::after {
    animation-delay: 1.75s;
    -webkit-animation-delay: 1.75s;
}

.play-icon img {
    position: relative;
    z-index: 2;
}


@keyframes play-ripple {

    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        transform: scale(5);
        opacity: 0;
    }

}


/* Video Ends */


/* Blog Starts */
.blog-row {
    margin: -8px;
}

.blog-row>div {
    padding: 8px;
}

.blog-box {
    overflow: hidden;
    background: transparent;
    position: relative;
}

.blog-main-image {
    width: 100%;
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.blog-card {
    background-image: linear-gradient(120deg, #560a56a3 0%, #388c2a69 100%);
    position: absolute;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    bottom: 0px;
    left: 0px;
    width: 100%;
    color: white;
    font-weight: 700;
    font-size: 13px;
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
}

/* Blog Ends */

/* CTA Box Starts */
.cta-section {
    position: relative;
    /* background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(135, 29, 135, 0.25), transparent 60%), radial-gradient(ellipse 60% 50% at 85% 15%, rgba(56, 140, 42, 0.18), transparent 55%), #ffffff */
}

.cta-box {
    position: relative;
    border-radius: 0;
    padding: 80px 60px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, #ffc5ff 0%, #fcf4ff 45%, #bff8b6 130%);
}


.cta-box>* {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-weight: 600;
    max-width: 680px;
    margin: 18px auto 20px;
    line-height: 1.15;
    font-size: 52px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}


/* CTA Box Ends */


/* Footer Starts */
.footer-links {
    list-style: none;
    padding: 0px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-box h5 {
    margin-bottom: 15px;
}

/* Footer Ends */

#breadcrumbs {
    color: white;
    font-weight: 600;
    font-size: 12px;
}

#breadcrumbs span a {
    color: white;
    font-weight: 600;
    font-size: 12px;
}

/* Gallery Starts */
.gallery-box img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: top center;
}

/* Gallery Ends */

.whatsapp-sticky {
    background-color: #25d366;
    position: fixed;
    bottom: 40px;
    right: 20px;
    padding: 10px 30px;
    color: white;
    z-index: 200;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: inline-flex;
    align-items: center;
}


.desktop-fixed-buttons {
    align-items: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgb(104 22 104 / 66%);
    border-radius: 6px !important;
    -webkit-border-radius: 6px !important;
    -moz-border-radius: 6px !important;
    -ms-border-radius: 6px !important;
    -o-border-radius: 6px !important;
    bottom: -100px;
    display: flex;
    justify-content: center;
    left: 50%;
    min-height: 45px;
    position: fixed;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    z-index: 200
}

.desktop-fixed-buttons a {
    color: #fff !important;
    padding: 15px 25px
}

.desktop-fixed-buttons a img,
.desktop-fixed-buttons a img:hover {
    transition: all .5s linear;
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    -ms-transition: all .5s linear;
    -o-transition: all .5s linear
}

.desktop-fixed-buttons a img:hover {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg)
}

.desktop-fixed-buttons-items:after {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: hsla(0, 0%, 100%, .715);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    bottom: 100%;
    color: #560a56;
    content: attr(data-title);
    font-size: 14px;
    font-weight: 700;
    left: 50%;
    opacity: 0;
    padding: 5px 30px;
    position: absolute;
    transform: translateX(-50%);
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;
    visibility: hidden;
    white-space: nowrap;
    z-index: 9999
}

.desktop-fixed-buttons-items:hover:after {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
    visibility: visible
}



/* Media Queries Starts */

@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {}

@media (max-width: 768px) {

    .glow-shape1,
    .glow-shape2 {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 36px;
        font-weight: 600;
    }

    .home-banner-image-wrapper {
        margin-top: 50px;
    }

    .home-banner-section {
        padding-bottom: 50px;
    }

    .intro-image-wrapper {
        margin-bottom: 50px;
    }

    .section {
        padding: 25px 0px;
    }

    h2 {
        font-size: 24px;
    }

    .play-icon {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .nav-cta .btn-purple,
    .nav-cta .btn-transparent {
        display: none;
    }

    .whatsapp-sticky {
        display: none;
    }

    h1 {
        font-size: 25px !important;
    }

    h2 {
        font-size: 22px !important;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }


}

/* Media Queries Ends */