/* style 1 */
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Albert Sans;
    color: #333;
    background-color: #FDFBF5;
}

/* Header */
.navbar {
    background-color: #1E1E1E;
    padding: 1rem 2rem;
}
.navbar .nav-item a:hover {
    color: #00d9a7 !important;
}
.navbar-nav{
    gap: 30px;
}
.auth-btn{
    gap: 0px;
}
.navbar-brand img {
    height: 31.35px;
    width: 255px;
    object-fit: contain;
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    height: 100%;
    border-radius: 40px !important;
}
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar .nav-item .btn-trial:hover{
    color: black !important;
}
.btn-trial {
    color: #000;
    background-color: #fff;
    padding: 8px 12px 8px 24px !important; /* Adjust padding for a smaller button */
    font-weight: bold;
    margin-left: 10px;
    align-items: center;
    font-size: 16px;
    border-radius: 50px; /* Rounded button */
    font-family: Albert Sans;
    font-weight: 500;
}
.slider-img-text{
    font-size: 34px;
    font-family: 'Blinker';
    font-weight: 400;
}
.testimonials-section h1{
    font-family: Blinker;
    font-weight: 400;
    font-size: 44px;
}
.btn-trial .icon-wrapper {
    background-color: #000; /* Black background for icon */
    border-radius: 50%; /* Makes it rounded */
    margin-left: 15px; /* Space between text and icon */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    display: inline-flex;
}
.btn-trial .icon-wrapper i {
    color: #37C9AF;
    transform: rotate(45deg);
}
.navbar-collapse {
    justify-content: space-between; /* Space items evenly */
}
/* Additional styles for perfect alignment and spacing */
.navbar-nav.ml-auto {
    align-items: center; /* Align buttons with navbar items */
}
.navbar-nav-center {
    display: flex;
    justify-content: center;
    flex-grow: 1; /* Center align the menu */
}

.feature-main-title{
    font-family: Blinker;
    font-size: 44px;
    font-weight: 400;
    text-align: center;
}

/* Sections */
.how-it-works, .features, .testimonials, .pricing {
    padding: 20px;
}

/* How It Works Section */
.container {
    max-width: 1200px;
    padding: 20px;
}

.features {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.feature-box {
    background-color: #fff;
    border: 1px solid #1E1E1E;
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    width: 504px;
    gap: 0px;
    opacity: 0px;
    font-family: Albert Sans;
    font-size: 20px;
    font-weight: 400;
}

.feature-title {
    font-weight: bold;
    font-size: 34px;
    color: #333;
    margin-bottom: 15px;
    font-family: Blinker;
    font-weight: 400;
    text-align: left;
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1E1E1E;
}

.feature-box .first li{
    background: #FDF0EB;
    padding: 15px;
    border-radius: 10px;
}

.feature-box .second li{
    background: #EFF6FC;
    padding: 15px;
    border-radius: 10px;
}

.feature-box .third li{
    background: #FFF2D8;
    padding: 15px;
    border-radius: 10px;
}

/* Bold text for specific words */
.feature-list li span {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        width: 100%;
    }
}

/* Testimonials Section */
.testimonials, .pricing {
    background: #fff;
}

.testimonial-slider {
    display: flex;
    overflow-x: scroll;
    gap: 20px;
}

