/* Variables */
:root {
    --primary: #0B5FFF;
    --primary-dark: #004acc;
    --white: #fff;
    --gray-700: #444;
    --bg-page: #f8faff;
    --radius: 8px;
    --gap: 1rem;
    --max-width: 1200px;
}

/* Reset and base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

body {
    background-color: #f8faff;
}

/* Header / Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    width: 135px;
    height: 24px;
}

.logo .blue {
    color: #0B5FFF;
}

.logo .green {
    color: #0BAC2D;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #000;
}

/* Auth / CTA Buttons */
.actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: #0B5FFF;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    border: 0px;
}

.btn-primary:hover {
    background-color: #004acc;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


/* Utility Classes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}



/* Hero Section */
/* Make the hero section a flex container if not already */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f8faff;
}

.hero-text {
    text-align: left;
    padding: 20px;
    margin-top: 60px;
    width: 80%;
    z-index: 1;
}

/* Responsive canvas */
#rive-canvas {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    margin-top: 60px;
    /* Adjust as needed */
}

/* Responsive canvas */
#rive-feature-canvas {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    margin-top: 60px;
    /* Adjust as needed */
}

.hero-logo-text {
    font-size: 22px;
    color: #0B5FFF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    color: #444;
}

/* Features Section */
.features {
    padding: 3rem 2rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.workflow {
    padding: 3rem 2rem;
    background-color: #f4f9ff;
    text-align: center;
}

.workflow ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 2rem auto 0;
}

.workflow li {
    margin-bottom: 1rem;
}

/* Smart Search Section */
.search-section {
    padding: 3rem 2rem;
    background-color: #eaf3ff;
    text-align: center;
}

/* CTA Section */
.cta {
    padding: 3rem 2rem;
    background-color: #0B5FFF;
    color: white;
    text-align: center;
}

.cta a.btn-primary {
    background-color: white;
    color: #0B5FFF;
    margin-top: 1rem;
}

.ctabtn {
    margin-top: 40px;
}



/* Footer */
.docplace-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 60px;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    font-size: 14px;
    color: #333;
    gap: 32px;
}

.footer-left {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-left .logo img {
    height: 24px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.social-icons img:hover {
    opacity: 1;
}

.footer-columns {
    flex: 4 1 600px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #111;
}

.footer-col a {
    display: block;
    margin-bottom: 6px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #000;
}

/* All styles previously shared go here */
.docplace-ai-section {
    padding: 4rem 2rem;
    background: #f8faff;
    padding-top: 0px;
    position: relative;
    z-index: 1;
}

.moniker {
    margin-top: -150px;
}

.ai-container-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    max-width: 1194px;
    margin: 0 auto;
    margin-top: 40px;
    background: #fff;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 128px;

}

.ai-container-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    max-width: 1194px;
    margin: 0 auto;
    background: #fff;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 128px;
}

.ai-image {
    text-align: center;
}

.ai-image img {
    text-align: center;
    max-width: 100%;
    height: auto;
}

.ai-text {
    max-width: 500px;
    padding: 40px;
}

.ai-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111;
}

.ai-text .highlight {
    color: #00a88e;
}

.ai-text h3 {
    color: #1E3A87;
    font-size: 28px;
    line-height: 33px;
    margin-bottom: 0.5rem;
}

.ai-text p {
    margin-bottom: 1rem;
    color: #444;
    font-size: 1rem;
}

.ai-text ul {
    list-style: none;
    padding: 0;
}

.ai-text ul li {
    margin-bottom: 0.6rem;
    font-size: 18px;
    line-height: 32px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #424242;
}

h2 {
    font-size: 52px;
    margin-bottom: 1rem;
    color: #111;
    text-align: center;
}

.highlight-heading {
    font-weight: 600;
    line-height: 62px;
    color: #333;
    margin-bottom: 10px;
}

