/* Root Variables */
:root {
    --primary-color: rgba(7, 55, 99, 1);
    --primary-hover: rgba(7, 55, 99, 0.9);
    --dark-blue: #003366;
    --light-blue: #f6f9ff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-radius: 0px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Button Base Styles */
.btn,
.button,
button,
[type=submit],
[type=button] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    outline: none;
    border-radius: var(--border-radius, 0px);
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    line-height: 1.2;
    cursor: pointer;
    transition: all .25s ease;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    text-transform: uppercase;
    min-height: var(--btn-height, 42px);
}
.btn-primary1 {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    min-height: var(--btn-height, 42px);
}


.nav-container {
    width: 100%;
    max-width: var(--wd-container-w);
    padding-inline: 15px;
    margin-inline: auto;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #ffffff;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;

}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-hover);

}

.btn-custom {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Accordion Styles */
.accordion-button {
    background-color: #0693e3;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 17px;
    padding: 24px 28px 18px 17px;
    ;
}

.accordion-button:not(.collapsed) {
    background-color: #0693e3;
    color: #ffffff;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 10px;
}

.accordion-body {
    background-color: #073763;
    color: #bfbebe;
}

/* Navbar Styles */
.navbar {
    padding: 0px 0px 0px 0px;
    background: #ffffff !important;
    border-color: rgba(232, 232, 232, 1);
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0px;
    line-height: 1.2;
}

.navbar-nav {
    --list-mb: 0;
    --li-mb: 0;
    --li-pl: 0;
    --nav-gap: 13px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: var(--text-align, var(--wd-align));
    text-align: left;
    gap: 1px var(--nav-gap);
    list-style: none;
}

/* 
.main-header-container {
    border-color: rgba(232, 232, 232, 1);
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
 */




.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 0.7px;
}

.btn-search {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
}

.btn-search:hover {
    color: var(--primary-color);
}

.search-input {
    display: none;
    width: 200px;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input.active {
    display: block;
}

.navbar-divider {
    width: 1px;
    height: 24px;
    background-color: #e5e7eb;
    display: inline-block;
}

/* Search Menu */
#search-menu {
    position: relative;
    width: 100%;
    top: 10px;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 9999;
    background-color: #ffffff;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cc000000', endColorstr='#1a000000', GradientType=0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#search-menu.toggled {
    top: 0;
    opacity: 1;
    visibility: visible;
}

#search-menu .wrapper {
    position: relative;
    margin: 1.5em auto 0 auto;
    padding: 0 1em;
}

#search-menu .wrapper input {
    width: 100%;
    padding: 0 0 0.0625em 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #bfbfbf;
    font-size: 3em;
    color: var(--primary-color);
    text-align: center;
}

#search-menu .wrapper input:focus {
    outline: none;
}

#search-menu .wrapper button {
    position: absolute;
    display: block;
    width: 10%;
    right: 0;
    top: 0;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 4em;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#search-menu .wrapper button:hover {
    color: var(--primary-color);
}

#search-menu .wrapper button:focus {
    outline: none;
}

#search-icon {
    padding: 0 0.5em 0.25em 0.5em;
    font-size: 1em;
    cursor: pointer;
    color: var(--primary-color);
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#search-icon:hover {
    color: var(--primary-color);

}

body.search-active footer {
    display: none;
}

body.search-active .copyright-footer {
    display: none;
}

.search-container .btn-search {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* Hide sections when search is active */
body.search-active section {
    display: none;
}

body.search-active nav {
    display: block;
    /* Keep navbar visible */
}

/* Hero Section */
.hero-section {
    margin-top: -37px;

    /* padding: 100px 0 60px; */
}

.hero-title {


    font-family: "Lato", Sans-serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 57px;
    color: #000000;
}

.hero-subtitle {
    font-family: "Lato", Sans-serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 57px;
    color: #000000;
}

.dokive-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.dokive-text {
    font-size: 40px;
    font-weight: 600;

    margin: 0;
}

.speak-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.speak-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hero-description {
    text-align: center;
    font-family: "Lato", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 29px;
    color: #000000;
}



.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero {
    background-color: #073763;
    font-family: "Lato", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #073763;
    padding: 15px 022px 15px 22px;
    border-radius: 2px;

}

.btn-hero:hover {
    background-color: #ffffff;
    border-color: #073763;
    color: #073763;
}

.btn-hero1 {
    font-size: 16px;
    border-width: 2px 2px 2px 2px;
    border-color: #073763;
    font-family: "Lato", Sans-serif;
    font-size: 16px;
    border-radius: 2px;


}

.btn-hero1:hover {
    background-color: #073763;
    border-color: #073763;
    color: #ffffff;
    font-size: 16px;
}

/* Dashboard Preview Section */
.dashboard-preview {
    margin-top: -50px;
}

.dashboard-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.dashboard-img {
    width: 100%;
    display: block;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
}

.trust-text {
    text-align: center;
    font-family: "Lato", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 36px;
    color: #000000;
}

/* Logos Section */
.logo-container {
    max-width: 88%;
    position: relative;
    margin-left: 69px;
    top: -40px;
}


.partner-logo {
    max-height: 145px;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Save Time Section */
.save-time-section {
    padding: 58px 0;
    font-family: "Lato", Sans-serif;
    ;
}

.save-time-container {
    max-width: 1112px;
    margin: auto;
}

.section-title {
    font-family: "Lato", Sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 57px;
    color: #000000;
}

.section-description {
    font-size: 17px;
    color: #000000;
    margin-bottom: 15px;
    text-align: justify;
    line-height: 29px;
    font-family: "Lato", sans-serif;
}

.feature-list {}

.feature-list li {
    padding: 8px 0;
    /* font-size: 15px; */
    color: #000000;
}

.section-note {
    /* font-size: 14.5px; */
    margin: 20px 0;
}

/* Smarter Email Section */
.smarter-email-section {
    padding: 80px 0;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: var(--dark-blue);
}

.experience-section h2 {
    font-size: 40px;
    font-weight: 700;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    /* font-size: 14px; */
    color: var(--text-muted);
    line-height: 1.8;
}

/* Security Section */
.security-section {
    padding: 80px 0;
}

.security-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.security-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.security-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 59px 0;
    margin: 0px 100px 0px 100px;
    background: var(--dark-blue);
    border-radius: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
    /* Adjust width (5px) and color as needed */
    border-right: 5px solid var(--primary-color);
    /* Adjust width (5px) and color as needed */
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
}

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: var(--primary-color);
}

/* Footer */
.footer {
    padding: 60px 0 20px;
}

.footer h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer .border-top {
    border-color: #121212 !important;
}

.footer p {
    color: var(--text-muted);
    font-size: 13px;
}


.border-top {
    border-color: 1px solid #000000 !important;
}


/* Responsive */
@media (max-width: 991px) {

    .hero-title,
    .hero-subtitle,
    .dokive-text {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .save-time-section,
    .smarter-email-section,
    .experience-section,
    .security-section,
    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {

    .hero-title,
    .hero-subtitle,
    .dokive-text {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
    }
}