.testimonial {
    width: 300px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

/* Pricing Section */
.pricing-options {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-option {
    background: #f1f1f1;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
}

/*Plan*/
.image-3{
    position: absolute;
    right: 0;
    top: 117px;
    z-index: -1;
}
.image-2{
    position: relative;
    top: 30px;
    left: 16px;
}

/* Footer */
.footer {
    background-color: #1E1E1E;
    color: #ffffff;
}
.footer .logo img {
    width: 255px;
    height: 31.35px;
    margin-right: 10px;
    object-fit: contain;
}
.footer h4 {
    margin: 10px 0;
    font-size: 14px;
    color: #ffffff;
    font-family: Blinker;
    font-weight: 600;
}
.footer a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    font-size: 14px;
    font-weight: 500;
    font-family: Albert Sans;
}
.footer a:hover {
    color: #00d9a7;
}
.footer .icons {
    display: flex;
    gap: 16px;
    justify-content: end;
}
.footer .icons a {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #00d9a7;
    text-decoration: none;
    font-size: 18px;
}
.contact-vector{
    position: absolute;
    bottom: -65px;
    left: -60px;
}
.copyright {
    width: 100%;
    text-align: center;
    padding-top: 15px;
    color: #FFFFFF;
    font-size: 14px;
    background: #121212 !important;
    font-family: Albert Sans;
    font-weight: 500;
}

.nav-item-btn{
    margin-top: 10px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .btn {
        width: 100%;
        margin-top: 10px;
    }

    .hero {
        padding: 40px 15px;
    }

    .steps, .feature-cards, .pricing-options {
        flex-direction: column;
        align-items: center;
    }

    .feature-card, .pricing-option, .testimonial {
        width: 90%;
    }

    .testimonial-slider {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .navbar{
        padding: 10px;
    }
    .navbar-nav .nav-link{
        font-size: 16px;
    }
    .navbar-nav{
        gap: 10px;
    }
    .auth-btn .nav-item{
        margin-top: 8px;
    }
    .btn-trial{
        width: 54%;
        padding: 5px 10px 5px 10px !important;
    }
    .header-logo {
        font-size: 20px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .step, .feature-card, .pricing-option {
        width: 100%;
        padding: 15px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .footer {
        font-size: 14px;
        padding: 15px;
    }
}

/*How It Works*/
.how-it-work-section{
    padding: 60px 0px;
}
/* Container Styling */
.custom-carousel .item {
    border: 2px solid #e0e0e0; /* Border color similar to the design */
    border-radius: 10px;       /* Rounded corners */
    overflow: hidden;
    text-align: center;
    padding: 10px;             /* Add padding to give space between border and content */
    background-color: #f8f8f8; /* Background color for each item */
}

/* Image Styling */
.custom-carousel .item img {
    max-width: 100%;
    border-radius: 10px;
}

/* Caption Styling */
.carousel-caption {
    font-family: Blinker;
    font-size: 34px;
    font-weight: 400;
    line-height: 40.8px;
    text-align: left;
    color: #1E1E1E;
    padding: 0;
    left: 10%;
    bottom: 3%;
}
#HowItWork .owl-item{
    width: 280px !important;
}
.text-top{
    font-family: Blinker;
    font-size: 34px;
    font-weight: 400;
    line-height: 40.8px;
    text-align: left;
    color: #1E1E1E;
    padding: 0;
    left: 10%;
    top: 3%;
}

.custom-line-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.custom-line-indicators .custom-line {
    width: 50px; /* Width of each line indicator */
    height: 4px; /* Height of each line indicator */
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-line-indicators .custom-line.active {
    background-color: #333; /* Active color for the selected line */
}

.how-it-work-section .description{
    font-family: Albert Sans;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 75px;
}
.how-it-work-section .title{
    font-family: Blinker;
    font-size: 54px;
    font-weight: 400;
    text-align: left;
}

.how-it-work-section .how-section-btn{
    border: 1px solid #1E1E1E;
    font-family: Albert Sans;
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
}


/*Carousel*/
.testimonials-section{
    justify-content: center;
    padding: 30px;
}

#news-slider {
  margin-top: 80px;
}
.post-slide {
    margin: 20px 15px 20px;
    width: 390px;
    background: #FFFFFF;
    border: 1px solid #1E1E1E;
    border-radius: 20px;
    padding: 25px 33px;
    gap: 25px;
    display: grid;
}
.testimonials-image{
    height: 152px;
    object-fit: cover;
    border-radius: 20px;
}
.carousel-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #37C9AF;
    border: 1px solid #1E1E1E;
    background: transparent;
}
.carousel-btn:hover {
    background-color: #333;
    color: #2cd3c0;
}
.carousel-btn-section{
    display: flex;
    gap: 10px;
    text-align: end;
    justify-content: end;
}
.testimonials-description{
    font-family: Albert Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    text-align: left;
}
.description-top{
    margin-top: 50px;
}
.description-bottom{
    margin-bottom: 50px;
}
.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}
.owl-controls .owl-buttons .owl-prev {
  background: #fff;
  position: absolute;
  top: -13%;
  left: 15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-next {
  background: #fff;
  position: absolute;
  top: -13%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}
.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}

.workflow-section{
    box-sizing: border-box;
    background: #FDF0EB;
    border: 1px solid #1E1E1E;
    border-radius: 20px;
    margin: 90px 1px 60px;
}
.workflow-section-bg{
    position: relative;
}
.workflow-section .description{
    font-family: Albert Sans;
    font-size: 56px;
    font-weight: 600;
    text-align: left;
    line-height: 67.2px;
    padding-left: 140px;
    position: relative;
    padding-bottom: 60px;
    padding-top: 135px;
}
.workflow-btn-section{
    display: inline-grid;
    gap: 40px;
}
.workflow-1{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 115%;
    object-fit: contain;
    z-index: 9;
}
.workflow-img-2{
    position: absolute;
    bottom: 8px;
    right: 45px;
}
.workflow-img-3{
    position: relative;
    left: 50px;
    top: 109px;
    width: 223px;
    height: 175px;
    object-fit: contain;
}
.workflow-img-4{
    position: relative;
    top: 327px;
    left: -13px;
}
.workflow-img-4-2{
    position: relative;
    top: 216px;
    left: -142px;
}

/***************************************** style 2 ******************************************/

.image-1{
    position: absolute;
    left: 50%;
    top: 33px;
    transform: translateX(-50%);
}

.testimonials-image-box{
    position: relative;
}
.testimonials-image-text{
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.testimonial-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}
.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 500;
}
.pricing-section h3{
    font-family: Blinker;
    font-weight: 400;
    font-size: 44px;
}
.footer.footer-top {
    padding: 108px 44px 4rem;
}
.footer .contact{
    position: relative;
}
.footer.copyright {
    position: relative;
    padding: 1rem 2rem;
}
.footer .vector-shapes {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 200%;
}
.footer .vector-shapes .image1,
.footer .vector-shapes .image2 {
    object-fit: contain;
    height: 100%;
}
.navbar {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 999;
}
.hero {
    background-image: url('../Images/subtract-img.png');
    padding: 146px 30px 6rem;
    color: #fff;
    background-position: bottom;
    position: relative;
    z-index: 1;
}
.hero::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    background-image: url('../Images/mask-group.png');
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: -1;
}
.hero-title {
    font-size: 84px;
    font-weight: 600;
    line-height: 100.8px;
    max-width: 1167px;
    width: 100%;
    font-family: Blinker;
}
button{
    font-family: Albert Sans !important;
    font-weight: 500 !important;
}
a{
    font-family: Albert Sans !important;
    font-weight: 500 !important;
}
.hero-text {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 62px;
    max-width: 1100px;
}

