/********** Template CSS **********/
:root {
    --primary: #5a0eaa;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-purple {
    background-color: #5a0eaa !important;
    border-color: #5a0eaa !important;
    color: #FFFFFF !important;
}

.btn-purple:hover {
    background-color: #4a0d8f !important;
    border-color: #4a0d8f !important;
    color: #FFFFFF !important;
}

.btn-purple:focus,
.btn-purple:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(90, 14, 170, 0.5) !important;
    outline: none;
    border-color: #5a0eaa !important;
}

.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;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #0c0b0b;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #5a0eaa;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-item {
    height: 500px; /* Adjust to desired height */
}

#header-carousel .carousel-item img {
    height: 100%;
    object-fit: cover;
}

#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/caro-1.jpeg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}
.service-item video {
    height: 350px; /* adjust as needed */
    width: 100%;
    object-fit: cover;
}


.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}
.project-item video {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !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;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
html {
    scroll-behavior: smooth;
  }
  .pricing-card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-card ul li {
    margin-bottom: 0.5rem;
    font-size: 15px;
  }

  .btn-primary{
background-color: #5a0eaa !important;
border-color: #5a0eaa !important;
color: #FFFFFF !important;
}
.bg-primary{
    background-color: #fff !important;
  border-color: #5a0eaa !important;
  color: #5a0eaa !important;
}
.text-primary {
  /* background-color: #5a0eaa !important; */
  border-color: #5a0eaa !important;
  color: #5a0eaa !important;
}

a.text-primary {
  color: #5a0eaa !important;
}

a.text-primary:hover {
  color: #4a098f !important;
}
.btn-primary:hover {
  background-color: #4a098f !important;
  border-color: #4a098f !important;
  color: #fff !important;
}
.other-bg-primary{
    background-color: #4a098f !important;
}
.choose-plan-btn {
    border: 2px solid #5a0eaa !important;
    color: #5a0eaa !important;
    background-color: transparent !important;
    transition: all 0.3s ease-in-out;
  }
  
  .choose-plan-btn:hover,
  .choose-plan-btn:focus,
  .choose-plan-btn:active {
    background-color: #5a0eaa !important;
    color: #ffffff !important;
    border-color: #5a0eaa !important;
    box-shadow: none !important;
  }
.btn:focus,
.btn:active:focus,
.btn-primary:focus,
.btn-primary:active:focus {
    box-shadow: 0 0 0 0.25rem rgba(90, 14, 170, 0.5); /* #5a0eaa with 50% opacity */
    outline: none;
    border-color: #5a0eaa;
}
.border-purple {
    border: 2px solid #6f42c1; /* Bootstrap's 'purple' */
}

.text-purple {
    color: #5a0eaa !important;
}

.custom-cta:hover {
    background-color: #6f42c1 !important;
    color: #fff !important;
    border-color: #6f42c1 !important;
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* or use 'contain' if needed */
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
 }

.pricing-section {
    display: none;
}

.pricing-section.active {
        display: block;
}
.border-purple {
    border: 2px solid #6f42c1;
}

.text-purple {
    color: #6f42c1 !important;
}

.custom-cta {
    background-color: #fff !important;
    transition: all 0.3s ease;
    font-weight: 500;
}

.custom-cta:hover {
    background-color: #6f42c1 !important;
    color: #fff !important;
}

.custom-cta.active {
    background-color: #6f42c1 !important;
    color: #fff !important;
}
.custom-cta.active {
    background-color: #6f42c1 !important;
    color: #fff !important;
    border-color: #6f42c1;
}
.pricing-card {
    position: relative;
  }

.pricing-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: #6f42c1; /* Purple */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 0 0.5rem 0.5rem 0;
    text-transform: uppercase;
    z-index: 1;
}
/* Base Colors */
.text-purple { color: #5a0eaa; }

.timeline {
  position: relative;
  margin-top: 2rem;
  padding-left: 30px;
  padding-right: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #5a0eaa;
  transform: translateX(-50%);
}

/* Step container */
.step-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 60px;
}

.step-container.right {
  justify-content: flex-end;
}

.step-content {
  position: relative;
  background: #ffe6a3;
  border: 3px solid #fcb62a;
  padding: 1.5rem;
  width: 45%;
  border-radius: 6px;
}

.step-container.left .step-content::after,
.step-container.right .step-content::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
}

.step-container.left .step-content::after {
  right: -20px;
  border-left-color: #fcb62a;
}

.step-container.right .step-content::after {
  left: -20px;
  border-right-color: #fcb62a;
}

/* Step marker + label */
.step-marker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.step-icon {
  width: 32px;
  height: 32px;
  background: #5a0eaa;
  color: #fff;
  border-radius: 50%;
  line-height: 32px;
  margin: auto;
  font-size: 16px;
}

.step-label {
  margin-top: 5px;
  background: #fff;
  color: #5a0eaa;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 5px;
  border-bottom: 2px solid #fcb62a;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .step-container {
    flex-direction: column;
    align-items: center;
  }

  .step-content {
    width: 90%;
  }

  .step-container.left .step-content::after,
  .step-container.right .step-content::after {
    display: none;
  }
}
.price-display {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  color: #111;
}
.price-wrapper {
  position: relative;
  display: inline-block;
}

.price-label {
  position: absolute;
  top: -10px;
  background-color: #fcb62a; /* Gold background */
  color: black;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.price-label.left-label {
  left: -90px; /* Adjust to control how far in front it appears */
}

.price-label:not(.left-label) {
  right: -80px;
}
.price-inline-label {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0 5px;
  font-weight: 500;
}

.video-frame {
    border: 4px solid #5a0eaa; /* Yellow border */
    background: white;
    box-shadow: 0 0 20px rgba(252, 182, 42, 0.3);
  }