:root {
    --blue: #1a6dff;
    --blue-dark: #0f57d6;
    --teal: #0e6b6b;
    --yellow: #f5b21d;
    --navy: #0a1f44;
    --text: #5b6b82;
    --heading: #1b2a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading);
    font-weight: 700;
    line-height: 1.25;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: .3s;
    white-space: nowrap;
}

.btn-blue {
    background: var(--blue);
    color: #fff;
}

.btn-blue:hover {
    background: var(--blue-dark);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 9px 9px 26px;
}

.btn-arrow-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.btn-white {
    background: #fff;
    color: #3E84FE;
    border: 1px solid;
}
.pricing-container{
    max-width: 1400px !important;
}

.btn-white:hover {
    background: #eef3ff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 3px solid #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--blue);
}

.btn-outline-blue {
    background: #fff;
    color: var(--blue);
    border: 3px solid var(--blue);
}

.btn-outline-blue:hover {
    background: var(--blue);
    color: #fff;
}

.sec-padding {
    padding: 90px 0;
}

/* ===== Header ===== */
.header {
    position: relative;
    width: 100%;
    z-index: 50;
    background: #fff;
    padding: 18px 0;
    box-shadow: 0 2px 20px rgba(20, 40, 90, .05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 38px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--heading);
    font-weight: 500;
    font-size: 14px;
}

.main-nav a:hover {
    color: var(--blue);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    color: var(--heading);
    cursor: pointer;
        padding: 6px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    background: #fff;
    display: flex;
    min-height: 700px;
    align-items: stretch;
    overflow: hidden;
}

.hero-left {
    color: var(--text);
    width: 50%;
    display: flex;
    align-items: center;
    padding: 40px 60px 90px 0;
    position: relative;
}


.hero-left-content {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin-left: auto;
}

.hero-left h1 {
    color: var(--blue);
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 22px;
    line-height: 1.12;
}

.hero-desc-box {
    border-left: 5px solid var(--blue);
    padding-left: 18px;
    margin-bottom: 30px;
}

.hero-desc-box p {
    color: var(--text);
    font-size: 15px;
}

.hero-desc-box strong {
    color: var(--heading);
    font-weight: 700;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-right {
    width: 50%;
    position: relative;
}

.hero-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 120px;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
    z-index: 1;
}

/* ===== Feature cards ===== */
.feature-container{
    max-width: 1400px;
}
.features {
    position: relative;
    z-index: 20;
    padding-bottom: 40px;
}

.features-card {
    background: #fff;
    box-shadow: 0 20px 50px rgb(152 152 152);
    border-radius: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feature-item {
    padding: 38px 32px;
    display: flex;
    gap: 18px;
    border-right: 1px solid #eef1f6;
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: #eaf1ff;
    color: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* ===== Quote ===== */
.quote-sec {
    text-align: center;
    padding: 55px 0 75px;
}

.quote-sec h2 {
    font-size: 70px;
    font-weight: 700;
    color: var(--heading);
    margin: 0 auto;
}

/* ===== Category Overview ===== */
.category {
    background: var(--blue);
    color: #fff;
    padding: 70px 0 90px;
}

.cat-head {
    text-align: center;
    margin-bottom: 50px;
}

.cat-head span {
    font-size: 14px;
    font-weight: 600;
    opacity: .9;
    letter-spacing: .5px;
}

.cat-head h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    margin-top: 8px;
}

.cat-grid {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.cat-grid::-webkit-scrollbar {
    display: none;
}

.cat-grid.dragging {
    cursor: grabbing;
}

.cat-track {
    display: flex;
    gap: 50px;
    width: max-content;
}

.cat-card {
    flex: 0 0 420px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 38px 34px;
    user-select: none;
}

.cat-card .ci {
    display: flex;
    align-items: center;
    font-size: 46px;
    color: #fff;
    margin-bottom: 26px;
}

.cat-card .ci svg {
    width: 58px;
    height: 58px;
}

.cat-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 22px;
}

.cat-card ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, .92);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-card ul li i {
    color: #fff;
    font-size: 13px;
}

.cat-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 40px;
}

.cat-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
}

.cat-dots span.active {
    background: #fff;
    width: 24px;
    border-radius: 5px;
}

/* ===== About ===== */
.about {
    padding: 100px 0;
}

.about-panel {
    display: none;
}

.about-panel.active {
    display: block;
    animation: aboutFade .4s ease;
}

@keyframes aboutFade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: 60px;
    width: 100%;
}

.about-dots-bg {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#cfe0ff 2px, transparent 2px);
    background-size: 16px 16px;
    z-index: -1;
}

.about-label {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    max-width: 430px;
}

.about-tab {
    flex: 1;
    height: 36px;
    border: none;
    border-radius: 18px;
    background: #c5dbff;
    color: transparent;
    font: inherit;
    font-size: 0;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, font-size .25s ease;
}

.about-tab:hover {
    background: #a9caff;
}

.about-tab.active {
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
}


.about-sub {
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 22px;
}