.section-title {
    font-size: 44px;
    line-height: 52.8px;
    text-transform: capitalize;
}
.pricing-section{
    position: relative;
}
.pricing-section-title {
    margin-bottom: 100px;
}

.pricing-item-box {
    border: 1px solid #1E1E1E;
    padding-inline: 35px;
    border-radius: 20px;
    position: relative;
    background-color: #fff;
}

.pricing-badge {
    border-radius: 0 0 20px 20px;
    font-size: 30px;
    text-align: center;
    display: inline-block;
    margin-bottom: 36px;
    padding: 10px 60px;
    position: relative;
    top: -1px;
}
.pricing-badge-1, .pricing-badge-4 {
    background-color: #B2FBEE;
}
.pricing-badge-2, .pricing-badge-5 {
    background-color: #FFD25D;
}
.pricing-badge-3, .pricing-badge-6 {
    background-color: #c6ff5d;
}
.pricing-items {
    list-style: none;
    margin-bottom: 50px;
}
.pricing-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 24px;
    color: #2D2E2E;
}
.pricing-item-icon {
    color: #37C9AF;
}
.pricing-item-box .pricing-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(50%);
    width: 100%;
    text-align: center;
}
.btn-trial-outline {
    border: 1px solid #1E1E1E;
}
.btn-trial-dark {
    background-color: #1E1E1E;
    color: #fff;
}
.btn-trial-dark:hover {
    color: #fff;
}
.btn-trial-dark .icon-wrapper {
    background-color: #fff;
}
.how-it-work-section .owl-dots {
    position: absolute;
    right: 100%;
    bottom: 0;
    width: 51%;
    display: flex;
    padding-inline-end: 24px;
}
.how-it-work-section .owl-dots .owl-dot {
 flex-grow: 4;
}
.how-it-work-section .owl-dots .owl-dot:not(:last-child){
    margin-inline-end: 7px;
}
.how-it-work-section .owl-dots .owl-dot span {
    margin: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(30, 30, 30, 0.1);
}

.how-it-work-section .owl-dots .owl-dot.active span{
    background-color: #1E1E1E;
}
.btn-font-20{
    font-size: 20px;
}
.pricing-item-box{
    min-height: 561px;
}

