html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Inria Sans", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    padding: 0px !important;
    margin: 0px;
    background-color: #040411;
    font-size: 20px;
    color: #CCCCCC;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}
.btn:focus{
    box-shadow: none;
}

.light{
    font-weight: 300;
}
.regular{
    font-weight: 400;
}
.bold{
    font-weight: 700;
}

.poppins-regular{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.poppins-bold{
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}
.poppins-extra-bold{
    font-family: "Poppins", sans-serif;
    font-weight: 800;
}

/* ------------------ Header ------------------ */
.header {
    background-color: transparent;
    z-index: 9;
    width: 100%;
    position: sticky;
    top: 0px;
    left: 0px;
    padding: 31px 0px;
    transition: all 0.3s ease-in-out;
}
.header.dropdown-open {
    background-color: #040411; /* or any color you want */
    transition: background-color 0.3s ease;
}
.header.sticky-bar {
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}
@media (min-width: 1200px) {
.header .container{
    max-width: 1580px;
}
}
.navbar-brand {
    color: #BBDD48;
    font-size: 26px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 1.04px;
    transition: all 0.3s ease-in-out;
    margin-right: 30px;
}
.navbar-brand span {
    color: #23B2E0;
}
.navbar-brand:hover {
    color: #BBDD48;
}
.logo-desktop {
    max-height: 50px;
    width: auto;
}
.logo-mobile {
    max-height: 40px;
    width: auto;
}
.navbar-nav {
    gap: 80px;
}
.navbar-nav .nav-link {
    display: block;
    color: #FFF;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0.8px;
    transition: all 0.2s ease-in-out;
    padding: 0px;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.page-active, .navbar-nav .nav-link.active{
    color: #BBDD48;
}
.btn-header {
    border-radius: 50px;
    border: 1px solid #FFF;
    padding: 9px 30px;
    color: #FFF;
    font-size: 20px;
    line-height: 22px;
    transition: all 0.3s ease-in-out;
    margin-left: 30px;
}
.btn-header:hover {
    background-color: #BBDD48;
    color: #000000;
    border-color: #BBDD48;
}

/* ------------------ Dropdown (Click Only) ------------------ */
.mega-section {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background-color: #040411;
    z-index: 999;
    padding: 60px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.30);
}
.mega-inner {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mega-inner p{
    color: #BBDD48;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
}
.mega-section .dropdown-item {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.mega-section .dropdown-item:last-child{
    margin-bottom: 0px;
}
.mega-section .dropdown-item:hover {
    color: #23B2E0;
}

/* ------------------ Hamburger Menu ------------------ */
.navbar-toggler-icon {
    background-image: url(../img/icon/hamburger-icon.svg);
}
.navbar-toggler{
    padding: 0px;
    border: 0px;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.offcanvas{
    border-radius: 20px 0px 0px 20px;
    background: linear-gradient(180deg, #040411 -3.18%, #0F2626 99.97%);
    transition: transform 0.3s ease-in-out;
    height: 100vh;
}
.offcanvas-body{
    padding: 50px 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 20px 0px 0px 20px;
}
.offcanvas .custom-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
}
.offcanvas .custom-close img{
    width: 35px;
}

/*Book a Demo Modal*/
.modal-content{
    position: relative;
    border-radius: 20px;
    background: linear-gradient(180deg, #040411 -3.18%, #0F2626 99.97%);
    padding: 100px 0px;
    border: 0px;
}
.modal-content .btn-close {
    --bs-btn-close-bg: url(../img/icon/modal-close-icon.svg);
    position: absolute;
    top: 40px;
    right: 40px;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.modal-content .btn-close:hover{
    --bs-btn-close-bg: url(../img/icon/modal-close-hover.svg);
}
.modal-content .btn-close:focus{
    box-shadow: none;
}
.contact-title{
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 60px;
}
.modal-body{
    padding: 0px 30px;
}
.modal-body .cust-gap, .contact-box .cust-gap, .cust-form .cust-gap{
    --bs-gutter-y: 30px;
    --bs-gutter-x: 20px;
}
.form-label{
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
}
.form-control{
    border-radius: 10px;
    background: #FFFFFF33;
    border-color: transparent;
    padding: 7px 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
}
.form-control:focus{
    background: #FFFFFF33;
    color: #ffffff;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.30);
}
.btn-theme{
    border-radius: 50px;
    background: #BBDD48;
    padding: 9px 30px;
    width: 300px;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    border-color: #BBDD48;
    transition: all 0.3s ease-in-out;
}
.btn.btn-theme:hover{
    background: transparent;
    color: #BBDD48;
    border-color: #BBDD48;
}

/*Hero Sec*/
.hero-sec{
    padding: 60px 0px 80px 0px;
}
.hero-title{
    color: #FFF;
    text-align: center;
    font-size: 80px;
    font-weight: 700;
    line-height: 90px;
    margin-bottom: 40px;
}
.hero-text{
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px; /* 141.667% */
    letter-spacing: 0.48px;
    margin-bottom: 50px;
}
.hero-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.hero-btn .btn-theme,
.hero-btn .btn-header{
    width: 300px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-btn .btn-header{
    margin-left: 0;
}

/* 404 Error Page Styles */
.error-404-content {
    text-align: center;
}

.error-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.error-text {
    font-size: 120px;
    font-weight: 800;
    color: #BBDD48;
    line-height: 1;
    font-family: "Poppins", sans-serif;
}

.error-tooth {
    width: 80px;
    height: 80px;
    filter: invert(63%) sepia(98%) saturate(364%) hue-rotate(56deg) brightness(95%) contrast(91%);
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.error-quick-links {
    margin-top: 60px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #CCCCCC;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-link-item:hover {
    background: rgba(187, 221, 72, 0.1);
    border-color: rgba(187, 221, 72, 0.3);
    color: #BBDD48;
    transform: translateY(-5px);
}

.quick-link-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    filter: invert(80%);
    transition: filter 0.3s ease;
}

.quick-link-item:hover .quick-link-icon {
    filter: invert(63%) sepia(98%) saturate(364%) hue-rotate(56deg) brightness(95%) contrast(91%);
}

/*Contact Us*/
.contact-sec{
    border-radius: 20px;
    background: #ffffff0d;
    padding: 40px;
}
.contact-box{
    border-radius: 20px;
    background: #040411;
    padding: 60px;
}
.sub-title{
    color: #BBDD48;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0.48px;
}
.contact-sec p{
    margin-bottom: 30px;
    line-height: 30px;
}
.link{
    color: #CCCCCC;
    transition: all 0.3s ease-in-out;
}
.link:hover{
    color: #23B2E0;
}

/*Why Dentists Trust Our Software*/
.sec-pad{
    padding: 100px 0px;
}
.title{
    color: #FFF;
    font-size: 60px;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: 20px;
}
p{
    line-height: 34px;
    letter-spacing: 0.4px;
}
.trust-text{
    margin-bottom: 40px;
}
.yc-op-box .yc-op-img{
    margin-bottom: 30px;
}
.sub-title-big{
    color: #FFF;
    font-size: 26px;
    font-weight: 700;
    line-height: 28px;
}
.yc-op-box .sub-title-big{
    margin-bottom: 10px;
}
.yc-op-box p{
    margin-bottom: 0px;
}
.yc-op .cust-gap{
    --bs-gutter-x: 60px;
    --bs-gutter-y: 60px;
}

/*Testimonial*/
/*** About ***/
@media (min-width: 576px) {
.container.right-touched{
    max-width: 100% !important;
}
.right-touched-pad{
    padding-left: calc(((100% - 540px) / 2) + .75rem);
}
}
@media (min-width: 768px) {
.right-touched-pad{
    padding-left: calc(((100% - 720px) / 2) + .75rem);
}
}

@media (min-width: 1200px) {
.right-touched-pad{
    padding-left: calc(((100% - 1140px) / 2) + .75rem);
}
}

@media (min-width: 1400px) {
.right-touched-pad{
    padding-left: calc(((100% - 1320px) / 2) + .75rem);
}
}

#testimonial{
    margin-bottom: 40px;
}
.customer-profile-box{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.customer-profile{
    min-width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}
.profile-name{
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0.96px;
    margin-bottom: 8px;
}
.profile-clinic{
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.32px;
}
.testimonial-box p{
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0px;
    text-overflow: ellipsis;
}
.test-link{
    color: #BBDD48;
    transition: all 0.3s ease-in-out;
}
.test-link:hover{
    color: #23B2E0;
}
.rating{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}
.rating-box{
    display: flex;
    align-items: center;
    gap: 7px;
}
.rating p{
    color: #CCC;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.32px;
    margin-bottom: 0px;
}
#testimonial .owl-carousel {
    overflow: visible;
    margin-bottom: 70px;
}

#why-choose-sfd .owl-carousel {
    overflow: visible;
    margin-bottom: 0px;
}
#why-choose-sfd {
    padding-bottom: 60px;
}
.owl-theme .owl-nav {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    margin-right: 290px;
}
#why-choose-sfd .owl-theme .owl-nav {
    position: relative;
    margin-top: 20px;
    margin-right: 0px;
    justify-content: center;
}
#testimonial .owl-theme .owl-nav {
    margin-top: 0px;
    position: absolute;
    right: 0px;
    gap: 5px;
    bottom: -117px;
}
.owl-prev, .owl-next{
    width: 60px;
    height: 60px;
    background: #BBDD48 !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
}
#testimonial .owl-prev, #testimonial .owl-next{
    width: 42px;
    height: 42px;
}
#testimonial .owl-prev img, #testimonial .owl-next img{
    width: 10px;
}
.owl-prev.disabled img,
.owl-next.disabled img {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.owl-prev img,
.owl-next img {
    opacity: 1;
    transition: opacity 0.3s ease;
}
.owl-stage{
    padding-left: 0px !important;
}

/*Why Choose SDF*/
.card-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    gap: 295px;
    flex-direction: column;
    cursor: pointer;
    z-index: 0;
}

