@import url("https://fonts.googleapis.com/css?family=Lora:400,400i|Open+Sans:300,400,600,700,800");
body {
    font-family: "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans", sans-serif;
    color: #000;
    font-weight: 300;
}

h1 {
    font-size: 45px;
    line-height: 61px;
}

h2 {
    font-size: 40px;
    line-height: 50px;
}

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

p, li, label {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 25px;
    color: #808080;
    margin-bottom: 0;
}

ul.social-links {
    margin-bottom: 0;
}
ul.social-links li:first-child a {
    padding-left: 0;
}
ul.social-links li a {
    padding: 0 15px;
    display: block;
}
ul.social-links li a i {
    font-size: 20px;
    color: #000;
}

html, body {
    overflow-x: hidden;
}

.shadow, .service .service-box {
    box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.08);
}

a {
    font-size: inherit;
    color: inherit;
}

a:focus,
a:hover {
    color: #1c466c;
    text-decoration: none;
}

.bg-gray {
    background: #fafafa;
}

.bg-blue {
    background: #1c466c;
}

.bg-1 {
    background: url(../images/background/promo-video-back.jpg) fixed no-repeat;
    background-size: cover;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}
.section-title h2 {
    font-size: 35px;
    margin-bottom: 13px;
}
.section-title p {
    width: 50%;
    margin: 0 auto;
}
@media (max-width: 480px) {
    .section-title p {
        width: 100%;
    }
}

textarea.form-control.main {
    height: initial;
}

.form-control::-webkit-input-placeholder {
    color: #808080;
    font-size: 14px;
}

.left {
    overflow: hidden;
}
.left img {
    margin-left: -40px;
}
@media (max-width: 768px) {
    .left img {
        margin-left: 0;
        margin-bottom: 30px;
    }
}

.right {
    overflow: hidden;
}
.right img {
    margin-left: 40px;
}
@media (max-width: 768px) {
    .right img {
        margin-left: 0;
    }
}

.service {
    overflow: hidden;
}

button:focus{
    outline: 0;
}

.btn {
    text-transform: uppercase;
}

.btn-rounded-icon {
    border-radius: 100px;
    color: #fff;
    border: 1px solid #fff;
    padding: 13px 50px;
}

.main-nav {
    background: #fff;
    z-index: 1;
}
.main-nav .navbar-brand {
    padding: 0;
}
.main-nav .navbar-nav .nav-item {
    position: relative;
    font-family: "Open Sans", sans-serif;
}
.main-nav .navbar-nav .nav-item .nav-link {
    position: relative;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 45px;
}
@media (max-width: 992px) {
    .main-nav .navbar-nav .nav-item .nav-link {
        line-height: 25px;
    }
}
.main-nav .navbar-nav .nav-item .nav-link span i {
    font-size: 11px;
}
.main-nav .navbar-nav .nav-item.active .nav-link {
    color: #1c466c;
}
.main-nav .navbar-nav .nav-item.active .nav-link:before {
    content: "";
    background: #1c466c;
    width: 60%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 20%;
}
@media (max-width: 992px) {
    .main-nav .navbar-nav .nav-item.active .nav-link:before {
        display: none;
    }
}
.main-nav .dropdown {
    position: relative;
}
.main-nav .dropdown .open > a,
.main-nav .dropdown .open > a:focus,
.main-nav .dropdown .open > a:hover {
    background: transparent;
}
.main-nav .dropdown.full-width .dropdown-menu {
    left: 0 !important;
    right: 0 !important;
}
@media (max-width: 992px) {
    .main-nav .dropdown {
        transform: none;
        left: auto;
        position: relative;
        text-align: center;
    }
}
.main-nav .dropdown .dropdown-menu {
    border-radius: 0;
    padding: 0;
    border: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    display: none;
    margin-top: 0;
}
.main-nav .dropdown .dropdown-menu.show {
    display: block;
}
@media (max-width: 992px) {
    .main-nav .dropdown .dropdown-menu {
        text-align: center;
        float: left !important;
        width: 100%;
        margin: 0;
    }
}
.main-nav .dropdown .dropdown-menu .dropdown-item {
    font-size: 13px;
    padding: 3px 22px;
    transition: 0.3s ease;
}
.main-nav .dropdown .dropdown-menu .dropdown-item.active, .main-nav .dropdown .dropdown-menu .dropdown-item.focus, .main-nav .dropdown .dropdown-menu .dropdown-item:focus, .main-nav .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    color: #1c466c;
}
.main-nav .dropdown .dropdown-menu li:first-child {
    margin-top: 10px;
}
.main-nav .dropdown .dropdown-menu li:last-child {
    margin-bottom: 10px;
}
@media (min-width: 992px) {
    .main-nav .dropdown .dropdown-menu {
        position: absolute;
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: visibility 0.2s, opacity 0.2s, transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
    }
    .main-nav .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        color: #777;
        transform: translateY(0px);
    }
}