/************************************************* style 3 *******************************************/
/* Responsive breakpoints */
@media (max-width: 1200px) {
    .workflow-img-4,
    .workflow-img-4-2,
    .workflow-img-3 {
     display: none;
    }
    .workflow-1 {
        position: unset;
        height: 400px;
        margin-top: -65px;
    }
    .workflow-section .description {
        padding-top: 0;
    }
}
@media (max-width: 1100px) {
    .footer.footer-top {
        padding-top: 70px;
    }
    .footer .icons {
        justify-content: start;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 26px;
        line-height: 1;
        text-align: center;
    }
    .hero-text {
        font-size: 1rem;
    }
    .feature-box {
        flex: 1 1 100%;
    }
    .testimonials-section h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 18px;
        text-align: center;
    }
    .how-section-btn{
        margin-bottom:25px !important;
    }
    .btn-trial-dark{
        width: 75%;
    }
    .pricing-section .col-lg-4{
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
    .navbar-nav .nav-item {
        margin: 5px 0;
    }
    .how-it-work-section .title {
        font-size: 1.5rem;
    }
    .hero-buttons .btn-trial {
        width: 100%;
    }
    .pricing-item-box-two{
        margin-top: 55px;
    }
    .pricing-item-box-thrre{
        margin-top: 55px;
    }
    .btn-trial-outline{
        width: 75%;
    }
    .workflow-1 {
       height: 300px;
    }
    .workflow-img-3 {
        display: none;
    }

    .workflow-img-4-2 {
        display: none;
    }

    .image-3 {
        display: none;
    }

    .workflow-section .description {
        font-family: Albert Sans;
        font-size: 45px;
        font-weight: 600;
        text-align: center;
        line-height: 46.2px;
        padding-left: 0px !important;
    }
    .workflow-btn-section{
        margin-top: 25px;
        display: flex !important;
        justify-content: center;
    }

    .workflow-btn-section-btn-2{
        margin-top: 15px !important;
    }
    .workflow-btn-section-btn-2{
        margin-top: 40px !important;
    }
    .workflow-img-2{
        display: none;
    }
    .hero::after{
        Background-image: none;
    }
    .image-1{
        display: none;
    }
    .image-2{
        display: none;
    }
    .footer .vector-shapes,
    .image3 {
        display: none;
    }
    .post-slide {
        width: 100%;
        margin: 0;
    }
    .image-3 {
        top: 200px;
    }
    .hero{
        padding-top: 90px;
    }
    .hero-text{
        margin-bottom: 35px;
    }
    .feature-main-title{
        font-size: 22px;
    }
    .feature-title{
        font-size: 20px;
    }
    .feature-list li{
        font-size: 13px;
    }
    .how-it-work-section{
        padding-bottom: 40px;
    }
    .testimonials-section{
        padding-top: 5px;
    }
    #news-slider{
        margin-top: 25px;
    }
    .carousel-btn{
        width: 40px;
        height: 40px;
    }
    .pricing-section h3{
        font-size: 26px;
        line-height: 28px;
        margin-bottom: 35px;
    }
    .testimonials-description{
        font-size: 16px;
    }
    .testimonial-title{
        font-size: 18px;
    }
    .testimonial-text{
        font-size: 14px;
    }
    .pricing-badge{
        font-size: 20px;
    }
    .pricing-item{
        font-size: 18px;
    }
    .workflow-section .description{
        margin-top: 25px;
        font-size: 30px;
    }
    .workflow-img-1{
        display: none;
    }
    .slider-img-text{
        font-size: 23px;
    }
    .how-it-work-section .description{
        margin-bottom: 30px;
    }
    .workflow-section .description{
        font-size: 18px;
        line-height: 27px;
    }
    .hero-title{
        text-align: left;
    }
    .hero-text{
        text-align: left !important;
    }
    .btn-trial {
        display: flex;
        justify-content: space-between;
        padding: 5px 8px !important;
    }
    .btn-font-20{
        font-size: 17px;
    }
    .how-it-work-section .how-section-btn{
        font-size: 17px;
    }
    .footer-top{
        padding-top: 20px !important;
    }
    .logo{
        padding-bottom: 15px;
    }
    .header-btn{
        font-size: 16px;
    }
    .btn-trial .icon-wrapper{
        margin-left: 68px;
    }
    .footer{
        font-size: 13px;
    }
    .workflow-section{
        margin-bottom: 30px;
    }
    .mv-ml-0{
        margin-left: 0px;
    }
    .header-btn{
        white-space: nowrap;
    }
    .header-btn .icon-wrapper{
        margin-left: unset;
    }
    .pricing-item-box{
        min-height: unset;
    }
    .btn-trial{
        padding-left: 15px !important;
    }

}

@media (max-width: 1920px) {
    .hero{
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (max-width: 600px) {
    .footer.footer-top {
        padding: 50px 20px 2rem;
    }
    .workflow-section{
        margin-top: 50px;
    }
}