.highlight-heading .highlight {
    color: #0099cc;
    /* gradient simulation using middle-tone */
    background: linear-gradient(to right, #0078d4, #00a0af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.docplace-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 24px;
    grid-auto-rows: auto;
    align-items: start;
    padding: 40px;
    background: url('../images/background-section.png') no-repeat center center;
    background-size: cover;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 32px;
    border-radius: 12px;
    color: #e0f6ff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: transparent;
}

.card1 {
    background: url('../images/Bento1.png') no-repeat;

    height: 544px;
    color: #e0f6ff;
}

.card2 {
    background: url('../images/Bento2.png') no-repeat;
    background-size: cover;
    color: #e0f6ff;
    height: 690px;
}

.card3 {
    background: url('../images/Bento3.png') no-repeat;
    background-size: cover;
    color: #e0f6ff;
    height: 626px;
}

.card4 {
    background: url('../images/Bento4.png') no-repeat;
    background-size: cover;
    color: #e0f6ff;
    height: 486px;
}

.card1,
.card2,
.card3,
.card4 {
    background-size: cover;
    background-repeat: no-repeat;
    color: #e0f6ff;
    padding: 44px;
    border-radius: 12px;
    /* REMOVE height */
    /* height: 486px; ❌ */
}

.card h3 {
    color: #44e1cf;
    background: linear-gradient(90deg, #3BFF87, #B9FFD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    margin-bottom: 12px;
}



.card p {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
    background-color: transparent;
}

.card img {
    width: 100%;
    border-radius: 8px;
}

/* Slider Styles */

.slider-container {
    margin: 0 auto;
    cursor: pointer;
    width: 90%;
    max-width: 1000px;
    text-align: center;
    padding: 40px;
    position: relative;

}

.slides-wrapper {
    position: relative;
    height: 220px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}
.activeNav{
    color: #0077cc !important;
}
.quote {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #1c1c1e;

}

.quote .blue {
    color: #0077cc;
}

.quote .teal {
    color: #00a89d;
}

.case-link {
    font-size: 0.85rem;
    color: #0077cc;
    text-decoration: none;
    border-bottom: 1px dotted #0077cc;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 70px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 999;
}


.nav-button.left {
    left: -70px;
}

.nav-button.right {
    right: -70px;
}

/* Slider logos */
.logo-slider {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
    padding: 20px 0;
    margin-bottom: 80px;
    position: relative;

}

.logo-track {
    display: flex;
    gap: 60px;
    will-change: transform;
}

.logo-track img {
    height: 40px;
    /* force GPU acceleration */
}

.logo-slider:hover img {
    opacity: 0.9;
}

/* CTA section*/
.cta-section {
    background-color: transparent;
    color: #fff;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    max-width: 1400px;
    margin: 60px auto;
    height: 1066px;
    /* Adjust this value as needed */
    padding: 40px 20px;
    text-align: center;

}


.cta-section h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    color: #424242;
    margin-bottom: 46px;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 40px;

}

.cta-section img {
    width: 60%;


}

.cta-section .ctabtn {
    margin-top: 60px;
}

.hero p {
    color: #444;
    width: 46%;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

.highlight-heading {
    width: 60%;
    margin: 0 auto;
}

/* Contact US Page */
/* Contact Hero */
.contact-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    background-image: url("bg-2.jpg");
    background-repeat: repeat;
    background-position: right bottom;
    background-size: cover;

    border-bottom-left-radius: 150px;
    color: var(--white);
    text-align: left;
    padding: 4rem 2rem;
    width: 100%;
    margin: 0 auto;
    height: 400px;
}

.contact-hero-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;

}