.dropdown-submenu.active > a,
.dropdown-submenu:hover > a {
    color: #1c466c;
}

.dropleft .dropdown-menu,
.dropright .dropdown-menu {
    margin: 0;
}

.dropdown-toggle::after {
    display: none;
}

.dropleft .dropdown-toggle::before,
.dropright .dropdown-toggle::after {
    font-weight: bold;
    font-family: "themify";
    border: 0;
    font-size: 8px;
    vertical-align: 1px;
}

.dropleft .dropdown-toggle::before {
    content: "\e64a";
    margin-right: 5px;
}

.dropright .dropdown-toggle::after {
    content: "\e649";
    margin-left: 5px;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    outline: none;
}

.footer-main {
    padding: 20px 0;
    background: #d8ecec;
}
@media (max-width: 768px) {
    .footer-main {
        padding: 50px 0;
    }
}
.footer-main .block img {
    margin-bottom: 20px;
}
.footer-main .block img #small-Apps {
    fill: red;
}
.footer-main .block ul.social-icon li a {
    text-decoration: none;
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    background: #3f3f43;
    color: #fff;
    text-align: center;
    line-height: 38px;
}
@media (max-width: 768px) {
    .footer-main .block {
        margin-bottom: 40px;
    }
}
.footer-main .block-2 h6 {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 25px;
}

.call-to-action-app {
    text-align: center;
}
.call-to-action-app h2,
.call-to-action-app p,
.call-to-action-app a {
    color: #fff !important;
}
.call-to-action-app p {
    margin-bottom: 60px;
}
.call-to-action-app ul li {
    margin: 10px;
}
@media (max-width: 480px) {
    .call-to-action-app ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }
}
.call-to-action-app ul li:first-child {
    margin-left: 0;
}
.call-to-action-app ul li a i {
    font-size: 20px;
    margin-right: 5px;
}

.services .service-block {
    background: #fff;
    padding: 30px 40px;
    margin-bottom: 30px;
    border-radius: 5px;
}
.services .service-block:last-child {
    margin-bottom: 0;
}
@media (max-width: 480px) {
    .services .service-block:last-child {
        margin-bottom: 30px;
    }
}
.services .service-block h3 {
    line-height: 30px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}
.services .service-block i {
    font-size: 30px;
    color: #1c466c;
    margin-bottom: 15px;
    display: inline-block;
}
.services .service-block p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
}
.services .app-preview {
    display: flex;
    justify-content: center !important;
}
.services .app-preview img {
    height: 500px;
    width: auto;
}
@media (max-width: 992px) {
    .services .col-lg-4.m-auto {
        display: none;
    }
}

@media (max-width: 768px) {
    .service .service-thumb {
        width: 80%;
        margin: 0 auto;
    }
}
.service .service-box {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .service .service-box {
        width: 80%;
        margin: 0 auto;
    }
}
.service .service-box .service-item {
    text-align: center;
    padding: 10px;
    margin: 20px 0;
}
.service .service-box .service-item i {
    font-size: 20px;
    color: #1c466c;
    display: inline-block;
    margin-bottom: 10px;
}
.service .service-box .service-item p {
    font-size: 14px;
}

.feature .feature-content h2,
.feature .feature-content p {
    margin-bottom: 25px;
}
@media (max-width: 768px) {
    .feature .feature-content h2,
    .feature .feature-content p {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .feature .testimonial {
        text-align: center;
    }
}
.feature .testimonial p {
    font-family: "Lora", serif;
    margin-bottom: 10px;
    font-style: italic;
    color: #242424;
}
.feature .testimonial ul.meta li {
    font-size: 12px;
    margin-right: 10px;
}
.feature .testimonial ul.meta li img {
    height: 40px;
    width: 40px;
    border-radius: 100%;
}

.video-promo {
    padding: 150px 0;
}
.video-promo .content-block {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}
.video-promo .content-block h2 {
    font-size: 30px;
    color: #fff;
}
.video-promo .content-block p {
    margin-bottom: 30px;
}
.video-promo .content-block a i.video {
    height: 125px;
    width: 125px;
    background: #1c466c;
    display: inline-block;
    font-size: 40px;
    color: #fff;
    text-align: center;
    line-height: 125px;
    border-radius: 100%;
}
.video-promo .content-block a:focus {
    outline: 0;
}

/* homepage 3 */
.gradient-banner {
    padding: 100px 0 170px;
    position: relative;
    overflow: hidden;
    background: #1c466c;
}
.gradient-banner::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: #d8ecec;
    transform: skew(30deg);
    transform-origin:top;
}