.about-checks li {
    display: flex;
    gap: 10px;
    color: var(--heading);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.about-checks li i {
    color: var(--blue);
}

.about-btn-wrap {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eaf1ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Why Choose Us ===== */
.why {
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: stretch;
}

.why-left {
    background: var(--teal);
    color: #fff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-left h2 {
    color: #fff;
    font-size: 81px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}

.why-left p {
    color: rgba(255, 255, 255, .85);
    font-size: 32px;
}

.why-right {
    padding: 80px 70px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.why-num {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    margin-left: -130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-weight: 400;
    color: #fff;
    box-shadow: 0 0 0 7px #fff, 0 12px 26px rgba(0, 0, 0, .14);
    position: relative;
    z-index: 1;
}

.why-num.n1 { background: var(--teal); }
.why-num.n2 { background: var(--blue); }
.why-num.n3 { background: var(--yellow); }

.why-item h4 {
    font-size: 32px;
    margin-bottom: 4px;
    font-weight: 500;
}

.why-item p {
    font-size: 15px;
    max-width: 420px;
}

/* ===== How it Works ===== */
.how {
    padding: 90px 0;
}

.sec-title {
    text-align: center;
    margin-bottom: 60px;
}

.sec-title h2 {
    font-size: 80px;
    font-weight: 800;
    color: var(--blue);
}

.step-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
}

.step-text h3 {
    font-size: 38px;
    color: var(--blue);
    margin-bottom: 14px;
    text-align: left;
    font-weight: 500;
}

.step-text p {
    font-size: 13px;
    text-align: justify;
}

.step-dots {
    margin-top: 16px;
    height: 10px;
    background-image: radial-gradient(circle, #ccd6e6 45%, transparent 47%);
    background-size: 18px 22px;
    background-repeat: repeat-x;
    background-position: left center;
    border-radius: 50px;
}

.step-mid {
    text-align: center;
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.step-mid::before {
    content: "";
    position: absolute;
    top: -80px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    background-image: radial-gradient(circle, #ccd6e6 45%, transparent 47%);
    background-size: 22px 18px;
    background-repeat: repeat-y;
    background-position: center top;
    z-index: 0;
}

.step-mid .lbl {
    font-size: 17px;
    letter-spacing: 3px;
    color: #aeb8c9;
    font-weight: 600;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 6px 14px 0;
}

.step-mid .num {
    font-size: 70px;
    font-weight: 800;
    color: var(--heading);
    line-height: 1;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 14px 6px;
}

.step-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #eaf1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 130px;
    color: var(--blue);
}

.step-row.reverse .step-text {
    order: 3;
    text-align: left;
}

.step-row .step-text.right {
    text-align: right;
}

.step-row .step-text.right .step-dots {
    background-position: right;
}

/* ===== Testimonials ===== */
.testi {
    background: var(--blue);
    color: #fff;
    padding: 80px 0 90px;
}

.testi .sec-title h2 {
    color: #fff;
    font-size: 80px;
    font-weight: 800;
}

.testi-grid {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px calc(50% - 380px);
    scrollbar-width: none;
}

.testi-grid::-webkit-scrollbar {
    display: none;
}

.testi-card {
    flex: 0 0 760px;
    max-width: 90vw;
    display: flex;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid var(--blue);
    overflow: hidden;
    color: var(--text);
    scroll-snap-align: center;
}

.testi-img {
    flex: 0 0 45%;
}

.testi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-body {
    flex: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testi-card .quote-mark {
    font-size: 46px;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 16px;
}

.testi-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testi-person {
    display: block;
}

.testi-person h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 4px;
}

.testi-person span {
    font-size: 13px;
    color: #8a93a6;
}

/* ===== Blogs ===== */
.blogs {
    padding: 90px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.blog-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(20, 40, 90, .08);
    height: 460px;
}

.blog-thumb {
    position: absolute;
    inset: 0;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 60, .88) 0%, rgba(10, 25, 60, .3) 45%, rgba(10, 25, 60, 0) 70%);
    z-index: 1;
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: rgb(184 184 184);
    color: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 17px 30px;
    line-height: 1.1;
}

.blog-date strong {
    display: block;
    font-size: 22px;
    color: #fff;
}

.blog-date span {
    font-size: 12px;
    color: #fff;
}

.blog-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px 26px;
    color: #fff;
}

.blog-meta {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 12px;
}

.blog-meta i {
    color: #fff;
    margin-right: 6px;
}

.blog-body h3 {
    font-size: 22px;
    line-height: 1.35;
}

.blog-body h3 a {
    color: #fff;
}

.blog-body h3 a:hover {
    opacity: .85;
}

/* ===== CTA ===== */
.cta-sec {
    padding: 0;
    position: relative;
    z-index: 2;
    margin-bottom: -110px;
}

.cta-box {
    background: #fff;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    box-shadow: 0px 0px 9px -3px;
}

.cta-text {
    padding: 20px 50px;
}

.cta-text small {
    color: var(--blue);
    font-weight: 600;
}

.cta-text h2 {
    font-size: 32px;
    margin: 8px 0 24px;
}

.cta-btns {
    display: flex;
    gap: 16px;
}
.cta-btns a{
        border-radius: 14px !important;
        margin-top: 12px;
}
.cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(120deg, #071a3a, #0a2350);
    color: #c5cee0;
    position: relative;
    padding-top: 150px;
        margin: 12px;
    border-radius: 28px;
}

.footer-top {
    padding: 55px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-top h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
}

.footer-email {
    display: flex;
    background: rgba(255, 255, 255, .08);
    border-radius: 30px;
    padding: 6px;
    min-width: 360px;
}

.footer-email input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    padding: 10px 18px;
    font-family: inherit;
}

.footer-email input::placeholder {
    color: #9fb0cc;
}

.footer-email button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    border: none;
    cursor: pointer;
}

