body {
    background-color: #fff;
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    font-family: "Quicksand", sans-serif;
}

.nav-item {
    font-weight: 600;
}

.navbar {
    padding: 1rem 2rem;
}

.logo-navbar {
    max-width: 50%;
}

.logo {
    width: 25%;
    height: auto;
}

.login-btn {
    color: white;
    background-color: #01358d;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px 10px 10px 10px;
    padding: 10px 20px 10px 20px;
}

.login-btn:hover {
    background-color: #01358d;
    color: white;

}

/* Custom hamburger icon */
.navbar-toggler {
    padding: 4px 8px;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* Smooth transition for navbar collapse */
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}


.hero-container {
    max-width: 1450px;
}

.hero {
    background: linear-gradient(to bottom, #e6f0ff, #f9fbfd);
    padding: 60px 20px;
}

.hero h1 {
    font-weight: 700;
    color: #222;
    display: inline;
}

.long-dash {
    display: inline-block;
    width: 30px;
    /* adjust length */
    height: 3px;
    /* adjust thickness */
    background: black;
    /* color of dash */
    vertical-align: super;
}

.highlighter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c30a6e;
}

.hero p {
    font-weight: 500;
    line-height: 1.2;
    margin-block-end: 1rem;
    margin-block-start: .5rem;
    /* margin: 10px 0;
    font-size: 16px;
    color: #333; */
}

.btn-cta {
    background-color: #c30a6e;
    color: #fff;
    font-weight: bold;
}

.btn-cta:hover {
    background-color: #c30a6e;
    color: #fff;

}

.error-message {
    color: red;
    font-size: 14px;
}

.success-message {
    color: green;
    font-weight: bold;
}


.features-section {
    padding: 25px 0px;
    max-width: 100%;
    background-color: #fce7e9;
}

.features-container {
    max-width: 900px;
    margin: 10px auto;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.features-title {
    text-align: center;
    font-size: 29px;
    font-family: 'Protest Riot', cursive;
    color: #222;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.feature-item {
    background-color: #FFD700;
    color: #000;
    font-family: 'Protest Riot', cursive;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
}

.red-highlight {
    color: #FF4444;
    font-weight: 600;
}


.features-list li:hover {
    transform: translateX(5px);
}

.features-list li::before {
    content: "👉";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.features-list li {
    padding-left: 30px;
}


/* Bigger slider */
.carousel {
    width: 100%;
    max-width: 950px;
    /* Adjust slider width */
    margin: auto;
}

.carousel img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Center indicators below slider */
.carousel-indicators {
    position: relative;
    margin-top: 15px;
}

.carousel-indicators [data-bs-target] {
    background-color: #0066ff
}

.feature-section {
    text-align: center;
    padding: 60px 20px;
}

.feature-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: #0071c1;
    margin-bottom: 30px;
}

.nav-pills .nav-link {
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 10px 20px;
    margin: 5px;
    font-weight: 500;
    color: #333;
}

.nav-pills .nav-link.active {
    background-color: #2d6cdf;
    color: #fff;
}

/* .feature-content {
    text-align: left;
}

.feature-content h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-content ul {
    list-style: none;
    padding-left: 20px;
}

.feature-content ul li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.feature-content ul li::before {
    content: "✔";
    color: #2d6cdf;
    font-weight: bold;
    margin-right: 8px;
}

.feature-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} */
/* General Section Styling */
.feature-section {
    padding: 60px 0;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1a1a1a;
}

/* Tabs (nav-pills) */
.feature-section .nav-pills .nav-link {
    border-radius: 25px;
    background: #f5f6f7;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 20px;
    padding: 10px 25px;
    margin: 5px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-section .nav-pills .nav-link.active {
    background: #fff;
    color: #0d6efd;
    border: 1px solid #0d6efd;
    font-weight: 600;
}

.tab-content>.active {
    margin: 3rem;
}

/* Tab Content */
.feature-section .tab-content {
    margin-top: 40px;
}

/* Headings inside content */
.feature-section h4 {
    font-family: "Quicksand", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5em;
    /* color: #0071c1; */
    text-align: justify;
}

/* List items with checkmarks */
.feature-section .feature-content ul {
    text-align: justify;
    padding-left: 0;
    list-style: none;
}


.feature-section .feature-content ul li {
    position: relative;
    list-style: none;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;

}

.feature-section .feature-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    /* or your brand color */
    font-weight: bold;
    font-size: 16px;
    line-height: 1.6;

}

.accordion-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

/* Add ✔ before each li */
.accordion-body ul li {
    position: relative;
    padding-left: 20px;
    /* space for the checkmark */
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}

/* Checkmark style */
.accordion-body ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font-weight: bold;
    font-size: 14px;
}



/* Image on the right */
.feature-section .feature-image img {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}


.results-section {
    padding: 30px 0;
}

.results-section h2 {
    font-family: "Quicksand", Sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0d2d62;
}

.results-section p {
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5em;
    color: #172b4d;
}

.results-list {
    margin-top: 20px;
    padding-left: 20px;
}