.pull-top {
    margin-top: -100px;
}

.shapes-container {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.shapes-container .shape {
    position: absolute;
}
.shapes-container .shape::before {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(-35deg);
    position: absolute;
    border-radius: 50px;
}
.shapes-container .shape:nth-child(1) {
    top: 2%;
    left: 11%;
    width: 400px;
    height: 70px;
}
.shapes-container .shape:nth-child(2) {
    top: 14%;
    left: 18%;
    width: 200px;
    height: 15px;
}
.shapes-container .shape:nth-child(3) {
    top: 80%;
    left: 4%;
    width: 300px;
    height: 60px;
}
.shapes-container .shape:nth-child(4) {
    top: 85%;
    left: 15%;
    width: 100px;
    height: 10px;
}
.shapes-container .shape:nth-child(5) {
    top: 5%;
    left: 50%;
    width: 300px;
    height: 25px;
}
.shapes-container .shape:nth-child(6) {
    top: 4%;
    left: 52%;
    width: 200px;
    height: 5px;
}
.shapes-container .shape:nth-child(7) {
    top: 80%;
    left: 70%;
    width: 200px;
    height: 5px;
}
.shapes-container .shape:nth-child(8) {
    top: 55%;
    left: 95%;
    width: 200px;
    height: 5px;
}
.shapes-container .shape:nth-child(9) {
    top: 50%;
    left: 90%;
    width: 300px;
    height: 50px;
}
.shapes-container .shape:nth-child(10) {
    top: 30%;
    left: 60%;
    width: 500px;
    height: 55px;
}
.shapes-container .shape:nth-child(11) {
    top: 60%;
    left: 60%;
    width: 200px;
    height: 5px;
}
.shapes-container .shape:nth-child(12) {
    top: 35%;
    left: 75%;
    width: 200px;
    height: 5px;
}
.shapes-container .shape:nth-child(13) {
    top: 90%;
    left: 40%;
    width: 300px;
    height: 45px;
}
.shapes-container .shape:nth-child(14) {
    top: 54%;
    left: 75%;
    width: 200px;
    height: 5px;
}
.shapes-container .shape:nth-child(15) {
    top: 50%;
    left: 90%;
    width: 200px;
    height: 5px;
}
.shapes-container .shape:nth-child(16) {
    top: 50%;
    left: 81%;
    width: 100px;
    height: 5px;
}

.contact-button {
    height: 85px;
    width: 250px;
    font-size: 22px;
}

/* ========================================
   Hero CTA Buttons
   ======================================== */

.btn-hero-cta {
    display: inline-block;
    border-radius: 100px;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.25s ease;
}
.btn-hero-cta:hover {
    background: #fff;
    color: #1c466c;
    text-decoration: none;
}
.btn-hero-cta i {
    margin-right: 5px;
    font-size: 18px;
}
@media (max-width: 480px) {
    .btn-hero-cta {
        display: block;
        text-align: center;
        margin-right: 0 !important;
    }
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing-section {
    background: #fafafa;
}
.pricing-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 35px 30px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}
.pricing-audience {
    font-size: 15px;
    color: #808080;
    margin-bottom: 20px;
}
.pricing-price {
    margin-bottom: 5px;
}
.pricing-amount {
    font-size: 42px;
    font-weight: 700;
    color: #1c466c;
    line-height: 1.1;
}
.pricing-period {
    font-size: 18px;
    color: #808080;
    font-weight: 400;
}
.pricing-alt {
    font-size: 14px;
    color: #808080;
    margin-bottom: 5px;
}
.pricing-trial {
    font-size: 14px;
    font-weight: 600;
    color: #1c466c;
    margin-bottom: 20px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
    flex-grow: 1;
}
.pricing-features li {
    font-size: 14px;
    line-height: 22px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    padding-left: 22px;
    position: relative;
}
.pricing-features li::before {
    content: "\e64d";
    font-family: "themify";
    position: absolute;
    left: 0;
    color: #1c466c;
    font-size: 12px;
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-cta {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pricing-cta a img {
    border-radius: 6px;
}
.pricing-badge {
    display: inline-block;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1c466c;
    color: #fff;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pricing-badge-free {
    background: #d8ecec;
    color: #1c466c;
}

@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 20px;
    }
    .pricing-amount {
        font-size: 36px;
    }
}

/* ========================================
   FAQ Page
   ======================================== */

/* FAQ hero - matches blog hero style */
.faq-hero {
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
    background: #1c466c;
}
.faq-hero::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: #d8ecec;
    transform: skew(30deg);
    transform-origin: top;
}
.faq-hero .container {
    position: relative;
    z-index: 1;
}
.faq-hero h1 {
    color: #fff;
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 10px;
}
.faq-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-bottom: 0;
}
.faq-hero p a {
    color: #fff;
    text-decoration: underline;
}
.faq-hero p a:hover {
    color: #d8ecec;
}
@media (max-width: 768px) {
    .faq-hero {
        padding: 40px 0 35px;
    }
    .faq-hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

/* FAQ accordion */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}
.faq-section .accordion .card {
    border: none;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.faq-section .accordion .card-header {
    background: #fff;
    border-bottom: none;
    padding: 0;
}
.faq-section .accordion .card-header button {
    font-size: 17px;
    font-weight: 600;
    color: #1c466c;
    padding: 20px 50px 20px 25px;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    white-space: normal;
}
.faq-section .accordion .card-header button:hover {
    color: #1c466c;
    text-decoration: none;
}
.faq-section .accordion .card-header button::after {
    content: "\e64b";
    font-family: "themify";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #1c466c;
    transition: transform 0.3s ease;
}
.faq-section .accordion .card-header button.collapsed::after {
    content: "\e649";
}
.faq-section .accordion .card-body {
    padding: 0 25px 25px;
    background: #fff;
}
.faq-section .accordion .card-body p {
    font-size: 16px;
    line-height: 26px;
    color: #555;
}
.faq-section .accordion .card-body ul,
.faq-section .accordion .card-body ol {
    padding-left: 20px;
    margin-top: 10px;
}
.faq-section .accordion .card-body li {
    font-size: 16px;
    line-height: 26px;
    color: #555;
    margin-bottom: 6px;
}
@media (max-width: 480px) {
    .faq-section .accordion .card-header button {
        font-size: 15px;
        padding: 16px 40px 16px 20px;
    }
    .faq-section .accordion .card-body {
        padding: 0 20px 20px;
    }
}

/* FAQ CTA Section */
.faq-cta-section {
    padding: 80px 0;
}
.faq-cta-section h2 {
    font-size: 35px;
    font-weight: 300;
    margin-bottom: 15px;
}
.faq-cta-section p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* FAQ Jump Links */
.faq-jump-links {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}
.faq-jump-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.faq-jump-list li a {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid #1c466c;
    background: transparent;
    color: #1c466c;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}
.faq-jump-list li a:hover {
    background: #1c466c;
    color: #fff;
}
.faq-jump-list li a i {
    margin-right: 6px;
}
@media (max-width: 576px) {
    .faq-jump-list {
        gap: 8px;
    }
    .faq-jump-list li a {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* FAQ Section Headings */
.faq-section-heading {
    font-size: 26px;
    font-weight: 700;
    color: #1c466c;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d8ecec;
    scroll-margin-top: 80px;
}
.faq-section-heading:first-of-type {
    margin-top: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1c466c;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(28,70,108,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #153653;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(28,70,108,0.4);
}
@media (max-width: 576px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ========================================
   Blog Styles
   ======================================== */

/* Blog hero — slim gradient banner */
.blog-hero {
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
    background: #1c466c;
}
.blog-hero::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: #d8ecec;
    transform: skew(30deg);
    transform-origin: top;
}
.blog-hero .container {
    position: relative;
    z-index: 1;
}
.blog-hero h1 {
    color: #fff;
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 10px;
}
.blog-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-bottom: 0;
}

/* Breadcrumbs */
.blog-breadcrumb {
    padding: 15px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}
.blog-breadcrumb ol {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.blog-breadcrumb ol li {
    font-size: 14px;
    color: #808080;
}
.blog-breadcrumb ol li + li::before {
    content: "/";
    padding: 0 8px;
    color: #bbb;
}
.blog-breadcrumb ol li a {
    color: #1c466c;
    text-decoration: none;
}
.blog-breadcrumb ol li a:hover {
    text-decoration: underline;
}

/* Tag filter buttons */
.blog-filter {
    padding: 30px 0 10px;
}
.blog-filter-btn {
    display: inline-block;
    padding: 8px 22px;
    margin: 0 6px 10px 0;
    border-radius: 50px;
    border: 2px solid #1c466c;
    background: transparent;
    color: #1c466c;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: #1c466c;
    color: #fff;
}

/* Blog card grid */
.blog-cards {
    padding: 20px 0 60px;
    background: #f8f9fa;
}
.blog-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.blog-card-header {
    padding: 30px 30px 0;
}
.blog-card-body {
    padding: 20px 30px 30px;
}
.blog-card-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.blog-card-badge.builders {
    background: rgba(28,70,108,0.1);
    color: #1c466c;
}
.blog-card-badge.assessors {
    background: rgba(216,236,236,0.6);
    color: #1c466c;
}
.blog-card-badge.managers {
    background: rgba(28,70,108,0.2);
    color: #1c466c;
}
.blog-card h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}
.blog-card h3 a {
    color: #000;
    text-decoration: none;
}
.blog-card h3 a:hover {
    color: #1c466c;
}
.blog-card p.excerpt {
    font-size: 15px;
    line-height: 24px;
    color: #808080;
    margin-bottom: 15px;
}
.blog-card .meta {
    font-size: 13px;
    color: #aaa;
}
.blog-card .read-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1c466c;
    text-decoration: none;
    margin-top: 10px;
}
.blog-card .read-more:hover {
    text-decoration: underline;
}

/* Article page typography */
.blog-article {
    padding: 50px 0 80px;
}
.blog-article-content {
    max-width: 760px;
    margin: 0 auto;
}
.blog-article-content h2 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    color: #000;
    margin-top: 40px;
    margin-bottom: 18px;
}
.blog-article-content h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: #1c466c;
    margin-top: 30px;
    margin-bottom: 14px;
}
.blog-article-content p {
    font-size: 17px;
    line-height: 28px;
    color: #444;
    margin-bottom: 18px;
}
.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 18px;
    padding-left: 24px;
}
.blog-article-content li {
    font-size: 17px;
    line-height: 28px;
    color: #444;
    margin-bottom: 8px;
}
.blog-article-content blockquote {
    border-left: 4px solid #1c466c;
    margin: 30px 0;
    padding: 20px 25px;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
}
.blog-article-content blockquote p {
    font-family: "Lora", serif;
    font-style: italic;
    font-size: 18px;
    color: #333;
    margin-bottom: 0;
}
.blog-article-meta {
    font-size: 14px;
    color: #808080;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

/* Inline CTA box */
.blog-cta-box {
    background: linear-gradient(135deg, #1c466c 0%, #2a6a9e 100%);
    border-radius: 12px;
    padding: 35px 30px;
    margin: 40px 0;
    text-align: center;
}
.blog-cta-box h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
}
.blog-cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 20px;
}
.blog-cta-box .btn-cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: #fff;
    color: #1c466c;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    margin: 5px;
    transition: all 0.25s ease;
}
.blog-cta-box .btn-cta:hover {
    background: #d8ecec;
    color: #1c466c;
}

/* Author box */
.blog-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    margin: 50px 0 40px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}
.blog-author-box img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
.blog-author-box .author-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000;
}
.blog-author-box .author-info p {
    font-size: 14px;
    line-height: 20px;
    color: #808080;
    margin-bottom: 0;
}

/* Related articles */
.blog-related {
    padding: 60px 0;
    background: #f8f9fa;
}
.blog-related h2 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

/* Article hero image */
.blog-article-hero-img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 35px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 40px 0 35px;
    }
    .blog-hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .blog-card-header {
        padding: 20px 20px 0;
    }
    .blog-card-body {
        padding: 15px 20px 20px;
    }
    .blog-article-content h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .blog-article-content h3 {
        font-size: 20px;
    }
    .blog-cta-box {
        padding: 25px 20px;
    }
    .blog-author-box {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 24px;
        line-height: 32px;
    }
    .blog-filter-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}