.footer-main {
    padding: 60px 0 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 30px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 22px;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-signup {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.footer-signup input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 13px;
}

.footer-signup input::placeholder {
    color: #9fb0cc;
}

.footer-col .sign-btn {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.footer-col .tiny {
    font-size: 12px;
    margin-top: 10px;
}

.footer-hello li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-hello li.phone {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
}

.footer-hello i {
    color: var(--blue);
}

.get-touch {
    margin-top: 18px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
}

.get-touch i {
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.footer-bottom .brand {
    color: var(--blue);
    font-weight: 600;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 13px;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer-social a:hover {
    background: var(--blue);
}

.footer-social .scroll-top {
    background: var(--blue);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 12px 30px rgba(20, 40, 90, .12);
        padding: 8px 0;
        z-index: 60;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 20px;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eef1f6;
    }

    .main-nav ul li:last-child a {
        border-bottom: none;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .header-right {
        gap: 14px;
    }

    .btn-arrow {
        padding: 7px 7px 7px 18px;
        font-size: 13px;
    }

    .btn-arrow-circle {
        width: 30px;
        height: 30px;
    }

    .hero {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        padding: 60px 20px 60px;
    }

    .hero-left::before {
        left: -20px;
        right: -20px;
    }

    .hero-left-content {
        margin: 0 auto;
    }

    .hero-right {
        height: 360px;
    }

    .features-card,
    .testi-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        padding: 10px 20px;
    }

    .testi-card {
        flex-direction: column;
        flex: 0 0 85vw;
    }

    .testi-img {
        flex: 0 0 220px;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid #eef1f6;
    }

    .about-grid,
    .why,
    .cta-box,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-email {
        min-width: auto;
        width: 100%;
    }

    .step-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-row .step-text,
    .step-row .step-text.right {
        text-align: center;
    }

    .why-left {
        padding: 50px 30px;
    }

    .why-right {
        padding: 50px 30px;
    }

    .why-num {
        margin-left: 0;
    }
}

/* ===== Mobile (phones) ===== */
@media (max-width: 767px) {
    .sec-padding { padding: 60px 0; }

    .hero {
        min-height: 0;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.82);
        z-index: 0;
    }

    .hero-left {
        padding: 90px 20px;
        z-index: 1;
    }

    .hero-left h1 { font-size: 38px; }

    .hero-right {
        height: 300px;
    }

    .hero-btns .btn {
        flex: 1 1 auto;
        text-align: center;
    }

    .features {
        margin-top: -50px;
    }

    .features-card {
        border-radius: 26px;
    }

    .feature-item {
        padding: 26px 24px;
    }

    .feature-item h4 { font-size: 18px; }
    .feature-item p { font-size: 14px; }

    .quote-sec { padding: 40px 0 50px; }
    .quote-sec h2 { font-size: 34px; }

    .category { padding: 50px 0 60px; }
    .cat-head { margin-bottom: 34px; }
    .cat-head h2 { font-size: 28px; }
    .cat-track { gap: 22px; }
    .cat-card {
        flex: 0 0 82vw;
        padding: 30px 26px;
        border-radius: 34px;
    }
    .cat-card h3 { font-size: 20px; }

    .about { padding: 60px 0; }
    .about-grid { gap: 40px; }
    .about h2 { font-size: 28px; }
    .about-img-wrap img { border-radius: 34px; }
    .about-label { max-width: 100%; }

    .why-left {
        padding: 50px 26px;
        text-align: center;
    }
    .why-left h2 { font-size: 54px; }
    .why-left p { font-size: 22px; }

    .why-right {
        padding: 50px 26px;
        gap: 34px;
    }
    .why-item {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
    .why-num {
        width: 100px;
        height: 100px;
        font-size: 48px;
        margin-left: 0;
    }
    .why-item h4 { font-size: 24px; }
    .why-item p { font-size: 14px; max-width: 100%; }

    .how { padding: 60px 0; }
    .sec-title { margin-bottom: 40px; }
    .sec-title h2 { font-size: 40px; }

    .step-row {
        margin-bottom: 44px;
        gap: 18px;
    }
    .step-text h3,
    .step-row .step-text.right {
        font-size: 26px;
        text-align: center;
    }
    .step-text h3 { text-align: center; }
    .step-text p { text-align: center; }
    .step-mid::before { display: none; }
    .step-mid .num { font-size: 48px; }
    .step-circle {
        width: 160px;
        height: 160px;
        font-size: 66px;
    }

    .testi { padding: 55px 0 60px; }
    .testi .sec-title h2 { font-size: 40px; }
    .testi-grid {
        padding: 10px 20px;
        gap: 18px;
    }
    .testi-card {
        flex: 0 0 84vw;
        flex-direction: column;
    }
    .testi-img { flex: 0 0 200px; }
    .testi-body { padding: 30px 26px; }
    .testi-person h5 { font-size: 20px; }

    .blogs { padding: 60px 0; }
    .blog-card { height: 400px; }

    .cta-sec { margin-bottom: -90px; }
    .cta-text { padding: 40px 28px; }
    .cta-text h2 { font-size: 26px; }
    .cta-btns { flex-wrap: wrap; }
    .cta-btns .btn { flex: 1 1 auto; text-align: center; }

    .footer {
         padding-top: 110px; 
            margin: 5px;
    border-radius: 13px;
        }
    .footer-top {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
    }
    .footer-top h2 { font-size: 26px; }
    .footer-email { min-width: auto; width: 100%; }
    .footer-main {
        gap: 36px;
        text-align: left;
    }
    .get-touch {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .hero-left h1 { font-size: 32px; }
    .cat-head h2 { font-size: 26px; }
    .why-left h2 { font-size: 44px; }
    .why-left p { font-size: 20px; }
    .quote-sec h2 { font-size: 28px; }
    .sec-title h2,
    .testi .sec-title h2 { font-size: 32px; }
    .cat-card { flex: 0 0 88vw; }
    .step-circle { width: 130px; height: 130px; font-size: 54px; }
    .step-text h3 { font-size: 23px; }
    .about h2 { font-size: 25px; }
    .cta-text h2 { font-size: 23px; }
    .blog-card { height: 360px; }

    .logo img { height: 32px; }

    .btn-arrow {
        padding: 6px 6px 6px 14px;
        font-size: 12px;
        gap: 8px;
    }

    .btn-arrow-circle {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

@media (max-width: 340px) {
    .header-right .btn-arrow {
        display: none;
    }
}

/* ===== Legal / Policy Pages ===== */
.page-hero {
    background: linear-gradient(120deg, var(--blue-dark), var(--blue));
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.page-hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 14px;
}

.page-crumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
}

.page-crumb a {
    color: #fff;
    font-weight: 500;
}

.page-crumb a:hover {
    opacity: .8;
}

.page-crumb i {
    font-size: 11px;
    opacity: .7;
}

/* Legal content */
.legal {
    padding: 80px 0 90px;
    background: #fff;
}

.legal .container {
    max-width: 1200px;
}

.legal-card {
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 26px;
    padding: 50px 52px;
        box-shadow: inset 2px 7px 20px 20px rgba(20, 40, 90, .06);
}

.legal .effective {
    display: inline-block;
    background: #eaf1ff;
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 26px;
}

.legal h2,
.legal h3 {
    color: var(--heading);
    font-size: 22px;
    font-weight: 700;
    margin: 34px 0 12px;
}

.legal p {
    margin-bottom: 18px;
    color: var(--text);
    line-height: 1.9;
    font-size: 15px;
}

.legal p strong {
    color: var(--heading);
}

.legal ul {
    margin: 0 0 20px;
    padding-left: 0;
}

.legal ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.9;
    color: var(--text);
    font-size: 15px;
}

.legal ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--blue);
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 13px;
}

.legal ul li p {
    margin-bottom: 8px;
}

.legal a {
    color: var(--blue);
    font-weight: 600;
}

.legal a:hover {
    color: var(--blue-dark);
}

@media (max-width: 767px) {
    .page-hero {
        padding: 55px 0;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .legal {
        padding: 55px 0 60px;
    }

    .legal-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .legal h2,
    .legal h3 {
        font-size: 19px;
    }
}

/* ===== What We Offer page ===== */
.wwo-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 90px 0 210px;
}

.wwo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .45);
}

