@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

:root {
    --quadone-font-primary: "Host Grotesk", serif;
    --quadone-font-fallback: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: var(--quadone-font-primary), var(--quadone-font-fallback);
}

body {
    background: #F8F8F8;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--quadone-font-primary), var(--quadone-font-fallback);
}


html {
    scroll-behavior: smooth;
}

/* Blogs Page start  */

.blog-hero-banner {
    background-image: url('../images/Blog_BG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 420px;
    display: flex;
    align-items: center;
}

.blog-hero-banner .blog-hero-content {
    color: white;
    max-width: 780px;
}

.blog-hero-banner .blog-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
}

.blog-hero-banner .blog-hero-content .breadcrumb-text {
    font-size: 24px;
    font-weight: 700;
    opacity: 1;
    margin-bottom: 16px;
}

.blog-hero-banner .blog-hero-content .hero-highlight {
    color: #1fc4ff;
    font-style: italic;
}

.blog-hero-banner .blog-hero-content .hero-subtext {
    max-width: 850px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .blog-hero-banner {
        height: auto;
        min-height: 320px;
        padding: 60px 0;
    }

    .blog-hero-banner .blog-hero-content h1 {
        font-size: 42px;
    }

    .blog-hero-banner .blog-hero-content .breadcrumb-text {
        font-size: 18px;
    }

    .blog-hero-banner .blog-hero-content .hero-subtext {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .blog-hero-banner .blog-hero-content h1 {
        font-size: 32px;
    }

    .blog-hero-banner .blog-hero-content .breadcrumb-text {
        font-size: 16px;
    }
}


.blog-bottom-section {
    padding: 60px 0px;
}


.blog-bottom-section .blog-category-sidebar h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-bottom-section .blog-category-list {
    list-style: none;
    padding: 0;
}

.blog-bottom-section .blog-category-list li {
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 6px;
    margin-bottom: 5px;
    font-size: 16px;
}

.blog-bottom-section .blog-category-list li:hover {
    background: #e9f4fb;
    color: #085FA3;
}

.blog-bottom-section .blog-category-list li.active {
    background: #d7edf9;
    font-weight: 600;
    color: #085FA3;
}
/* Blog Cards */

.blog-bottom-section .blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 470px;
}

.blog-bottom-section .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-bottom-section .blog-img {
    height: 230px;
    object-fit: cover;
    width: 100%;
}

.blog-bottom-section .tag {
    background: #e9f4fb;
    color: #2aabe3;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-bottom-section .blog-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    height: 100px;
    padding: 0px 10px;
}

.blog-bottom-section .blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #777;
    padding: 0px 10px;
}

.blog-bottom-section .blog-meta h6 {
    color: #000;
    font-weight: 500;
    margin-bottom: 6px;
}

.blog-bottom-section .blog-meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.blog-bottom-section .blog-date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-bottom-section .btn-primary {
    padding: 16px 80px;
    border-radius: 50px;
}

.blog-bottom-section .blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-bottom-section .blog-link:hover {
    color: inherit;
}

/* newsletter-section start  */

.newsletter-section {
    padding: 60px 0;
    /* background: #f3f3f3; */
}

.newsletter-section .newsletter-box {
    background-image: url("../images/News_Bg.png");
    background-size: cover;
    background-position: center;
    border-radius: 28px;
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
    color: white;
}

.newsletter-section .newsletter-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
}

.newsletter-section .newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 520px;
    margin: auto;
    background: #d7e5ec;
    border-radius: 50px;
    padding: 6px;
}

.newsletter-section .newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    background: transparent;
}

.newsletter-section .newsletter-form button {
    background: #2ea3d1;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
}

/* Star Icons */

.newsletter-section .star-icon {
    position: absolute;
    width: 100px;
    opacity: 0.8;
}

.newsletter-section .star1 {
    top: 50px;
    right: 160px;
}



/* ---------------------------------------- */

/* Blog-Details Page Start  */
.blog-details-hero {
    padding: 80px 0px;
    background: #d7e4ea;
}

.blog-details-hero .blog-category {
    display: inline-block;
    background: #d9ecff;
    color: #085FA3;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-details-hero .blog-details-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.blog-details-hero .blue-text {
    color: #085FA3;
}

.blog-details-hero .blog-author-info {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 16px;
    color: #555;
}

.blog-details-hero .blog-author-info i {
    margin-right: 8px;
    color: #6c757d;
}

.blog-details-hero .author,
.blog-details-hero .date {
    display: flex;
    align-items: center;
}

.blog-details-hero .blog-hero-img {
    max-width: 100%;
    border-radius: 14px;
}


/* ------------------------------------- */
/* BLOG BODY */

.blog-details-body {
    padding: 60px 0;
}

/* LEFT SIDEBAR */

.blog-details-body .topics {
     position: sticky;
    top: 10px;
    height: max-content;
}

.blog-details-body .topics h5 {
     font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid #e1e3f3;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.blog-details-body .topics ul {
    list-style: none;
    padding: 0;
}