/* Use variable for dynamic background */
.card-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center top;
    border-radius: 20px;
    transition: transform 0.5s ease;
    z-index: -1;
}

.card-box:hover::before {
    transform: scale(1.1);
}
/* Ensure content stays on top */
.card-box .top,
.card-box .bottom {
    position: relative;
    z-index: 1;
    padding: 30px;
}

.card-box .bottom {
    width: fit-content;
    margin-left: auto;
}
.add-btn{
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff;
}
.add-btn img{
    width: 20px !important;
}
.add-btn:hover{
    background-color: #cccccc;
}
.card-small-title{
    color: #040411;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}
.card-title{
    color: #040411;
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 1.04px;
}

/*Software Page*/
.hero-small-title{
    margin-top: 30px;
}
.hero-small-title .small-title{
    color: #CCC;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.8px;
}
.hero-sec.inner-hero{
    padding-top: 100px;
}
#features .owl-carousel .item {
    height: 100%;
}
.feature-box{
    border-radius: 20px;
    background: #26262D;
    padding: 50px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.feature-box .features-icon{
    margin-bottom: 20px;
}
#features .owl-carousel .owl-item img {
    display: block;
    width: auto;
}
.sub-title1{
    color: #FFF;
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 1.04px;
    margin-bottom: 30px;
}
.cust-ul ul{
    margin-bottom: 0px;
}
.cust-ul li{
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.box001{
    width: 100%;
    height: 100%;
    padding: 50px;
    border-radius: 30px;
    background: #0404114d;
}
.box001 .sub-title1{
    margin-bottom: 30px;
    color: #23B2E0;
}
.pricing-text{
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0.48px;
}
.cust-form .form-control{
    padding: 20px;
}

/*Steps Sec*/
section {
    width: 100%;
}
.top-section {
    height: 100vh;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-section h1 {
    font-size: 3rem;
}
.steps-wrapper {
    min-height: 479vh;
}
.steps-container {
    display: flex;
    position: relative;
}
.step-left{
    width: 48%;
    color: #111;
    position: sticky;
    padding-top: 150px;
    top: 20px;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.step-left h2,
.step-left h3 {
    will-change: transform, opacity;
}
.step-left h2 {
    color: #BBDD48;
    font-size: 80px;
    font-weight: 700;
    line-height: 90px;
    letter-spacing: 3.2px;
    margin-bottom: 30px;
}
.step-left h3 {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 1.2px;
    margin-bottom: 0px;
}
.step-right {
    width: 52%;
}
.step-content {
    margin-bottom: 100px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.step-right .step-content:last-child{
    margin-bottom: 0px;
}
.step-content.active {
    opacity: 1;
}
.next-section {
    height: 100vh;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}
.next-section h2 {
    font-size: 2rem;
    color: #333;
}
.step-box{
    border-radius: 20px;
    background: #040411;
    padding: 10px;
}
.step-img{
    border-radius: 20px;
    overflow: hidden;
}
.step-data{
    padding: 50px 40px 40px;
}
.step-data p{
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.step-data p, .step-data .cust-ul{
    margin-bottom: 30px;
}
.mobile-step-wrapper{
    display: none;
}

/**/
.inner-hero .hero-text, .connect-technician{
    margin-bottom: 40px;
}
.connect-technician{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.connect-technician .form-control{
    color: #FFF;
    font-size: 96px;
    font-weight: 700;
    padding: 10px 25px;
    text-align: center;
}
.hero-text ol {
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}
.hero-text ol li {
    margin-bottom: 10px;
}
.yc-op-box .cust-ul p{
    color: #ccc;
}
textarea{
    resize: none;
}
.contact-us{
    display: flex;
    align-items: center;
    gap: 20px;
}
.icon-box{
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #BBDD48;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-us p{
    color: #CCC;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 0px;
}
.contact-us .link{
    font-weight: 400;
}
.icon-box.linkedIn{
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.icon-box.linkedIn img{
    width: 32px;
    height: 32px;
    object-fit: contain; /* Options: cover | contain | fill | none | scale-down */
    display: block;
}
.about-us .about-us-text, .about-us p{
    margin-bottom: 30px;
}
.about-us-text{
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.6px;
}
.box001.download{
    border: 1px solid #FFF;
    min-height: 356px;
}
.box001.download .sub-title1{
    color: #BBDD48;
    margin-bottom: 10px;
}
.box001.download p{
    color: #FFF;
    line-height: 30px;
    margin-bottom: 0px;
}
.box001.download p .link{
    color: #23B2E0;
    transition: all 0.3s ease-in-out;
}
.box001.download p .link:hover{
    color: #BBDD48;
}
.privacy{
    margin-bottom: 60px;
}
.sec-pad .privacy:last-child{
    margin-bottom: 0px;
}
.privacy h2, .testimonial-text h2{
    color: #23B2E0;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}
.privacy p, .privacy ol li::marker{
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 0.48px;
}
.privacy ol, .privacy ol li{
    margin-bottom: 16px;
}
.privacy p:last-child, .privacy ol:last-child, .privacy ol li:last-child, .review-text p, .testimonial-text p:last-child{
    margin-bottom: 0px;
}
.cust-form .privacy .form-label span{
    color: #FF3C3C;
}

/*Testimonial Page*/
.testimonial-box{
    border-radius: 30px;
    border: 1px solid #FFF;
    background: #040411;
    padding: 40px;
    width: 100%;
    height: 100%;
}
.testi-pro-box{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.testi-pro-img{
    min-width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    filter: drop-shadow(0px 20px 60px rgba(0, 0, 0, 0.10));
}
.testi-pro-box .cust-name{
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 10px;
}
.testi-pro-box .clinic{
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 18px;
}
.quote{
    margin-bottom: 30px;
}
.quote img{
    width: 40px;
    height: 40px;
}
.testimonial-box .review-text{
    min-height: 170px;
}
.review-text .read-more{
    color: #23B2E0;
    transition: all 0.3s ease-in-out;
}
.review-text .read-more:hover{
    color: #BBDD48;
}

@media (min-width: 1400px) {
    .testimonials .modal-xl {
        --bs-modal-width: 1340px;
    }
}

@media (max-width: 1200px) {
    .testimonials .modal-xl {
        --bs-modal-width: 960px;
    }
}

@media (max-width: 992px) {
    .testimonials .modal-xl {
        --bs-modal-width: 740px;
    }
}

@media (max-width: 768px) {
    .testimonials .modal-xl {
        --bs-modal-width: 560px;
    }
}

/*@media (min-width: 576px) {
    .testimonials .modal-xl {
        --bs-modal-width: 580px;
    }
}*/

.testimonials .modal-content{
    padding: 100px;
}
.testimonials .modal-body{
    padding: 0px;
}
.testimonial-text {
    max-height: 480px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* for smoother scroll on iOS */
    scrollbar-width: none; /* Firefox */
}
.testimonial-text::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}
.testimonial-text .about-us-text{
    color: #23B2E0;
    margin-bottom: 30px;
}
.testimonial-text h2{
    margin-bottom: 30px;
    color: #ffffff;
}
.testimonial-text p{
    margin-bottom: 30px;
}
.testimonial-text .customer-name{
    color: #BBDD48;
    margin-bottom: 10px;
}
.br-10{
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    width: fit-content;
}
.testimonial-text .link{
    text-decoration: underline;
}

/*Faq Page*/
.nav-pills .nav-item .nav-link{
    border-radius: 10px;
    background: #040411;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    padding: 19px 30px;
    transition: all 0.3s ease-in-out;
}
.nav-pills .nav-item .nav-link.active, .nav-pills .nav-item .nav-link:hover{
    background-color: #BBDD48;
    color: #000;
}
.custom-horizontal-padding {
    padding-left: 80px;
    padding-right: 80px;
}
#faq .nav-pills{
    position: relative;
}
#faq .owl-nav{
    margin: 0px;
    justify-content: space-between;
    gap: 0px;
}
#faq .owl-prev{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -85px;
    width: 50px;
    height: 50px;
    background-color: transparent !important;
    margin: 0px;
    border: 1px solid #ffffff;
}
#faq .owl-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -85px;
    width: 50px;
    height: 50px;
    background-color: transparent !important;
    margin: 0px;
    border: 1px solid #ffffff;
}
#faq .owl-prev.disabled,
.owl-next.disabled,
.owl-prev.disabled img,
.owl-next.disabled img {
    opacity: 0.5 !important;
    transition: opacity 0.3s ease;
}

.accordion-item {
    overflow: hidden;
    border-radius: 8px !important;
    border: 1px solid #23b2e04d;
    background: #ffffff1a;
    box-shadow: 0px 0px 30px 0px #0000000d;
    transition: all 0.3s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../img/icon/accordion-button-not-collapsed.svg);
    transform: none;
    content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button.collapsed:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    background-image: url(../img/icon/accordion-button-collapsed.svg);
    transition: all 0.3s ease-in-out;
}
.accordion-body {
    background: #040411;
    padding: 0px 40px 30px 30px;
    color: #CCC;
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0.4px;
}
.accordion-button h5 {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 0px;
}
.accordion-button:not(.collapsed) {
    border: 0px;
    background: #040411;
    box-shadow: none;
}
.accordion-button {
    background: transparent;
    padding: 23px 100px 23px 30px;
    transition: all 0.3s ease-in-out;
}

/*Video Playlist Page*/
.video-outer-box{
    border-radius: 30px;
    border: 1px solid #FFF;
    background: #04041133;
    width: 100%;
    height: 100%;
    padding: 10px;
}
.video-inner-box{
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.video-inner-box::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #04041180;
    position: absolute;
    top: 0px;
    left: 0px;
}
.play-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.video-list .cust-gap{
    --bs-gutter-y: 100px;
    --bs-gutter-x: 30px;
}
.z-1{
    position: relative;
    z-index: 1;
}
.video-inner-box iframe{
    height: 380px;
    width: 100%;
}
.video-tutorial .video-inner-box{
    border-radius: 30px;
}
.count{
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 1.6px;
    text-align: center;
}
.playlist-count{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 65px;
    z-index: 1;
}
.video-tutorial .video-inner-box::after{
    background-color: #12121280;
    width: 50%;
    left: auto;
    right: 0px;
}
.video-tutorial .video-outer-box{
    margin-bottom: 40px;
}
.video-tutorial .link{
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px; /* 150% */
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.video-tutorial .link:hover{
    color: #BBDD48;
}
.video-tutorial .video-inner-box img{
    width: 100%;
}

.hero-sec{
    overflow: visible;
}
.hero-sec::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    margin: 0;
    height: 100%;
    background: radial-gradient(ellipse at 5% 13%, #23b2e0 0%, transparent 40%), 
                radial-gradient(ellipse at 47% 7%, #bbdd48cc 0%, transparent 40%), 
                radial-gradient(ellipse at 43% 50%, #166b4ecc 0%, transparent 40%);
    background-blend-mode: screen;
    background-color: #040411;
    background-size: 200% 200%;
    background-repeat: repeat;
    animation: meshFlow 20s ease-in-out infinite alternate;
    overflow-x: hidden;
}

@keyframes meshFlow {
0% {
    background-position: 0% 80%;
}
50% {
    background-position: 50% 50%;
}
100% {
    background-position: 0% 100%;
}
}

.landing-bg-second{
    overflow: visible;
    position: relative;
}
.landing-bg-second::before{
  content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    width: 120%;
    height: 120%;
    margin: 0;
    background:
        radial-gradient(ellipse at 72% 0%, #23b2e0 0%, transparent 40%),
        radial-gradient(ellipse at 0% 0%, #bbdd48cc 0%, transparent 40%),
        radial-gradient(ellipse at 45% 50%, #166b4ecc 0%, transparent 40%);
    background-blend-mode: screen;
    background-color: #040411;
    background-size: 200% 200%;
    background-repeat: no-repeat;
    animation: meshFlow 20s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes meshFlow {
0% {
    background-position: 0% 80%;
}
50% {
    background-position: 50% 50%;
}
100% {
    background-position: 0% 100%;
}
}
.container{
    position: relative;
    z-index: 1;
}

/*Footer*/
.p-footer{
    padding: 100px 0px 40px;
}
.p-footer .sub-title{
    color: #23B2E0;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.96px;
    margin-bottom: 30px;
}
.p-footer .cust-gap {
    --bs-gutter-x: 56px;
}
.p-footer .cust-inner-gap{
    --bs-gutter-x: 19px;
}
.p-footer .f-menu-title{
    color: #BBDD48;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.4px;
}
.p-footer p{
    color: #CCC;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 30px;
}
.f-link{
    transition: all 0.3s ease-in-out;
}
.f-menu-title.right-side{
    margin-bottom: 10px;
}
.f-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}
.f-ul li a{
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    transition: all 0.3s ease-in-out;
}
.f-link:hover, .f-ul li a:hover{
    color: #23B2E0;
}
.s-footer{
    padding: 45px 0px;
    border-top: 1px solid #ffffff33;
}

.s-footer ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.s-footer ul li{
    color: #CCC;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.4px;
    text-align: center
}

.s-footer .f-link {
  color: #23B2E0;
}

.s-footer .f-link2 {
  color: #BBDD48;
}

.s-footer .f-link:hover {
  color: #BBDD48;
  text-decoration: underline;
}
.s-footer .f-link span{
    transition: all 0.3s ease-in-out;
}
.s-footer .f-link::before{
    content: '|';
    color: #CCC;
}
.s-footer .f-link span:hover{
    text-decoration: underline;
}

.text-theme{
    color: #BBDD48;
}
.text-blue{
    color: #23B2E0;
}
.mb-60{
    margin-bottom: 60px;
}

:root {
    scroll-padding-top: 100px; /* Adjust to your header height */
}

/* OR, for more precise control on each target section: */
#features,
#onboarding,
#tech-requirements,
#pricing {
    scroll-margin-top: 100px; /* Adjust based on your header height */
}


/* Default dropdown (placeholder shown) */
#currentSoftware {
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") 
              no-repeat right 1rem center/1rem auto;
  padding-right: 2.5rem;
  background-color: #FFFFFF33;
  border-radius: 0.375rem;
  color: #838383; /* grey text when nothing selected */
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}

/* When user has selected a real option (via JS) */
#currentSoftware.selected {
  color: #ffffff; /* white ONLY in selected state */
}
/* Improve option appearance where supported */
#currentSoftware option {
  color: #000; /* black text */
  background-color: #fff; /* white background */
}

/* Optional: placeholder stays grey */
#currentSoftware option[value=""] {
  color: #838383;
}

.mega-section .breadcrumb-item {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.mega-section .breadcrumb-item:last-child{
    margin-bottom: 0px;
}
.mega-section .breadcrumb-item:hover {
    color: #23B2E0;
}

/*FAQs Video Playlist Page*/
.faqs-video-outer-box{
    border-radius: 30px;
    border: 1px solid #FFF;
    background: #04041133;
    width: 100%;
    height: 100%;
    padding: 10px;
}
.faqs-video-inner-box{
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.faqs-video-inner-box::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #04041180;
    position: absolute;
    top: 0px;
    left: 0px;
}
.play-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.faqs-video-list .cust-gap{
    --bs-gutter-y: 100px;
    --bs-gutter-x: 30px;
}
.z-1{
    position: relative;
    z-index: 1;
}
.faqs-video-inner-box iframe{
    height: 280px;
    width: 100%;
}
.faqs-video-tutorial .video-inner-box{
    border-radius: 30px;
}
.count{
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 1.6px;
    text-align: center;
}
.playlist-count{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 65px;
    z-index: 1;
}
.video-tutorial .video-inner-box::after{
    background-color: #12121280;
    width: 50%;
    left: auto;
    right: 0px;
}
.video-tutorial .video-outer-box{
    margin-bottom: 40px;
}
.video-tutorial .link{
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px; /* 150% */
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.video-tutorial .link:hover{
    color: #BBDD48;
}
.video-tutorial .video-inner-box img{
    width: 100%;
}
/* Fix for video tutorial page - remove overlay blocking video controls */
.video-list .video-tutorial .video-inner-box::after {
    display: none;
}
.video-list .video-tutorial .video-inner-box iframe {
    position: relative;
    z-index: 2;
}


/* Fix for testimonial cards responsive display */
@media (min-width: 768px) and (max-width: 991px) {
    #testimonial .testimonial-box {
        min-height: 320px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    #testimonial .testimonial-box {
        min-height: 380px;
    }
}

/* Ensure testimonial boxes maintain consistent height */
#testimonial .owl-item {
    display: flex;
    align-items: stretch;
}

#testimonial .item {
    height: 100%;
}

/* Fix text overflow in smaller screens */
@media (max-width: 1199px) {
    #testimonial .testimonial-box p {
        -webkit-line-clamp: 5;
    }
}


/* Fix for testimonial carousel during resize */
#testimonial .owl-stage {
    display: flex;
    align-items: stretch;
}

#testimonial .testimonial-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#testimonial .customer-profile-box {
    flex-shrink: 0;
}