.wwo-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.wwo-hero h1 {
    color: var(--blue);
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.wwo-hero p {
    color: #5b6577;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.wwo-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.wwo-about {
    background: #fff;
    padding: 0 0 100px;
}

.wwo-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.wwo-img-wrap {
    position: relative;
    margin-top: -150px;
    z-index: 2;
}

.wwo-img-card {
    width: 100%;
    background: #eceef1;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--heading);
    box-shadow: -7px 19px 0px 0px #1A6DFF;
}

.wwo-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wwo-eyebrow {
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wwo-eyebrow i {
    font-size: 13px;
}

.wwo-about-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--heading);
    line-height: 1.15;
    margin-bottom: 24px;
}

.wwo-quote {
    border-left: 3px solid var(--blue);
    padding-left: 22px;
    color: #5b6577;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 34px;
    max-width: 470px;
}

.wwo-features {
    display: flex;
    gap: 46px;
    flex-wrap: wrap;
}

.wwo-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wwo-feat-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #eaf1ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.wwo-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.3;
}

@media (max-width: 991px) {
    .wwo-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wwo-img-wrap {
        margin-top: -120px;
        transform: none;
        width: 100%;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .wwo-hero {
        padding: 60px 0 150px;
    }

    .wwo-hero h1 {
        font-size: 38px;
    }

    .wwo-img-card {
        font-size: 36px;
    }

    .wwo-about-content h2 {
        font-size: 30px;
    }

    .wwo-features {
        gap: 26px;
    }
}

/* ===== What We Offer - Plans ===== */
.wwo-plans {
    background: linear-gradient(180deg, #eef4ff 0%, #f7faff 55%, #fff 100%);
    padding: 90px 0 100px;
}

.wwo-plans-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.wwo-plans-eyebrow {
    color: var(--blue);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.wwo-plans-intro h2 {
    color: var(--blue);
    font-size: 57px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 22px;
}

.wwo-plans-desc {
    color: #5b6577;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 34px;
}

.wwo-plans-img {
    border-radius: 16px;
    overflow: hidden;
}

.wwo-plans-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.wwo-plans-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.plan-card {
    position: relative;
    background: #fff;
    border-radius: 32px;
    padding: 30px 34px 30px 40px;
    display: flex;
    gap: 28px;
    box-shadow: 0 18px 45px rgba(20, 40, 90, .08);
    overflow: hidden;
    border: 12px solid #7b98e330;
}

.plan-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 6px;
    border-radius: 0 6px 6px 0;
    background: var(--plan-accent);
}

.plan-blue {
    --plan-accent: #1a6dff;
}

.plan-purple {
    --plan-accent: #b14ff5;
}

.plan-green {
    --plan-accent: #00c39a;
}

.plan-icon {
    flex-shrink: 0;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 1px solid #e6ebf3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--plan-accent);
}

.plan-body {
    flex: 1;
}

.plan-body h3 {
    color: var(--heading);
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #e9edf3;
}

.plan-body h3 .plan-price {
    color: var(--plan-accent);
    font-weight: 800;
}

.plan-body h3 .plan-per {
    color: #8a93a3;
    font-size: 15px;
    font-weight: 500;
}

.plan-body p {
    color: #5b6577;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .wwo-plans-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .wwo-plans-img {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .wwo-hero {
        padding: 60px 0 150px;
    }

    .wwo-hero h1 {
        font-size: 38px;
    }

    .wwo-img-card {
        font-size: 36px;
    }

    .wwo-about-content h2 {
        font-size: 30px;
    }

    .wwo-features {
        gap: 26px;
    }

    .wwo-plans {
        padding: 60px 0 70px;
    }

    .wwo-plans-intro h2 {
        font-size: 36px;
    }

    .plan-card {
        gap: 18px;
        padding: 24px 22px 24px 28px;
    }

    .plan-icon {
        width: 72px;
        height: 72px;
        font-size: 27px;
    }
}

/* ===== What We Offer - Agency ===== */
.wwo-agency {
    position: relative;
    background: #fff;
    padding: 80px 0 90px;
    overflow: hidden;
}

.wwo-agency-grid {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 30px;
    align-items: center;
    position: relative;
}

.wwo-agency-media {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    min-height: 480px;
}

.wwo-agency-media::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -60px;
    right: 20px;
    bottom: 40px;
    background: #e9eefb;
    border-radius: 46% 54% 50% 50% / 55% 55% 45% 45%;
    z-index: 0;
}

