@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff !important;
    font-family: "Instrument Sans", sans-serif;
}

body {
    background: #000 !important;
}

ul {
    padding: 0 !important;
}

ul li {
    list-style: none;
}

.mob-btn {
    display: none !important;
}

a {
    text-decoration: none !important;
}

h1 {
    font-size: 70px !important;
    line-height: 80px !important;
    font-weight: 500 !important;
}

h2 {
    font-size: 52px !important;
    line-height: 60px !important;
}

.container {
    max-width: 1220px !important;
    padding: 0 20px !important;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: end;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #AFAFAF !important;
}

div#navbarNav {
    padding: 20px 5px;
}

.nav-btns {
    display: flex;
    align-items: center;
}

.navbar {
    position: absolute !important;
    top: 0;
    z-index: 3;
    width: 100%;
    padding: 40px 0 !important;
    background-color: #000;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar ul li a,
.nav-link {
    font-size: 14px !important;
}

.navbar-brand {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
}

.navbar-brand img {
    height: 60px;
    margin-right: 8px;
}

.nav-link {
    margin-right: 20px;
    color: #FAFAFA !important;
}

.nav-link:hover {
    color: #fff !important;
}

.btn-signup {
    background-color: #2f2f2f;
    color: #fff;
    border: 1px solid #ffffff2e;
    border-radius: 6px;
    font-size: 14px;
    padding: 7px 16px;
    transition: background 0.3s;
}

.btn-signup:hover {
    background-color: #444;
}

/* hero banner */
.hero-section {
    text-align: center;
    padding: 190px 0 120px;
    position: relative;
    overflow: hidden;
}

section.hero-section:before {
    position: absolute;
    content: '';
    background: #ffa3676e;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    filter: blur(100px);
    border-radius: 100%;
}

.hero-section h6 {
    color: #aaa;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.heading-color {
    background: linear-gradient(to right, #FFA367, #FF6767);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image img {
    max-width: 100%;
    position: relative;
}
.hero-content h1 {
    margin-bottom: 20px;
}
.hero-image {
    margin-top: 56px;
}

/* slider css */
.logo-slider-wrapper {
    padding: 100px 0 80px;
}

.logo-slider {
    max-width: 100%;
    margin: 0 auto;
}

.logo-slider .slick-slide img {
    height: 32px;
    object-fit: contain;
}

.logo-slider {
    position: relative;
}

.logo-slider .slide {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
}

.logo-slider:before,
.logo-slider:after {
    position: absolute;
    content: '';
    background: #000000;
    width: 220px;
    height: 100px;
    filter: blur(40px);
    z-index: 3;
}

.logo-slider:after {
    top: -40px;
    left: -40px;
}

.logo-slider:before {
    top: -40px;
    right: -40px;
}

/* how it works section */
.how-it-works {
    color: #fff;
    padding: 80px 0px;
    font-family: 'Inter', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 span {
    color: #ff6a3d;
}

.how-it-works-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.how-it-works-image {
    flex: 1 1 45%;
    text-align: center;
}

.how-it-works-image img {
    max-width: 100%;
    border-radius: 10px;
    height: 600px;
    transition: opacity 0.4s ease;
    width: 100%;
    object-fit: cover;
}

.how-it-works-accordion {
    flex: 1 1 45%;
}

.accordion-item {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 14px;
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px !important;
}

.accordion-header {
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
}

.accordion-item.active .accd-icon {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-item.active .accd-icon i {
    transform: rotate(45deg);
}

.accordion-item.active .bg-btn {
    background: #141414;
}

.bg-btn {
    width: 100%;
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: #aaa;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 0 20px 4px;
}

.bg-btn {
    background: #ffffff0a;
}

.bg-btn .accd-icon {
    background-color: rgba(255, 163, 103, 1);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    border-radius: 8px;
}

.bg-btn .accd-icon i {
    font-size: 12px;
    color: #000;
}

/* ai automation css */
.ai-automation {
    background-color: #18191b;
    color: #fff;
    padding: 80px 0 370px;
    overflow: hidden;
    position: relative;
}

.mockup-wrapper {
    position: absolute;
    right: 0;
    top: 80px;
    max-width: 40%;
}

.ai-automation h2 span {
    color: #ff6a3d;
}

.main-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 1);
}

.automation-content p {
    margin: 24px 0 48px;
}

.ai-automation .btn-warning {
    background-color: rgba(255, 163, 103, 1);
    border: none;
    color: #000 !important;
    transition: all 0.3s ease;
    font-size: 14px;
}

.ai-automation:after {
    position: absolute;
    content: '';
    background: url('images/automation-bg.png');
    width: 400px;
    height: 400px;
    background-size: cover;
    left: 650px;
    bottom: 0;
}

.ai-automation .btn-warning i {
    color: #000 !important;
    margin-left: 8px;
}

.ai-automation .btn-warning:hover {
    background-color: #ff865d;
    transform: translateY(-2px);
}

.mockup-wrapper img {
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.mockup-wrapper img:hover {
    transform: scale(1.03);
}

/* pricing section */
.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

section.pricing-tabs {
    padding: 80px 0;
}

.pricing-label {
    font-size: 12px;
    color: #666;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.pricing-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 48px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.billing-toggle {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 4px;
    display: inline-flex;
    gap: 10px;
}

.toggle-btn {
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #999;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: 500;
}

.toggle-btn.active {
    background: #2a2a2a;
    color: #fff;
}

.save-badge {
    margin-left: 8px;
    background: #202020;
    padding: 10px;
    font-size: 16px;
}

button span.heading-color {
    font-size: 16px;
}

.featured span.annual-price {
    color: #000 !important;
}

.pricing-box-head {
    background: #262729;
    border-radius: 12px;
    padding: 19px 14px;
    border: 1px solid #505051;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

button.pricing-btn {
    display: inline-block;
    background: #3C3D3E;
    padding: 6px 20px;
    border: none;
    border-radius: 6px;
    width: 100%;
}

.pricing-card.featured .pricing-box-head {
    background: linear-gradient(37deg, #FFA367, #FF6767);
}

.pricing-card.featured .pricing-btn {
    background-color: #000;
}

.pricing-card {
    background: #141414;
    border: 1px solid #505051;
    border-radius: 20px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.featured .price,
.featured .monthly-price {
    color: #000 !important;
}

.pricing-card.featured .btn-primary {
    background: #000 !important;
    color: #fff !important;
    border: none;
}

.plan-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #fff;
    color: #000 !important;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.plan-name {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card.featured .plan-name {
    color: #000 !important;
    opacity: 0.7;
}

.price {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-period {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.pricing-card.featured .price-period {
    color: #000 !important;
    opacity: 0.7;
}

.plan-description {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
    margin-bottom: 25px;
}

.pricing-card.featured .plan-description {
    color: #000 !important;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #2a2a2a;
    color: #fff;
}

.btn-primary:hover {
    background: #3a3a3a;
    transform: scale(1.02);
}

.featured .features-title {
    color: #fff !important;
}

.features-section {
    margin-top: 35px;
}

.features-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 14px;
    color: #afafaf!important;
}

.pricing-card.featured .feature-item::before {
    color: #000 !important;
}

@media (max-width: 768px) {

    .pricing-title,
    .pricing-subtitle {
        font-size: 32px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

/* review section css */
.testimonial-section {
    padding: 80px 0 170px;
    background: #18191B;
}


.feature-item i {
    margin-right: 8px;
    color:#afafaf !important;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-title .highlight {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-slider {
    position: relative;
    margin-top: 40px;
}

.testimonial-slider .slick-next:before,
.slick-prev:before {
    display: none;
}

.testimonial-slider .slick-arrow i {
    font-size: 20px;
}

.testimonial-slider .slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.testimonial-slider .slick-next {
    left: 50% !important;
}

.testimonial-slider .slick-prev {
    left: 47% !important;
}

.testimonial-slider .slick-next,
.testimonial-slider .slick-prev {
    top: 130% !important;
}

.testimonial-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 32px;
    margin: 0;
    transition: all 0.3s ease;
    opacity: 0.5;
    transform: scale(0.9);
}

.slick-center .testimonial-card {
    opacity: 1;
    transform: scale(1);
    border-color: #FFA367;
}

.testimonial-text {
    font-size: 18px;
    line-height: 24px;
    color: #ddd;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

/* Slick Slider Custom Arrows */
.slick-arrow {
    width: 45px;
    height: 45px;
    background: #2a2a2a !important;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s;
}

.slick-arrow:hover {
    background: #ffa367 !important;
}

.slick-arrow:before {
    font-size: 18px;
    opacity: 1;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: #555;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: #ff6b35;
}

/* cta section */
.cta-section {
    padding: 80px;
    background: #17181A;
    border-radius: 16px;
    text-align: center;
    position: relative;
    margin: 80px 0;
}

.base-btn {
    background-color: #FFA367;
    color: #000 !important;
    max-width: 326px;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    padding: 8px 30px;
    width: 100%;
    font-weight: 500;
    border: none;
    border-radius: 6px;
}

.base-btn i {
    color: #000 !important;
    margin-left: 8px;
}

.cta-section:after,
.cta-section:before {
    content: '';
    position: absolute;
    background-size: cover !important;
    background-position: center !important;
}

.cta-section:before {
    background: url('images/cta-right.png');
    right: 0;
    top: 0px;
    width: 329px;
    height: 432px;
}

.cta-section:after {
    background: url('images/cta-left.png');
    left: 0;
    bottom: 0px;
    width: 369px;
    height: 386px;
}

.cta-content p {
    max-width: 340px;
    margin: 24px auto 48px;
}

.cta-section .cta-content {
    max-width: 680px;
    margin: 0 auto;
}

/* popup css */
.contact-section {
    background-color: #111;
    border-radius: 50px;
    padding: 50px;
    max-width: 1160px;
    margin: 60px auto;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}
.modal-content.contact-section {
    background: #17181A;
}
button.btn-close {
    position: absolute;
    top: 30px;
    z-index: 9;
    opacity: 1;
    color: #000 !important;
    right: 50px;
    cursor: pointer;
}

button.signup-btn-modal.base-btn {
    max-width: fit-content;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 100px;
    background: url('images/close-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
    cursor: pointer;
}

.close-icon i {
    color: #000 !important;
}

.contact-section h2 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.contact-section p {
    color: #bfbfbf;
    margin-bottom: 40px;
    font-size: 15px;
}

.form-label {
    margin-bottom: 13px !important;
}

input::placeholder,
textarea::placeholder {
    color: #fff !important;
    opacity: .5 !important;
}

.form-control {
    background-color: #2E2F31 !important;
    border: 1px solid #434446 !important;
    color: #fff;
    padding: 9px 12px !IMPORTANT;
    border-radius: 6px !important;
}

.form-control::placeholder {
    color: #888;
}

textarea.form-control {
    height: 150px;
}

.modal-header {
    padding: 0 !important;
}

.btn-submit {
    background-color: #ff9b54;
    color: #000 !important;
    border: none;
    border-radius: 6px;
    padding: 10px 30px;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}

#contactModal .modal-dialog {
    max-width: 1140px;
}

.modal-body {
    padding: 0 !important;
}

.btn-submit:hover {
    background-color: #ff7a2e;
}

.btn-submit i {
    margin-left: 8px;
    color: #000 !important
}

.btn-submit:hover .arrow-icon {
    transform: translateX(5px);
}

/* footer css */
footer {
    padding: 60px 0;
}

.footer-components {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-icons ul li {
    background: #ffffff1a;
    padding: 12px;
    border-radius: 12px;
}

.social-icons ul {
    display: flex;
    align-items: center;
    gap: 12px;
}


@media (max-width: 991px) {
    .mockup-wrapper {
        position: static;
        max-width: 100%;
    }

    .ai-automation {
        color: #fff;
        padding: 40px 0 40px;
        text-align: center;
    }

    .mob-btn {
        display: block !important;
    }

    .desktop-btn {
        display: none !important;
    }

    .cta-section:after,
    .cta-section:before {
        display: none;
    }

    .testimonial-slider .slick-prev {
        left: 37% !important;
    }

    .hero-section {
        padding: 100px 0 40px;
    }

    .accordion-header {
        font-size: 18px;
    }

    .bg-btn .accd-icon {
        height: 30px;
        width: 30px;
    }

    .btn-signup.ms-2 {
        margin: 0 !important;
    }

    a.nav-link {
        padding: 12px 0px;
    }

    .nav-btns {
        flex-direction: column;
        align-items: start;
    }

    .navbar .navbar-nav {
        margin: 0 !important;
    }

    button:focus:not(:focus-visible) {
        box-shadow: none;
    }

    .navbar-brand img {
        height: 20px;
        margin-right: 0;
    }

    .how-it-works-image img {
        height: auto;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 80px 20px 20px;
    }
    .toggle-btn {
        padding: 12px 14px;
        font-size: 17px;
    }

    .automation-content p {
        margin: 14px 0 28px;
    }

    .contact-section::before {
        width: 180px;
        height: 80px;
    }

    footer {
        padding: 30px 0;
    }

    section.pricing-tabs {
        padding: 40px 0;
    }

    .cta-content p {
        margin: 24px auto 30px;
    }

    .cta-section {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .testimonial-slider .slick-next,
    .testimonial-slider .slick-prev {
        top: 120% !important;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-section {
        padding: 40px 0 130px;
    }

    .ai-automation {
        padding: 40px 0;
    }

    h2 {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    .how-it-works-content {
        flex-direction: column;
    }

    .footer-components,
    .footer-menu ul {
        flex-direction: column;
        align-items: start;
    }

    .footer-logo img {
        margin-bottom: 30px;
    }

    .pricing-tabs {
        padding: 40px 0
    }

    .hero-section h1 {
        font-size: 40px !important;
        line-height: 49px !important;
    }

    .how-it-works {
        padding: 40px 0;
    }

    .how-it-works .hero-section {
        padding: 100px 0 40px;
    }

    .logo-slider .slick-slide img {
        height: 22px;
    }

    .navbar {
        padding: 10px 0 !important;
    }

    .logo-slider:before,
    .logo-slider:after {
        display: none;
    }

    .logo-slider-wrapper {
        padding: 40px 0 40px;
    }

}