.blog-details-body .topics li {
    margin-bottom: 5px;
    background: linear-gradient(270deg, rgb(249 249 249) 0% 0%, #e5eff6 50%, #deedf6 100%);
    border-radius: 4px;
}

/* RIGHT CONTENT */

.blog-details-body .blog-section p{
    color: #444;
    font-size: 17px;
    line-height: 1.7;
}

/* Enforce typography for single blog content */
.single .blog-details-body article.content h1 { font-size: 45px !important; }
.single .blog-details-body article.content h2 { font-size: 28px !important; }
.single .blog-details-body article.content h3 { font-size: 24px !important; }
.single .blog-details-body article.content h4 { font-size: 20px !important; }
.single .blog-details-body article.content p { font-size: 17px !important; }

.blog-details-body .author-section {
    margin-top: 60px;
}

.blog-details-body .author-box {
    background: #d9e7ee;
    padding: 40px 50px;
    border-radius: 20px;
}

.blog-details-body .author-heading {
    /* text-align: center; */
    font-weight: 700;
    font-size: 20px;
    color: #2a6fb2;
    margin-bottom: 12px;
}

.blog-details-body .author-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.blog-details-body .author-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid white;
    object-fit: cover;
}

.blog-details-body .author-text {
    flex: 1;
}

.blog-details-body .author-description {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    margin-bottom: 20px;
}

.blog-details-body .author-meta {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: flex-start;
    /* gap: 8px; */
    flex-direction: column;
}

.blog-details-body .linkedin-icon {
    color: #0a66c2;
    font-size: 18px;
    margin-left: 8px;
}


/* ----------------------------- */
/* more-blogs section start  */
.more-blogs {
    padding: 60px 0px 0px 0px;
}

.more-blogs .more-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.more-blogs .more-header h2 {
    font-weight: bold;
}


.more-blogs .back-top {
    background: #085FA3;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.more-blogs .blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 470px;
}

.more-blogs .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.more-blogs .blog-img {
    height: 230px;
    object-fit: cover;
    width: 100%;
}

.more-blogs .tag {
    background: #e9f4fb;
    color: #2aabe3;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 500;
}

.more-blogs .blog-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    height: 100px;
    padding: 0px 10px;
}

.more-blogs .blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #777;
    padding: 0px 10px;
}

.more-blogs .blog-meta h6 {
    color: #000;
    font-weight: 500;
    margin-bottom: 6px;
}

.more-blogs .blog-meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.more-blogs .blog-date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.more-blogs .blog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.more-blogs .blog-link:hover {
    color: inherit;
}

.blog-bottom-section .blog-category-sidebar h5{
font-size: 28px;
}

.blog-bottom-section .blog-category-sidebar{
    position: sticky;
    top: 50px;
}

.blog-details-body .topics h5{
font-size: 28px;
}

/* ---------------------------- MObile view Start ------------------------------------- */
/* Blog Page Start  */

@media (max-width: 767px) {
    .blog-bottom-section {
        padding: 30px 0px;
    }


    .newsletter-section {
        padding: 30px 0px;
    }

    .newsletter-section .newsletter-title {
        font-size: 24px;
    }

    .newsletter-section .newsletter-box {
        padding: 40px 20px;
    }

    .newsletter-section .star1 {
        top: 10px;
        right: 30px;
    }

    .newsletter-section .star-icon {
        width: 50px;
    }

    .newsletter-section .newsletter-form {
        font-size: 12px;
    }

    .blog-bottom-section .blog-title {
        font-size: 18px;
        height: 80px;
    }

    .blog-bottom-section .blog-card {
        height: 450px;
    }
.blog-bottom-section .blog-category-sidebar h5{
font-size: 20px;
}

.blog-details-body .topics h5 { 
font-size: 20px;
} 
}


@media (min-width: 768px) and (max-width: 991px) {
    .blog-bottom-section .blog-title {
        font-size: 16px;
    }

    .blog-bottom-section .blog-meta h6 {
        font-size: 14px;
    }

    .blog-bottom-section .blog-meta {
        font-size: 9px;
    }

    .newsletter-section .star1 {
        top: 50px;
        right: 40px;
    }

    .newsletter-section .star-icon {
        width: 80px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .newsletter-section .star1 {
        top: 50px;
        right: 40px;
    }

    .newsletter-section .star-icon {
        width: 80px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .newsletter-section .star1 {
        top: 50px;
        right: 100px;
    }

    .newsletter-section .star-icon {
        width: 100px;
    }
}

.clr p {
color: #444 !important;
}

.blog-details-body .topics li a {
     display: block;
    width: 100%;
    padding: 6px 9px;
    border-radius: 6px;
    text-decoration: none;
    color: #3d405f;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    transition: all 0.3s ease;
}

.blog-details-body .topics li a:hover {
      background-color:  linear-gradient(270deg, #dff0fb 0% 0%, #caeaff 50%, #8ad1ff 100%);
    color:  #07538f;
}

.blog-details-body .topics li a.active {
   background: linear-gradient(270deg, #dff0fb 0% 0%, #caeaff 50%, #8ad1ff 100%);
    color: #07538f;
    font-weight: 600;
}

/* -------------------------------------- */
/* Blog Details Page Start  */

@media (max-width: 767px) {
    .blog-details-body .topics {
        position: relative !important;
        top: auto !important;
    }

    .blog-details-hero {
        padding: 40px 0px;
    }

    .blog-details-hero .blog-details-title{
        font-size: 24px;
    }

    .blog-details-body .blog-section h3{
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .blog-details-body .author-content {
        flex-direction: column;
    }
}

p {
    line-height: 1.4 !important;
}