.results-list li {
    list-style: none;
    font-family: "Roboto", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #0d2d62;
    margin-bottom: 10px;
}

.results-list li i {
    color: #6ec1e4;
}

.rating-box {
    text-align: center;
}

.rating-box img {
    max-width: 100%;
}

.stars {
    margin-top: 8px;
}

.stars .fa-star {
    color: #e3262e;
    font-size: 22px;
}

.stars .rating-score {
    color: #fff;
    background: #28a745;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: 600;
}

.project-section {
    max-width: 100%;
    background-color: #f8f8f8;
}

.project-box {
    display: flex;
    margin: 3rem;
}

.project-text h2 {
    font-family: "Quicksand", Sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #172b4d;
}

.project-text p {
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5em;
    color: #172b4d;
}

.project-img img {
    border-radius: 6px;
    max-width: 85%;
}

/* Trial Banner */
.trial-banner {
    background: #f24b67;
    color: #fff;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    max-width: 1100px;
    margin: 3rem auto 1.5rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trial-banner h4 {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trial-banner .btn {
    background: #0066ff;
    color: #fff;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 9px;
    transition: all 0.3s ease-in-out;
}

.trial-banner .btn:hover {
    background: #004bb8;
    transform: translateY(-2px);
}

/* Tagline Section */
.trial-tagline {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 2rem auto;
    /* color: #444; */
    font-size: 20px;
    line-height: 1.6;
    padding: 0 1rem;
}

/* Footer */
footer {
    background: #0b2d52;
    color: #fff;
    padding: 3rem 1rem 1rem;
    font-size: 16px;
}

footer h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-logo img {
    max-height: 40px;
    margin-bottom: 1rem;
}

.newsletter input {
    border-radius: 4px 0 0 4px;
}

.newsletter button {
    border-radius: 0 4px 4px 0;
}

.company-list {
    padding: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    font-size: 13px;
}

/* Mobile Responsive Improvements */
@media (max-width: 767.98px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    /* .navbar .d-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .navbar .nav-link {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.85rem;
    }

    .navbar .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    } */

    .logo-navbar {
        max-width: 120px;
    }

    .logo {
        width: 100%;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .carousel {
        max-width: 100%;
    }

    .carousel img {
        max-height: 250px;
    }

    .feature-section {
        padding: 2rem 1rem;
    }

    .feature-section h2 {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }

    .nav-pills {
        flex-direction: column;
        align-items: center;
    }

    .nav-pills .nav-link {
        padding: 8px 15px;
        margin: 2px;
        font-size: 0.85rem;
        width: auto;
        text-align: center;
    }

    .feature-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .feature-section h4 {
        font-size: 20px;
        /* smaller font */
        line-height: 1.3;
        /* tighter line spacing */
        word-spacing: normal;
        /* reset weird spacing */
        letter-spacing: normal;
        text-align: left;
        /* avoid stretched look */
        margin-bottom: 10px;
    }


    .feature-content ul {
        text-align: left;
        padding-left: 0;
    }

    .results-section {
        padding: 2rem 1rem;
    }

    .results-section h2 {
        font-size: 1.5rem;
    }

    .results-section p {
        font-size: 1rem;
    }

    .rating-box {
        margin-top: 2rem;
    }

    .project-section {
        padding: 2rem 0;
    }

    .project-box {
        margin: 1rem;
        padding: 1.5rem 1rem;
        flex-direction: column;
    }

    .project-text h2 {
        font-size: 1.5rem;
    }

    .project-text p {
        font-size: 1rem;
    }

    .project-text {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .project-img {
        text-align: center !important;
    }

    .trial-banner {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
        border-radius: 15px;
    }

    .trial-banner h4 {
        font-size: 10px;
    }

    .trial-banner .btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .trial-tagline {
        font-size: 10px;
        padding: 0 1.5rem;
    }

    footer {
        padding: 2rem 1rem 1rem;
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .social-icons a {
        font-size: 1.1rem;
        margin: 0 0.3rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 1.5rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .feature-section {
        padding: 3rem 1.5rem;
    }

    .feature-section h2 {
        font-size: 15px;
    }

    .nav-pills .nav-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .project-section {
        padding: 3rem 1rem;
    }

    .project-box {
        margin: 2rem 1rem;
    }

    .trial-banner {
        margin: 2.5rem 1.5rem;
        padding: 2.5rem 1.5rem;
    }

    .trial-banner h4 {
        font-size: 10px;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.25rem;
    }

    /* .feature-section h2 {
        font-size: 1.25rem;
    } */

    .nav-pills .nav-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .results-section h2 {
        font-size: 1.5rem;
    }

    .results-section p {
        font-size: 1rem;
    }

    .project-text h5 {
        font-size: 1.1rem;
    }

    .trial-banner h4 {
        font-size: 10px;
    }

    .carousel img {
        max-height: 200px;
    }
}

/* reCAPTCHA responsiveness */
.g-recaptcha {
    display: flex;
    justify-content: center;
}

@media (max-width: 575.98px) {
    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: center;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
}