.wwo-agency-media img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 560px;
    object-fit: contain;
}

.wwo-deco {
    position: absolute;
    z-index: 2;
}

.wwo-deco-dot {
    top: 40px;
    right: 30px;
    color: #17c964;
    font-size: 20px;
}

.wwo-deco-spin {
    top: 46%;
    right: -6px;
    color: var(--blue);
    font-size: 22px;
}

.wwo-agency-card {
    position: relative;
    background: #fff;
    border-radius: 34px;
    padding: 58px 55px;
    box-shadow: 8px 18px 0px 0px #1a6dff;
}

.wwo-agency-card::before {
    content: "";
    position: absolute;
    right: -14px;
    bottom: -14px;
    width: 100%;
    height: 100%;
    background: var(--blue);
    border-radius: 34px;
    z-index: -1;
}

.wwo-agency-eyebrow {
    color: var(--blue);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.wwo-agency-card h2 {
    color: var(--heading);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 34px;
}

.wwo-agency-item {
    max-width: 430px;
    margin-bottom: 24px;
}

.wwo-agency-item:last-child {
    margin-bottom: 0;
}

.wwo-agency-item h4 {
    color: var(--heading);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.wwo-agency-item p {
    color: #5b6577;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .wwo-agency-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .wwo-agency-media {
        min-height: 380px;
        justify-content: center;
    }

    .wwo-agency-media::before {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 767px) {
    .wwo-agency {
        padding: 55px 0 65px;
    }

    .wwo-agency-card {
        padding: 36px 28px;
        border-radius: 24px;
    }

    .wwo-agency-card h2 {
        font-size: 32px;
        margin-bottom: 26px;
    }
}

/* ===== Services ===== */
.wwo-services {
    background: #fff;
    padding: 40px 0 90px;
}

.wwo-services-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.wwo-services-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #6f88b0;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.wwo-services-left > h2 {
    color: var(--heading);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
}

.wwo-services-lead {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 34px;
}

.wwo-services-media {
    position: relative;
    max-width: 440px;
}

.wwo-services-media img {
    width: 100%;
    border-radius: 22px;
    display: block;
}

.wwo-services-badge {
    position: absolute;
    top: 24px;
    right: -18px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: #6f88b0;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    border: 6px solid #fff;
    box-shadow: 0 12px 30px rgba(10, 31, 68, 0.18);
}

.wwo-services-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 8px;
}

.wwo-services-badge-text {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
}

.wwo-services-list {
    display: flex;
    flex-direction: column;
}

.wwo-service {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid #eef1f6;
}

.wwo-service:first-child {
    padding-top: 0;
}

.wwo-service:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.wwo-service-icon {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #f2f4f8;
    color: var(--heading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.wwo-service-num {
    display: block;
    color: var(--blue);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.wwo-service-body h3 {
    color: var(--heading);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 8px;
}

.wwo-service-body p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    max-width: 320px;
}

@media (max-width: 991px) {
    .wwo-services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .wwo-services-media {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .wwo-services {
        padding: 20px 0 60px;
    }

    .wwo-services-left > h2 {
        font-size: 32px;
    }

    .wwo-services-badge {
        width: 104px;
        height: 104px;
        right: 0;
    }
}

/* ===== Pricing ===== */
.pricing-section {
    position: relative;
    padding-bottom: 90px;
}

.pricing-hero {
    background:
        linear-gradient(rgba(26, 109, 255, .82), rgba(26, 109, 255, .82)),
        url('../img/banner.jpg') center/cover no-repeat;
    padding: 90px 0 190px;
    text-align: center;
    color: #fff;
}

.pricing-hero h1 {
    color: #fff;
    font-size: 90px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 22px;
}

.pricing-hero p {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: rgba(255, 255, 255, .92);
}

.pricing-hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pricing-hero-btns .btn {
    padding: 8px 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: -120px;
    position: relative;
    z-index: 2;
}

.plan-card {
    background: #fff;
    border-radius: 32px;
    padding: 34px 32px;
    box-shadow: 0 30px 60px rgba(10, 31, 68, .12);
    display: flex;
    flex-direction: column;
}

.plan-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.plan-head h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading);
}

.plan-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1;
}

.plan-price span {
    font-size: 16px;
    font-weight: 500;
    color: #9aa7ba;
}

.plan-desc {
    color: var(--text);
    font-size: 16px;
    padding-bottom: 22px;
    border-bottom: 1px solid #eef1f6;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--heading);
    font-size: 16px;
    font-weight: 500;
}

.plan-features li i {
    color: var(--blue);
    font-size: 18px;
}

.plan-btn {
    width: 100%;
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 40px;
    border: 1px solid var(--blue);
    color: var(--blue);
    font-weight: 600;
    font-size: 15px;
    transition: .3s;
}

.plan-btn:hover {
    background: var(--blue);
    color: #fff;
}