#testimonial .testimonial-box p {
    flex-grow: 1;
}

/* Ensure smooth transitions */
#testimonial .owl-item {
    transition: height 0.3s ease;
}


/* Make Read More links on index testimonials match testimonials page */
#testimonial .read-more {
    color: #23B2E0;
    transition: all 0.3s ease-in-out;
}

#testimonial .read-more:hover {
    color: #BBDD48;
}

/* User Guide Cards */
.guide-card {
    background: #0B0B14;
    border: 1px solid rgba(204, 204, 204, 0.1);
    border-radius: 16px;
    padding: 40px 30px 100px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-height: 450px;
    position: relative;
}

.guide-card:hover {
    border-color: #23B2E0;
    transform: translateY(-5px);
}

.guide-card h3 {
    text-align: center;
    margin-bottom: 25px;
}

.guide-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
}

.guide-icon img {
    width: 100%;
    height: auto;
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.guide-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #CCCCCC;
    font-size: 16px;
    line-height: 1.6;
}

.guide-list li:before {
    content: "-";
    position: absolute;
    left: 0;
    color: #23B2E0;
}

.guide-list li:last-child {
    margin-bottom: 0;
}

.guide-footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

.guide-footer .btn {
    display: inline-block;
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Required field asterisk */
.required {
    color: #ff0000;
}