.contact-hero-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    color: black;
    padding: 4rem 6rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-info {
    flex: 1 1 320px;
    max-width: 480px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: left;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-details>div {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-right {
    flex: 1 1 360px;
    max-width: 480px;
}

.contact-form {
    flex: 1 1 360px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form form .row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form .field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-size: 0.95rem;
    width: 100%;
}

.calendly iframe {
    height: 500px !important;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 1rem;
    width: 100%;
}

.form-header {
    width: 100%;
    text-align: center !important;
    margin-bottom: 30px;
}

.contact-details {
    color: rgba(98, 99, 108, 1);
    font-weight: regular;
}

.contact-details strong {
    color: rgba(0, 104, 238, 1)
}

.logo-slider-header h2 {
    font-size: 24px !important;
    margin-top: 80px;
    color: rgba(98, 99, 108, 1);
}

.contact-right {
    margin: 0 auto;
}

.google_recaptcha {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.schedule ul li img {
    vertical-align: middle;
    margin-right: 8px;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.schedule ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule ul li {
    list-style: none;
    margin-bottom: 6px;
}

.home-slider {
    margin-bottom: 120px;
}

/* — Pricing Page — */
.pricing-hero {
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.pricing-hero small {
    display: block;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: .5rem;
    font-size: 22px;

}

.pricing-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-hero p {
    color: #555;
    font-size: 1.1rem;
}

.section-b {
    display: none;
}

/* ---------- Toggle + Tooltip ---------- */
.toggle-wrapper {
    position: relative;
    font-family: sans-serif;
    float: right;
    margin-top: 42px;
    margin-right: 20px;
}

.billing-toggle {
    display: inline-flex;
    border: 1px solid #ddd;
    border-radius: 9999px;
    overflow: hidden;
}

.toggle-btn {
    cursor: pointer;
    padding: 8px 16px;
    font-size: 14px;
    background: #fff;
    color: #6b7280;
    border: none;
    outline: none;
    transition: background 0.2s, color 0.2s;
    user-select: none;
}

.toggle-btn.active {
    background: #006eff;
    color: #fff;
}

.toggle-btn:not(.active):hover {
    color: #000;
}

.tooltip {
    position: absolute;
    top: -36px;
    left: 25%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #000;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 9999px;
    white-space: nowrap;
    /* show by default (initially Annual is active) */
    display: block;
    z-index: 1;
}

.tooltip-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffc107;
}

/* cards grid */
.pricing-cards {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 3fr 3fr 3fr;
    gap: 2rem;
    padding-top: 0px;

}

.pricing-card {
    /* background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    */
    display: flex;
    padding: 2rem;
    flex-direction: column;
    background-size: contain;
    background-repeat: round;

}



.pricing-card {
    background-image: url('enterprise.png');
    background-size: cover;
    min-height: 865px;
}

.big-button {
    font-size: 26px;
    display: inline-flex;
    justify-content: center;
    /* center the content horizontally */
    align-items: center;
    /* center the content vertically */
    --padding-x: 1.2em;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: .8rem;
    color: rgba(30, 58, 135, 1);
}

.plan-header p {
    color: rgba(98, 99, 108, 1);
    font-size: 16px;
    margin-bottom: 1.5rem;
    height: 34px;
}

.plan-includes {
    color: #62636C;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    gap: .3rem;
    margin-bottom: .5rem;
    align-items: center;
    justify-content: center;
}

.plan-price .currency {
    font-size: 1.2rem;
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.plan-price .duration {
    color: #666;
    font-size: 14px;
    font-weight: bold;
}

.billing-note {
    font-size: .85rem;
    color: #888;
    margin-bottom: 1rem;
}

.btn-outline {
    display: inline-block;
    padding: .6rem 1rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
    transition: background .2s, color .2s;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 14px;
    color: #444;
}

.features-list li::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../images/tabler-icon-circle-check.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}



/* CTA gradient section */
.cta-gradient {
    color: #fff;
    border-radius: 16px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
    background-image: url(bg-2.jpg);
    background-repeat: repeat;
    background-position: right bottom;
    background-size: cover;
    margin-bottom: 40px;
}

.cta-text ul li img {
    vertical-align: middle;
    margin-right: 8px;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.cta-text {
    flex: 1 1 300px;
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
    color: #fff;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    text-align: left;
}

.cta-features li {
    position: relative;
    padding-left: 24px;
    font-size: 1rem;
}

.cta-features li::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 16px;
    height: 16px;
    background: url('../images/cta-check.svg') no-repeat center/contain;
}

.cta-illustration {
    flex: 1 1 300px;
    position: relative;
}

.cta-illustration img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.cta-illustration .signature {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 120px;
}

.cta-illustration .avatar {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.policy-content {
    display: block;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    color: #333;
    line-height: 1.6;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: left !important;
}

.policy-content:after {
    content: "";
    display: table;
    clear: both;
}

.right-policy {
    float: left;
    width: 65%;
}

.left-policy {
    float: left;
    width: 35%;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #424242;
    text-align: left;
}

.policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #424242;
    text-align: left;
}

.policy-content h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: .5rem;
    color: #424242;
    text-align: left;
}

.policy-content ul {
    list-style: disc inside;
    margin-left: 1rem;
}

.policy-content small {
    color: #555;
    display: block;
    margin-bottom: 2rem;
    font-size: .9rem;
}

#pricing-toggle {
    color: #fff;
    border-radius: 16px;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: 40px;
    min-height: 80px;
    display: block;
    justify-content: space-between;
    clear: both;
}

.xfeatures {
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    flex: 1;
    cursor: pointer;
    float: left;
    width: 50%;
    margin-top: 20px;
}

.xfeature {
    flex: 1;
    border-bottom: 2px solid transparent;
    background-color: #f8faff;
    color: #000 !important;
    padding: 0.4rem 0.8rem;
}

.hide {
    display: none !important;
}

.selected {
    background-color: #E9F3FF;
    border-bottom: 2px solid #0065EB;
    color: #0065EB !important;
}

/* Add some horizontal gap if you like:
    .features { gap: 2rem; }
    */

.xfeature-label {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    /* ~12px */
    line-height: 1;
    text-transform: uppercase;
    color: #0065EB;
    letter-spacing: 0.05em;
}

.xfeature-link {
    display: inline-block;
    margin: 0;
    font-size: 0.875rem;
    /* ~14px */
    font-weight: 600;
    color: #0065EB;
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.2s;
}

@mobile (max-width: 992px) {
    .pricing-card {
        background-size: cover;
    }

    .pricing-cards {
        display: block;
        width: 100%;
        padding: 2rem 1rem;
    }

    .policy-content:after {
        content: "";
        display: block;
    }

    .right-policy {
        float: none;
        width: 100%;
    }

    .left-policy {
        float: none;
        width: 100%;
    }

}

/* Mobile tweaks */
@media (max-width: 1200px) {
    .pricing-cards {
        display: block;
        width: 100%;
        padding: 2rem 1rem;
    }
}

/* Mobile tweaks */
@media (max-width: 768px) {
    #pricing-toggle {
        min-height: 200px;

    }

    .xfeatures {
        width: 100%;
        padding: 22px;
    }

    .pricing-cards {
        display: block;
        width: 100%;
        padding: 2rem 1rem;
    }

    .policy-content:after {
        content: "";
        display: block;
    }

    .right-policy {
        float: none;
        width: 100%;
    }

    .left-policy {
        float: none;
        width: 100%;
    }

    .pricing-card {
        background-size: cover;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .toggle-buttons {
        width: 100%;
        justify-content: center;
    }

    .pricing-cards {
        padding: 2rem 1rem;

    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 1.6rem;
    }


    .home-slider {
        margin-bottom: 0px !important;
    }

    #rive-canvas {
        margin-top: 60px !important;
    }

    #rive-feature-canvas {
        margin-top: 60px !important;
    }

    .docplace-ai-section {
        padding: 4rem 2rem;
        background: #f8faff;
        padding-top: 20px;
        margin-top: -10px !important;
    }

    /* CONTACT */
    .contact-hero {
        height: auto;
    }

    .contact-info h2 {
        text-align: center;
    }

    .contact-hero-wrapper {
        display: block;
    }

    .contact-hero-bottom {
        display: block;
        padding: 2rem;
    }


    .ai-container {
        flex-direction: column;
        text-align: center;
    }

    .ai-text {
        max-width: 100%;
    }

    .ai-text h2 {
        font-size: 1.6rem;
    }

    .ai-text h3 {
        font-size: 28px;
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem 2rem;
        display: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .ai-text ul li {

        text-align: left;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: block !important;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .btn-primary {
        color: #fff !important;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 2rem
    }

    .hero-text {
        position: relative;
        text-align: left;
        padding: 20px;
        margin-top: 20px;
        width: 100%;
    }

    .hero-logo-text {
        font-size: 16px;
    }

    .hero p {
        color: #444;
        width: 100%;
    }

    .card {
        background-size: contain !important;
        background: none !important;
        height: auto !important;
        padding: 20px !important;
    }

    .docplace-section {
        display: block !important;
    }

    h2 {
        font-size: 30px;
        line-height: 38px !important;
        text-align: center;
    }

    .card h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .card p {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 14px;
    }

    .quote {
        font-size: 20px;
        line-height: 27px;
        font-weight: 700;
        margin-bottom: 20px;
        margin-top: 20px;
        color: #1c1c1e;
    }

    .highlight-heading {
        width: 100%;
    }

    .nav-button {
        display: none;
    }

    .slider-container {
        margin: 0 auto;
        cursor: pointer;
        width: 100%;
        max-width: 1000px;
        text-align: center;
        padding: 20px;
        position: relative;
    }

    .logo-slider {
        overflow: hidden;
        width: 100%;
        margin-top: 40px;
        padding: 20px 0;
        position: relative;
    }

    .cta-section {
        background-color: transparent;
        color: #fff;
        border-radius: 16px;
        border: 1px solid #eaeaea;
        max-width: 1400px;
        margin-top: 20px;
        height: auto;
        padding: 20px;
        text-align: center;
        width: 90%;
    }

    .cta-section h2 {
        font-size: 22px;
        line-height: 28px !important;
        font-weight: 600;
        color: #424242;
        margin-bottom: 46px;
        width: 100%;
    }

    .cta-section .ctabtn {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .cta-section img {
        width: 100%;

    }

    .contact-hero {
        flex-direction: column;
        border-bottom-left-radius: 0;
        text-align: center;
    }

    .contact-form,
    .contact-info {
        max-width: 100%;
    }

    .contact-form form .row {
        flex-direction: column;
    }
}