@media (max-width: 991px) {
    .pricing-hero h1 {
        font-size: 52px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .pricing-hero {
        padding: 60px 0 170px;
    }

    .pricing-hero h1 {
        font-size: 40px;
    }

    .pricing-hero p {
        font-size: 15px;
    }

    .pricing-section {
        padding-bottom: 60px;
    }

    .plan-card {
        padding: 28px 24px;
        border-radius: 24px;
    }

    .plan-price {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .pricing-hero {
        padding: 50px 0 150px;
    }

    .pricing-hero h1 {
        font-size: 32px;
    }

    .pricing-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-hero-btns .btn {
        width: 100%;
    }

    .plan-card {
        padding: 26px 20px;
    }

    .plan-head h3 {
        font-size: 20px;
    }

    .plan-price {
        font-size: 32px;
    }

    .plan-desc,
    .plan-features li {
        font-size: 15px;
    }
}

/* ===== FAQ ===== */
.faq-sec {
    padding: 90px 0;
}

.faq-title {
    text-align: center;
    font-size: 46px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 50px;
}

.faq-title span {
    color: var(--blue);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 18px 40px rgba(10, 31, 68, .07);
    padding: 6px 26px;
    transition: .3s;
    border: 15px solid #7b98e330;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    text-align: left;
    font-size: 23px;
    font-weight: 500;
    color: var(--heading);
    font-family: inherit;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: .3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}

.faq-a > p {
    overflow: hidden;
    color: var(--text);
    font-size: 16px;
    margin: 0;
}

.faq-item.active .faq-a {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-a > p {
    padding-bottom: 22px;
}

@media (max-width: 767px) {
    .faq-sec {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 30px;
        margin-bottom: 34px;
    }

    .faq-q {
        font-size: 16px;
        padding: 18px 0;
    }

    .faq-item {
        padding: 4px 18px;
    }
}

/* ===== Sign Up ===== */
.sign-up-section {
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;
}
@media (max-width: 767px) {
    .signup-badge .fa-check {
    top: 43% !important;
    left: 12% !important;
    }
}
.signup-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(rgba(26, 109, 255, .28), rgba(26, 109, 255, .28)),
        url('../img/right.jpg') center/cover no-repeat;
    z-index: 0;
}

.signup-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 40px;
}

.signup-left {
    padding-right: 20px;
}

.signup-badge {
    position: relative;
    display: inline-flex;
    justify-content: center;
    font-size: 84px;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 22px;
     gap: 20px;
}

.signup-badge .fa-check {
    position: absolute;
    top: 34%;
    left: 8%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 40px;
}

.signup-thanks {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.15;
    margin-bottom: 34px;
}

.signup-plan h3 {
    color: var(--blue);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 4px;
}

.signup-plan p {
    color: var(--heading);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 26px;
}

.signup-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 34px;
}

.signup-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--heading);
    font-size: 17px;
    font-weight: 500;
}

.signup-list li i {
    color: var(--blue);
    font-size: 18px;
}

.change-plan {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--heading);
    font-size: 18px;
    font-weight: 600;
}

.change-plan i {
    color: var(--blue);
    font-size: 13px;
}

.change-plan:hover {
    color: var(--blue);
}

.signup-form-wrap {
    position: relative;
    z-index: 2;
}

.signup-form {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 40px 80px rgba(10, 31, 68, .18);
    padding: 34px 34px 30px;
}

.signup-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.signup-form .form-group {
    margin-bottom: 18px;
}

.signup-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    margin-bottom: 7px;
}

.signup-form label span {
    color: #e2452f;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"] {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #dfe4ec;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--heading);
    background: #fff;
    transition: .3s;
}

.signup-form input::placeholder {
    color: #aab3c1;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--blue);
}

.captcha-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #eef3ff, #f7f9ff);
    border: 1px solid #dfe4ec;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
}

.captcha-word {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #6f7d92;
    font-style: italic;
    user-select: none;
}

.captcha-refresh {
    width: 34px;
    height: 30px;
    border: none;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: .3s;
}

.captcha-refresh:hover {
    background: var(--blue-dark);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 11.5px;
    line-height: 1.6;
    color: #6f7d92;
    font-weight: 400;
}

.form-check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--blue);
    cursor: pointer;
}

.form-check a {
    color: var(--blue);
    text-decoration: underline;
}

.signup-submit {
    width: 100%;
    border: none;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 20px;
    cursor: pointer;
    transition: .3s;
    margin-top: 6px;
}

.signup-submit:hover {
    background: var(--blue-dark);
}

@media (max-width: 991px) {
    .signup-photo {
        display: none;
    }

    .signup-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .signup-left {
        padding-right: 0;
    }

    .signup-thanks {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .sign-up-section {
        padding: 40px 0 60px;
    }

    .signup-form {
        padding: 24px 20px;
    }

    .signup-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .signup-thanks {
        font-size: 28px;
    }

    .signup-plan h3 {
        font-size: 26px;
    }

    .signup-plan p {
        font-size: 24px;
    }

    .signup-list li {
        font-size: 15px;
    }

    .signup-submit {
        font-size: 14px;
    }
}

/* ===== Contact Page ===== */
.contact-sec {
    background: #fff;
    padding: 0 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.contact-info {
    margin-top: -150px;
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 40px 80px rgba(10, 31, 68, .1);
    padding: 40px 38px;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 14px;
}

.contact-info h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--heading);
    line-height: 1.15;
    margin-bottom: 18px;
}

.contact-lead {
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 30px;
}

.contact-cards {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid #eef1f6;
    border-radius: 14px;
    transition: .3s;
}

.contact-card:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 30px rgba(26, 109, 255, .1);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card-body h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 3px;
}

.contact-card-body a,
.contact-card-body span {
    color: var(--text);
    font-size: 15px;
}

.contact-card-body a:hover {
    color: var(--blue);
}

.contact-sec .signup-form-wrap {
    margin-top: -150px;
}

.contact-sec .signup-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #dfe4ec;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--heading);
    background: #fff;
    resize: vertical;
    transition: .3s;
}

.contact-sec .signup-form textarea::placeholder {
    color: #aab3c1;
}

.contact-sec .signup-form textarea:focus {
    outline: none;
    border-color: var(--blue);
}

#form-messages {
    margin-bottom: 0;
}

#form-messages.alert-success,
#form-messages.alert-danger {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
}

#form-messages.alert-success {
    background: #e6f7ee;
    color: #1a7f4b;
}

#form-messages.alert-danger {
    background: #fdeaea;
    color: #c0392b;
}

.thank-you-message {
    text-align: center;
    padding: 20px 10px;
}

.thank-you-message .thank-you-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e6f7ee;
    color: #1a7f4b;
    font-size: 36px;
    margin-bottom: 18px;
}

.thank-you-message h3 {
    margin: 0 0 10px;
    font-size: 26px;
}

.thank-you-message p {
    margin: 0;
    color: #555;
    font-size: 15px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        margin-top: -120px;
    }

    .contact-sec .signup-form-wrap {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .contact-sec {
        padding: 0 0 70px;
    }

    .contact-info {
        padding: 28px 22px;
        margin-top: -90px;
    }

    .contact-info h2 {
        font-size: 30px;
    }

    .contact-card {
        gap: 14px;
        padding: 16px;
    }

    .contact-card-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .contact-sec .signup-form {
        padding: 26px 20px;
    }

    .form-heading h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

@media (max-width: 380px) {
    .contact-info h2 {
        font-size: 26px;
    }

    .form-heading h1 {
        font-size: 22px;
    }

    .contact-card-body h4 {
        font-size: 16px;
    }
}

/* Prevent long emails/links from overflowing on small screens */
.contact-card-body {
    min-width: 0;
}

.contact-card-body a,
.contact-card-body span {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.form-heading h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--heading);
    line-height: 1.15;
    margin-bottom: 24px;
    word-break: break-word;
}

/* ===== Blog Section ===== */
.blog-hero-section {
    position: relative;
}

.blog-hero {
    background:
        linear-gradient(rgba(26, 109, 255, .82), rgba(26, 109, 255, .82)),
        url('../img/banner.jpg') center/cover no-repeat;
    padding: 90px 0 190px;
    text-align: center;
    color: #fff;
}

.blog-hero h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 22px;
}

.blog-hero p {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: rgba(255, 255, 255, .92);
}

.blog-hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-hero-btns .btn {
    padding: 8px 30px;
}

.blog-section {
    background: #fff;
    padding: 70px 0 100px;
}

.blog-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 30px;
}

.blog-post {
    display: flex;
    flex-direction: column;
}

.blog-post-thumb {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-post-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-post-thumb:hover img {
    transform: scale(1.05);
}

.blog-post-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--heading);
    margin-bottom: 10px;
}

.blog-post-title a {
    color: inherit;
}

.blog-post-title a:hover {
    color: var(--blue);
}

.blog-post-text {
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 10px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.blog-post-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-post-author {
    font-weight: 600;
    color: var(--heading);
}

.blog-post-dot {
    color: #9aa5b5;
}

.blog-post-date {
    color: var(--text);
}

.blog-load-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.blog-load-btn {
    border: none;
    border-radius: 30px;
    background: var(--navy);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    cursor: pointer;
    transition: .3s;
}

.blog-load-btn:hover {
    background: #071733;
}

@media (max-width: 991px) {
    .blog-hero h1 {
        font-size: 52px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-hero {
        padding: 60px 0 90px;
    }

    .blog-hero h1 {
        font-size: 40px;
    }

    .blog-hero p {
        font-size: 15px;
    }

    .blog-hero-section {
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .blog-hero {
        padding: 50px 0 70px;
    }

    .blog-hero h1 {
        font-size: 32px;
    }

    .blog-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-hero-btns .btn {
        width: 100%;
    }

    .blog-section {
        padding: 60px 0 70px;
    }

    .blog-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-post-title {
        font-size: 18px;
    }
}

/* ===== Blog Details ===== */
.blog-details-section {
    background: #fff;
    padding: 90px 0 100px;
}

.bd-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

/* --- Main article --- */
.bd-feature {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 22px;
}

.bd-feature img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.bd-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text);
}

.bd-meta i {
    color: var(--blue);
    margin-right: 6px;
}

.bd-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--heading);
    margin-bottom: 20px;
}

.bd-main p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.bd-main h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.3;
    margin: 34px 0 14px;
}

.bd-main h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--heading);
    margin: 26px 0 12px;
}

.bd-main ul,
.bd-main ol {
    margin: 0 0 22px 0;
    padding-left: 0;
    list-style: none;
}

.bd-main ul li,
.bd-main ol li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

.bd-main ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--blue);
    font-size: 14px;
}

.bd-main ol {
    counter-reset: bd-ol;
}

.bd-main ol li {
    counter-increment: bd-ol;
}

.bd-main ol li::before {
    content: counter(bd-ol);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-main strong {
    color: var(--heading);
    font-weight: 600;
}

.bd-quote {
    display: flex;
    gap: 16px;
    background: #f4f8ff;
    border-left: 4px solid var(--blue);
    border-radius: 10px;
    padding: 24px 26px;
    margin: 10px 0 28px;
}

.bd-quote i {
    color: var(--blue);
    font-size: 24px;
    flex-shrink: 0;
}

.bd-quote p {
    margin: 0;
    font-size: 16px;
    font-style: italic;
    color: var(--heading);
}

/* Lead intro paragraph */
.bd-main .bd-lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--heading);
    font-weight: 500;
    margin-bottom: 24px;
}

/* Callout / note box */
.bd-note {
    display: flex;
    gap: 16px;
    background: #eef4ff;
    border: 1px solid #d6e4ff;
    border-radius: 12px;
    padding: 20px 22px;
    margin: 0 0 28px;
}

.bd-note .bd-note-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.bd-note-body h4 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: var(--heading);
}

.bd-note-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* Key takeaways box */
.bd-takeaways {
    background: #f8fafd;
    border: 1px solid #e6ecf5;
    border-radius: 14px;
    padding: 26px 28px;
    margin: 0 0 30px;
}

.bd-takeaways h3 {
    margin: 0 0 16px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bd-takeaways h3 i {
    color: var(--blue);
}

.bd-takeaways ul {
    margin-bottom: 0;
}

.bd-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 28px;
}

.bd-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
}

.bd-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid #eef1f6;
    border-bottom: 1px solid #eef1f6;
    margin-top: 10px;
}

.bd-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.bd-tags-label {
    font-weight: 600;
    color: var(--heading);
}

.bd-tags a {
    color: var(--text);
}

.bd-tags a:hover {
    color: var(--blue);
}

.bd-share {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.bd-share span {
    font-weight: 600;
    color: var(--heading);
}

.bd-share a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e2e8f2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 14px;
}

.bd-share a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

/* --- Author --- */
.bd-author {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 36px 0;
}

.bd-author-avatar {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.bd-author-body h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.bd-author-body p {
    margin: 0;
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

/* --- Comments --- */
.bd-comments-title,
.bd-comment-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.bd-comment-list {
    list-style: none;
}

.bd-comment {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.bd-comment-nested {
    margin-top: 24px;
    margin-left: 60px;
    flex-basis: 100%;
}

.bd-comment-avatar {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.bd-comment-body {
    flex: 1;
    min-width: 0;
}

.bd-comment-body p {
    margin: 0 0 10px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.bd-comment-body h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.bd-comment-date {
    display: block;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 6px;
}

.bd-reply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #f0592b;
}

.bd-reply:hover {
    color: #d8431a;
}

/* --- Inline reply form --- */
.bd-reply-form {
    margin-top: 14px;
}

.bd-reply-form input,
.bd-reply-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #dfe4ec;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--heading);
    background: #fff;
    margin-bottom: 12px;
    transition: .3s;
}

.bd-reply-form textarea {
    resize: vertical;
}

.bd-reply-form input:focus,
.bd-reply-form textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.bd-reply-form .field-error {
    border-color: #e74c3c;
}

.bd-reply-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bd-reply-actions .btn {
    border: none;
    cursor: pointer;
    padding: 9px 22px;
    font-size: 14px;
}

.bd-reply-cancel {
    border: none;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.bd-reply-cancel:hover {
    color: var(--heading);
}

/* --- Comment form --- */
.bd-comment-form {
    margin-top: 40px;
}

.bd-comment-form .bd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.bd-comment-form input,
.bd-comment-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #dfe4ec;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--heading);
    background: #fff;
    margin-bottom: 18px;
    transition: .3s;
}

.bd-comment-form textarea {
    resize: vertical;
}

.bd-comment-form input:focus,
.bd-comment-form textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.bd-comment-form .btn {
    border: none;
    cursor: pointer;
}

/* --- Sidebar --- */
.bd-widget {
    background: #f8fafd;
    border-radius: 14px;
    padding: 26px 24px;
    margin-bottom: 26px;
}

.bd-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.bd-search {
    display: flex;
    background: #fff;
    border: 1px solid #e2e8f2;
    border-radius: 8px;
    overflow: hidden;
}

.bd-search input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 14px;
    color: var(--heading);
    background: transparent;
}

.bd-search input:focus {
    outline: none;
}

.bd-search button {
    border: none;
    background: var(--blue);
    color: #fff;
    padding: 0 18px;
    cursor: pointer;
    transition: .3s;
}

.bd-search button:hover {
    background: var(--blue-dark);
}

.bd-recent {
    list-style: none;
}

.bd-recent li {
    display: flex;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e9eef5;
}

.bd-recent li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.bd-recent img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.bd-recent-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--heading);
    margin-bottom: 6px;
}

.bd-recent-title:hover {
    color: var(--blue);
}

.bd-recent-date {
    font-size: 12px;
    color: var(--blue);
}

.bd-services {
    list-style: none;
}

.bd-services li {
    margin-bottom: 10px;
}

.bd-services li:last-child {
    margin-bottom: 0;
}

.bd-services a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e2e8f2;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    transition: .3s;
}

.bd-services a i {
    color: var(--blue);
    transition: .3s;
}

.bd-services a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.bd-services a:hover i {
    color: #fff;
    transform: translateX(3px);
}

.bd-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bd-tag-cloud a {
    background: #fff;
    border: 1px solid #e2e8f2;
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 13px;
    color: var(--text);
    transition: .3s;
}

.bd-tag-cloud a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

@media (max-width: 991px) {
    .bd-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bd-feature img {
        height: 340px;
    }
}

@media (max-width: 575px) {
    .blog-details-section {
        padding: 60px 0 70px;
    }

    .bd-feature img {
        height: 220px;
    }

    .bd-title {
        font-size: 26px;
    }

    .bd-gallery {
        grid-template-columns: 1fr;
    }

    .bd-gallery img {
        height: 220px;
    }

    .bd-post-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .bd-author {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .bd-comment-nested {
        margin-left: 20px;
        margin-top: 20px;
        flex: 1 1 100%;
    }

    .bd-comment-form .bd-form-row {
        grid-template-columns: 1fr;
    }
}
