
/* ================================================================
      1.  Base Settings
      ================================================================ */

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "FragmentMono", monospace;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.64px;
    color: #1B1F1A;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* ================================================================
      2.  Typography
      ================================================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Zwizz', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5em;
}

h1,
h2 {
    font-size: 72px;
    font-weight: 300;
    line-height: 100%;
}

h3 {
    font-size: 48px;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}


/* ================================================================
      3.  Layout Utilities
      ================================================================ */

.section {
    padding: 120px 0px;
}

.subtitle {
    color: #1E25C7;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.64px;
    border-left: #1E25C7 2px solid;
    padding-left: 10px;
    font-family: "FragmentMono", monospace;
}

.title {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: -0.8px;
}

.section-light {
    background-color: #fff;
}

.section-dark {
    background-color: #000;
    color: #fff;
}

.container,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1664px;
    padding: 0 32px;
    margin: 0 auto;
}

.row {
    padding: 0;
    margin: 0;
}

[class^="col-"] {
    padding: 0;
    margin: 0;
}

.border-top {
    padding-top: 24px;
    border-top: 1px solid #0000001F;
}

.bg-grey {
    background-color: #F7F7F7;
}

/* ================================================================
Components - Global Class usage
================================================================ */

/* Buttons */
.blue-btn {
    background-color: #1E25C7;
    border: none;
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0px;
    text-transform: uppercase;
    font-family: "FragmentMono", monospace;
    width: fit-content;
}

.blue-btn:hover {
    background-color: #3C96E9;
}

.white-btn {
    background-color: #fff;
    border: none;
    color: #1E25C7;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0px;
    text-transform: uppercase;
    font-family: "FragmentMono", monospace;
}

.white-btn:hover {
    background-color: #000;
    color: #fff;
}

.border-btn {
    border: 1px solid #969AA4;
    color: #969AA4;
    background: transparent;
    padding: 8px 17.5px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0px;
    text-transform: uppercase;
    height: 44px;
    font-family: "FragmentMono", monospace;
}

.border-btn:hover {
    color: #1E25C7;
    border: 1px solid #1E25C7;
}

.text-btn {
    font-size: 16px;
    font-weight: 400;
    font-family: "FragmentMono", monospace;
    text-transform: uppercase;
    color: #1B1F1A;
    background: transparent;
    text-decoration: underline;
    letter-spacing: .64px;
    border: none;
}

.text-btn:hover {
    text-decoration: none;
}

.text-32 {
    font-size: 32px;
    font-weight: 400;
    font-family: 'Zwizz', sans-serif;
    max-width: 737px;
    width: 100%;
}

.text-24 {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Zwizz', sans-serif;
}

/* ================================================================
Hero gradient
================================================================ */

.hero-gradient {
    background: linear-gradient(180.46deg, #4542F4 32.54%, #3C96E9 55.76%, #CDE4F9 75.36%, #FFFFFF 100%);
}

.hero-gradient .row {
    padding: 120px 0px 0px;
}

.hero-section.hero-gradient .row {
    padding: 0px;
}

/* ================================================================
Header
================================================================ */

.header-section {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 35px 0px;
    z-index: 2;
}

.header-section img {
    max-width: 186px;
    width: 100%;
}

.header-section a {
    color: #fff;
    text-transform: uppercase;
    font-family: "FragmentMono", monospace;
    font-size: 16px;
    font-weight: 400;
    padding: 0px;
    letter-spacing: 0.64px;
}

.desk-header {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin: 0;
}

.blog-header .desk-header {
    justify-content: space-between;
    margin: 0 auto;
}

.header-section li {
    padding: 0px 10px;
    line-height: 100%;
}

.header-section li a {
    line-height: 100%;
}

.header-section .nav-item:hover a,
.header-section a.active {
    border-bottom: 2px solid #fff;
    color: #fff;
    padding: 0px;
    padding-bottom: 5px;
}

.blog-page .header-section .nav-item:hover a,
.blog-page .header-section a.active,
.contact-page .header-section .nav-item:hover a,
.contact-page .header-section a.active {
    color: #000;
    border-bottom: 2px solid #000;
}

.close-btn {
    display: none;
}

.nav-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-toggle:hover {
    background: transparent;
}

/* ================================================================
Hero / Banner - Homepage
================================================================ */

.hero-section {
    padding: 100px 0px 0px;
}

.banner-left-content {
    padding-top: 120px;
}

.banner-left-content h1 {
    font-size: 72px;
    font-weight: 300;
    color: #fff;
}

.banner-left-content p {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    font-family: 'Zwizz', sans-serif;
}

.banner-right-content {
    padding-top: 220px;
}

.banner-right-content h3 {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
}

.feature-header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.feature-header a {
    border-bottom: 1px solid #fff;
    text-decoration: none;
}

.banner-right-content a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4%;
    padding-top: 6px;
    margin-right: 50px;
}

.feature-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.75) 100%);
    color: #fff;
    pointer-events: none;
}

.feature-card img {
    width: 100%;
    max-width: 1022px;
}

.date {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.6;
    margin-bottom: 10px;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
    pointer-events: none;
}

.article-description {
    font-size: 20px;
    font-weight: 400;
    opacity: .75;
    max-width: 550px;
    width: 100%;
}

.article-title {
    font-size: 32px;
    font-weight: 400;
}

.feature-btn {
    background: #fff;
    border: none;
    padding: 12px 15px;
    line-height: 0px;
    position: absolute;
    right: 40px;
    bottom: 200px;
}

.feature-btn i {
    color: #1E25C7;
}

/* ================================================================
 Home alt page CSS 
 ================================================================ */

.hero-alt {
    padding-top: 120px;
}

.home-alt-lead {
    font-size: 88px;
    font-weight: 300;
    letter-spacing: -0.8px;
    max-width: 620px;
    width: 100%;
}

.hero-alt-bottom-logo {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -350px;
    z-index: 9;
}

/* ================================================================
 Featured Posts section
 ================================================================ */

.featured-posts {
    background-color: #f7f7f7;
    padding: 120px 0px;
}

.featured-posts .row {
    padding: 0px 32px
}

.featured-posts .slider-container {
    padding-left: 32px;
}

.featured-posts p.description {
    color: #1B1F1A;
    font-size: 24px;
    line-height: 130%;
    opacity: .6;
    font-family: 'Zwizz', sans-serif;
}

.post-square-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1E25C7;
    color: #fff;
    border: 0;
    border-radius: 0;
    top: 5px;
    right: 5px;
}

.featured-posts .post-wrapper {
    position: relative;
    margin-right: 20px;
}

.featured-posts .post-wrapper:after {
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.featured-posts .post-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.featured-posts .post-card {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fff;
    color: #000;
    padding: 2rem 2.25rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
    width: 100%;
    max-width: 640px;
    z-index: 2;
}

.post-date {
    font-size: 16px;
    color: #1B1F1A;
    font-weight: 400;
    opacity: .75;
    margin-bottom: 10px;
}

h3.post-title {
    font-size: 24px;
    font-weight: 400;
    color: #1B1F1A;
    margin-bottom: 20px;
}

p.post-description {
    font-size: 16px;
    font-weight: 400;
    color: #1B1F1A;
    opacity: .75;
    font-family: 'IBMPlexMono', monospace;
}

p.post-description:last-child {
    margin-bottom: 0;
}

.featured-slider {
    margin: 0;
    margin-top: 85px;
}

.featured-slider .slide-item .post-wrapper {
    width: 1024px !important;
    max-width: 1024px;
}

/* ================================================================
 Featured alt posts section
 ================================================================ */

.featured-posts.featured-alt .post-wrapper {
    margin-right: 0px;
}

.featured-alt .slide-item .post-wrapper {
    margin-bottom: 64px;
}

.featured-posts.featured-alt .slide-item:last-child .post-wrapper {
    margin-bottom: 0px;
}

.featured-alt {
    padding-bottom: 0px;
}

/* ================================================================
 Newsroom Section
 ================================================================ */



.newsroom-section {
    padding: 0px 0px 120px;
    background-color: #f8f9fa;
}

.news-container {
    position: relative;
    margin-top: 89px;

}

.news-slider {
    padding-left: 12px;
}


.news-container .news-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    /* margin: 0 15px; */
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.news-container .news-item:first-child .news-card {
    margin: 0;
}

.news-container .news-card::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    content: "";
}

.newsroom-section .subtitle.dark-font {
    color: #1B1F1A;
    font-size:24px;
}

.news-container .news-image {
    width: 100%;
    height: 526px;
    object-fit: cover;
    background-color: #e9ecef;
    position: relative;
}

.news-container .news-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    z-index: 2;
    position: relative;
}

.news-container .read-more-btn {
    background-color: #4A68C2;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.news-container .read-more-btn:hover {
    background-color: #3d56a5;
    color: white;
    text-decoration: none;
}

.news-container .read-more-btn i {
    font-size: 12px;
}

.news-container .slick-prev,
.news-container .slick-next {
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-container .custom-arrows {
    position: absolute;
    top: -120px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 1;
}

.news-container .custom-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Base look – enabled */
.custom-prev,
.custom-next {
    background-color: #000;
    color: #fff;
    /* black arrows */
    cursor: pointer;
    transition: opacity .2s;
}

.is-disabled {
    background: #E1E1E1;
    /* greyed out */
    pointer-events: none;
    /* clicks blocked */
    cursor: default;
    color: #000;
}


.news-container .custom-arrow:hover {
    background-color: #4A68C2;
    color: white;
    border-color: transparent;
}

.news-container .custom-arrow.arrow-disabled {
    background-color: #E1E1E1;
    color: #000 !important;
    opacity: 1;
    cursor: not-allowed;
}

.news-container .post-square-btn {
    position: absolute;
    top: 70px;
    right: 24px;
    text-decoration: none;
}

.news-container h3.post-title {
    width: 100%;
    max-width: 434px;
    padding-right: 55px;
}

/* ================================================================
     Books Section
      ================================================================ */

.books-section {
    min-height: 100vh;
    width: 100%;
}

.books-list {
    background: #1A1A1F;
    padding: 40px 58px;
}

.books-list .books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 808px;
}

.book-card {
    background: #1F1F24;
    padding: 2rem 1.5rem 1.25rem;
    text-align: center;
    position: relative;
}

.book-card img {
    max-width: 230px;
    width: 100%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
    margin: 0 auto 1.75rem;
}

.custom-btn {
    font-size: 16px;
    font-weight: 400;
    font-family: "FragmentMono", monospace;
    text-transform: uppercase;
    background: #F7F7F71F;
    color: #fff;
    border: none;
    border: 1px solid #F7F7F71F;
    height: 39px;
    border-radius: 0px;
}

.custom-btn:hover {
    background-color: #4A68C2;
    color: white;
    border-color: transparent;
}

.coming-soon {
    border: 2px dashed #37373C;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    min-height: 100%;
}

.coming-soon h6 {
    font-family: "FragmentMono", monospace;
    font-weight: 400;
    font-size: 16px;
    line-height: 96%;
    letter-spacing: .64px;
    text-align: center;
    text-transform: uppercase;
    color: #9D9D9D;

}

.coming-soon h5 {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Zwizz', sans-serif;
    line-height: 130%;
    letter-spacing: .64px;
    text-align: center;
    color: #F7F7F7;
}

.coming-soon h5 span {
    opacity: .6;
}

.books-info {
    color: #fff;
    background: linear-gradient(169.22deg, #4542F4 38.49%, #3C96E9 61.55%, #CDE4F9 81.33%, #FFFFFF 91.23%);

}

.books-info .section-title {
    letter-spacing: -2px;
}

/* ================================================================
 Podcast Section
 ================================================================ */

.podcast-card {
    border: none;
    background: transparent;

}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.podcast-card img {
    width: 100%;
    height: 260px;
    object-fit: cover
}

.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.play-btn i {
    font-size: 24px;
    color: #020101;
}

.podcast-card .card-body {
    color: #fff;
    padding: 24px;
}

.slick-track {
    display: flex;
    column-gap: 20px
}

.slick-list {
    display: flex;
    column-gap: 20px;
}

.episode {
    font-family: "FragmentMono", monospace;
    font-weight: 400;
    font-size: 16px;
    color: #F7F7F7;
    opacity: .6;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h3.podcast-title {
    font-weight: 400;
    font-size: 24px;
}

p.podcast-description {
    font-size: 16px;
    font-weight: 400;
    color: #F7F7F7;
    opacity: .75;
}

.watch-link {
    font-weight: 400;
    color: #fff;
    letter-spacing: .2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.podcast-slider .slick-slide {
    height: 100%;
    background-color: #1A1A1F;
}

.podcast-slider {
    margin: 0 -32px;
    padding-left: 12px;
}

.episodes-counter {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.extra-nav .nav-btn {
    width: 48px;
    height: 48px;
    background: #1B1F1A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: .5rem;
    color: #fff;
}

.extra-nav .nav-btn.prev-extra {
    background: #E1E1E1;
    color: #000000;
    border: none;
}

.extra-nav .nav-btn i,
.custom-arrow i {
    font-size: 28px;
}

.podcast-nav {
    padding-top: 24px;

    border-top: 1px solid #0000001F;
    margin-top: 40px;
}

h2.podcast-title {
    max-width: 778px;
    width: 100%;
    padding-top: 40px;
    font-size: 72px;
}


/* ================================================================
    Newsletter -Form  footer Section
    ================================================================ */

.newsletter-wrapper {
    padding-bottom: 0px;
}

.letter-spacing-sm {
    letter-spacing: .05rem;
}

.subscribe-box {
    background-color: #1E25C7;
    padding: 8px 8px 8px 48px;
    margin-top: 79px;
}

.subscribe-box input::placeholder {
    color: rgba(255, 255, 255, .55);
}

.right-bullet-col p,
.right-bullet-col li {
    font-family: 'Zwizz', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #1B1F1A;
}

.right-bullet-col li {
    opacity: .6;
}

.form-left-col {
    padding-right: 75px;
}

p.form-label {
    font-family: "FragmentMono", monospace;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: .64px;
    text-transform: uppercase;
    margin-bottom: 90px;
    color: #fff;
}

.footer-link {
    color: #1B1F1A;
    text-decoration: none;
    font-size: 16px;
    opacity: .6;
    font-weight: 400;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-cta-form input,
.footer-cta-form input:focus {
    border: none;
    background: transparent;
    color: #fff;
    height: 112px;
    font-family: 'Zwizz', sans-serif;
    padding: 0px;
    border-bottom: 1px solid #FFFFFF4D;
    border-radius: 0px;
    outline: none;
    box-shadow: none;
}

.footer-cta-form input::placeholder {
    color: #FFFFFF;
    font-size: 72px;
    font-weight: 400;
    opacity: .3;
}

.disclaimer {
    color: #F7F7F7;
    opacity: .75;
    width: 100%;
    max-width: 778px;
}

.disclaimer a {
    color: #f7f7f7;
    text-decoration: underline;
}

.desk-footer-logo {
    padding-bottom: 45px;
    width: 100%;
    height: 100%;
}

.copyright-text {
    font-size: 16px;
}

.footer-form-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

p.footer-logo-text {
    color: #1E25C7;
    font-size: 16px;
    padding: 0 10px;
    margin: 0 0px 40px;
}

.footer-border-top {
    border-top: 1px solid #D5D5D5;
}

.footer-section .row {
    padding: 120px 0px;
}

/* Model CSS START */

#newsletterModal {
    backdrop-filter: blur(5px);
}

#newsletterModal .modal-content {
    background: linear-gradient(179.47deg, #4542F4 20.47%, #3C96E9 39.81%, #CDE4F9 59.53%, #FFFFFF 72.29%);
}

#newsletterModal .modal-dialog .modal-content {
    padding: 80px 45px;
}

#newsletterModal .modal-dialog {
    max-width: 606px;
    width: 100%;
    margin: 0 auto;
}

#newsletterModal .newsletter-header h2 {
    font-family: 'Zwizz', sans-serif;
    font-weight: 300;
    font-size: 40px;
    line-height: 100%;
    padding-bottom: 40px;
}

#newsletterModal input.form-control {
    border-bottom: 1px solid #20202033;
    box-shadow: none;
    border-width: 0px 0px 1px 0px;
    border-radius: 0px;
    height: 48px;
    color: #0000004D;
    font-size: 24px;
    font-weight: 400;
    background: transparent;
}

#newsletterModal .btn-close {
    padding: 10px;
    background-color: #fff;
    opacity: 1;
    border-radius: 0;
}

#newsletterModal input.form-control::placeholder {
    color: #000;
    opacity: .3;
}

/* Model CSS END */

/* ================================================================
Contact page
================================================================ */

.contact-section .contact-list li {
    position: relative;
    padding-left: 1rem;
}

.contact-section .contact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: #1E25C7;
}

.contact-left-panel {
    padding: 150px 32px 120px;
}

.contact-section .form-control:focus {
    box-shadow: none;
    border-color: #1E25C7;
}

.header-section .contact-menu a {
    color: #000;
}

.header-section .contact-menu a:hover,
.header-section .contact-menu a.active {
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

p.intro-subtitle {
    font-family: "FragmentMono", monospace;
    font-weight: 400;
    font-size: 24px;
    color: #1A1A1F;
}

.contact-form input {
    border: none;
    background: transparent;
    height: 71px;
    font-family: 'Zwizz', sans-serif;
    padding: 0px;
    border-bottom: 1px solid #FFFFFF4D;
    border-radius: 0px;
    outline: none;
    box-shadow: none;
    font-size: 24px;
    font-weight: 400;
}

.contact-form input::placeholder {
    color: #1B1F1A;
    opacity: .4;
    font-size: 24px;
    font-weight: 400;
}

.contact-list li a {
    font-family: 'Zwizz', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1B1F1A;
    opacity: .6;

}

.contact-list li span {
    font-family: 'Zwizz', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1B1F1A
}

.contact-detail-row {
    padding-top: 80px;
    justify-content: space-between;
}

.contact-detail-row h6 {
    font-weight: 500;
}

.contact-right-panel img {
    object-position: 65% 100%;
}

/* ================================================================
      6.  About page
      ================================================================ */

/* ====== Hero banner — Start ====== */
.hero-lead {
    font-size: 40px;
    font-weight: 400;
    max-width: 777px;
    width: 100%;
    font-family: 'Zwizz', sans-serif;
}

.about-hero {
    padding: 30px 0px 0px;
    object-fit: cover;
    background: radial-gradient(44.27% 126.06% at 72.34% 53.07%,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 100%),
        url('../img/about-hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-left-col {
    padding: 100px 0px 0px;
}

.hero-img {
    max-width: 100%;
    width: 100%;
}

.hero-img-col {
    z-index: 1;

}

/* ====== Hero banner — End ====== */

/* ====== Rotate ticker — Start ====== */

.rotate-list {
    position: absolute;
    z-index: 0;
    bottom: 40px;
}

.rotate-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    gap: 40px;
}

.rotate-ticker {
    display: flex;
    gap: 40px;
    animation: ticker 13s linear infinite;
}

.rotate-item {
    padding-left: 70px;
    position: relative;
}

.rotate-item {
    padding: 10px 0 10px 10px;
    font-size: 100px;
    font-weight: 400;
    color: #fff;
    opacity: .6;
    white-space: nowrap;
    font-family: 'Zwizz', sans-serif;
    display: flex;
    align-items: center;
    gap: 35px;
    padding-left: 80px;
}

.rotate-item i {
    font-size: 40px;
}

.rotate-item::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ====== Hero gradient — End ====== */

/* ====== Hero gradient Content — Start ====== */

.about-right-content {
    width: 100%;
    max-width: 950px;
    margin-right: 0;
    margin-left: auto;
    color: #fff;
}

.book-content {
    padding-left: 164px;
}

.book-content-section {
    padding-top: 120px;
    background: linear-gradient(180.46deg, #4542F4 27.54%, #3C96E9 42.76%, #CDE4F9 60.36%, #FFFFFF 100%);
}

.book-content-section .row {
    padding-bottom: 182px;
}

.book-cover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

/* ====== Hero gradient Content — End ====== */

/* ====== Hasna Vision Section — Start ====== */

.vision-image-secondary {
    width: 379px;
    height: 362px;
    object-fit: cover;
    right: 0;
    top: 529px;
    position: absolute;
}

.vision-section h2 {
    font-size: 16px;
    font-weight: 400;
    font-family: "FragmentMono", monospace;
}

.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
}

.full-width {
    max-width: 100%;
}

.section-copy {
    font-size: 1.05rem;
    line-height: 1.6;
}

.vision-image-main {
    width: 100%;
    max-width: 808px;
    height: 891px;
    object-fit: cover;
    margin-left: 48px;
}

/* ====== Hasna Vision Section — End ====== */

/* ====== Investor & Mentor Section — Start ====== */

.investor-mentor-section h1 {
    font-weight: 400;
}

.invest-slider .slide {
    position: relative;
    overflow: hidden;
    width: 320px;
    height: 460px;
}

.invest-slider .slick-track {
    column-gap: 45px;
}

.invest-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: #1E25C7;
    color: #fff;
    padding: 2rem;
    opacity: 0;
    transform: scale(.96);
    transition: opacity .35s ease, transform .35s ease;
    align-items: center;
}

.invest-slider .slide:hover img {
    transform: scale(1.05);
}

.invest-slider .slide:hover .slide-overlay,
.invest-slider .slide:focus .slide-overlay {
    opacity: 1;
    transform: scale(1);
}

.invest-slider .slide {
    height: 515px;
    width: 360px;
}

.invest-slider .slick-list {
    margin-left: -32px;
}

/* ====== Investor & Mentor Section — End ====== */

/* ================================================================
 Blog page
================================================================ */

.blog-header-btn {
    padding: 8px 17.5px !important;
    border: 2px solid #1E25C7;
}

.blog-section {
    padding: 160px 0px 113px;
}

.blog-heading {
    width: 100%;
    max-width: 840px;
    margin: 0;
}

.blog-heading span {
    color: #1E25C7;
}

/* newsroom highlight section */
.news-highlights-section {
    padding-top: 0;
    background: #f7f7f7;
    padding-bottom: 80px;
}

.news-highlights-section .container-fluid {
    padding-right: 0px;
    padding-left: 32px;
}

.news-highlights-section .news-container {
    border-top: 1px solid #0000001F;
    padding-top: 24px;
    padding-bottom: 73px;
    margin: 0;
}

.news-highlights-section .news-container .custom-arrows {
    top: 25px;
}

.blog-sec-border {
    border-top: 1px solid;
    border-top-color: #0000001F;
    padding-top: 24px;
    padding-left: 32px;
}

.news-highlights-section .post-wrapper:after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.news-highlights-section .post-card {
    color: #fff;
    width: 100%;
    max-width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 9;
}

.news-highlights-section .post-date,
.news-highlights-section .post-title,
.news-highlights-section .post-description {
    color: #fff;
    width: 100%;
    max-width: 550px
}

.news-highlights-section .post-title {
    font-size: 32px;
    font-weight: 500;
}

.news-highlights-section .post-description {
    font-size: 20px;
    font-weight: 400;
}

.news-highlights-section .post-square-btn {
    background: #fff;
    color: #1E25C7;
}

.news-highlights-section .post-square-btn:hover {
    background: #1E25C7;
    color: #fff;
}

.news-slide img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.post-wrapper {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.featured-slider .news-slide {
    margin-right: 20px;
}

.news-highlights-section .featured-slider .slide-item .post-wrapper {
    width: 100% !important;
    max-width: 1024px;
}

.post-card {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding-bottom: 20px;
}

.news-slide {
    margin-right: 20px;
}

.news-highlights-section .post-wrapper:after {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

/* Press slider css start */

.press-slider-wrapper {
    overflow: hidden;
    padding-left: 12px;
    /* optional */
    margin-right: -80px;
    /* simulate cutoff effect */
}

.press-card.slick-slide.slick-current.slick-active {
    padding-left: 0px;
}

.press-slider-section {
    padding-bottom: 80px;
}

.press-card {
    border: none;
    overflow: hidden;
}

.press-thumb {
    height: 320px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.press-thumb img {
    max-height: 60%;
    max-width: 80%;
    object-fit: contain;
}

/*  meta row  */
.meta-dot {
    width: 14px;
    height: 14px;
    background: #1E25C7;
    display: inline-block;
    margin-right: 6px;
}

.press-meta small {
    font-size: 14px;
    text-transform: uppercase;
    color: #0A151E;
    font-weight: 400;
}

.press-meta small span {
    color: #0A151E;
    opacity: .4;
}

.press-title {
    margin-bottom: 0.25rem;
}

.press-excerpt {
    color: #676C6D;
    font-family: 'Zwizz', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding-top: 10px;
}

.press-slider .slick-slide {
    padding: 0 24px;
}

.press-slider .slick-list {
    margin: 0 -12px;
}

.press-slider .slick-track {
    column-gap: 0px;
}

.press-slider-section .subtitle {
    color: #1B1F1A;
}

/* ---------- browse news section ---------- */

.browse-news-section {
    padding: 80px 0px 0px;
}

.browse-news-section .section-title {
    font-size: 2rem;
    font-weight: 500;
}

/* ---------- search & filters ---------- */
.search-bar {
    position: relative;
}

.search-filter {
    margin: 60px 0px 54px;
    background: #fff;
    padding: 21.5px 16px;
    border: 1px solid #0000001F;
}

.search-bar .form-control {
    border: none;
    font-size: 24px;
    color: #000000;
    font-weight: 500;
    font-family: 'Zwizz', sans-serif;
    border-bottom: 1px solid #000;
    border-bottom: 1px solid #0000001F;
    border-radius: 0;
}

.search-bar .form-control::placeholder {
    color: #000000;
    opacity: .3;
}

.search-bar .form-control:focus {
    box-shadow: none;
    outline: none;
}

.news-meta {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    font-family: 'Zwizz', sans-serif;
}

.news-meta span {
    opacity: .5;
}

/* ---------- cards ---------- */
.news-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}


.news-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.news-card-body {
    padding: 1rem;
    flex-grow: 1;
    z-index: 2;
    background: #fff;
}

.news-card-title {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.news-card-excerpt {
    font-size: 0.85rem;
    color: #5c5c5c;
}

.news-card-footer {
    padding: 0 1rem 1rem;
    margin-top: auto;
}

.arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
}

.arrow-btn i {
    font-size: 1rem;
}

.browse-news-section .news-container .news-card {
    margin: 0;
    box-shadow: none;
}

.browse-news-section [class^="col-"] {
    padding: 0 15px 30px;
}

.browse-news-section .news-container .news-image {
    height: 320px;
}

.filter-select {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Zwizz', sans-serif;
    justify-content: space-around;
    margin: 0;
}

.filter-select select {
    border: none;
    font-weight: 500;
    background: transparent;
    padding: 0;
    margin: 0;
    width: auto;
}

.filter-select select:focus {
    box-shadow: none;
    outline: none;
}

.filter-select label {
    color: #000;
    opacity: .5;
}

.custom-select-wrapper {
    position: relative;
    max-width: 250px;
}

.custom-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #f8f9fa;
    /* Light background */
    border: 1px solid #ccc;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    width: 100%;
    color: #333;
}

/* Add custom dropdown arrow */
.custom-select-wrapper::after {
    content: '\f063';
    font-size: 14px;
    color: #000;
    position: absolute;
    right: -15px;
    top: 50%;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Optional: hover and focus effects */
.custom-dropdown:hover {
    border-color: #999;
}

.custom-dropdown:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.25);
    outline: none;
}

/* ---------- newsletter confirmation section ---------- */

.newsletter-confirmation-img-text {
    padding-top: 124px;
    opacity: .6;
}

.secondary-text {
    font-family: 'Zwizz', sans-serif;
    font-weight: 400;
    font-size: 24px;
    opacity: .6;
    width: 100%;
    max-width: 550px;
    padding: 4px 0px 32px;
}

.newsletter-confirmation-right {
    padding: 40px;
    max-width: 554px;
    width: 100%;
    margin: 0 auto;
}

.newsletter-confirmation-right ul li {
    font-size: 24px;
    font-weight: 400;
    color: #1B1F1A;
    font-family: 'Zwizz', sans-serif;
    opacity: .6;
}

.newsletter-confirmation-section {
    padding-top: 242px;
}

/* Single product page CSS Start */

.feature-section .feature-list:before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: #1E25C7;
}

.feature-section .feature-list {
    position: relative;
}

.feature-section {
    padding: 64px 5px 48px;
}

.book-title h3 span {
    opacity: .5;
}

.book-info .feature-section p,
.book-info .feature-section ul li {
    font-size: 16px;
    font-weight: 400;
    opacity: .6;
    font-family: 'Zwizz', sans-serif;
}

.book-info .feature-section .feature-list .title {
    font-size: 16px;
    font-weight: 500;
    opacity: 1;
}

.book-bg {
    background: linear-gradient(180.46deg, #4542F4 18.54%, #3C96E9 37.76%, #CDE4F9 57.36%, #FFFFFF 70.03%);
    position: relative;

}

.book-bg img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 0 !important;
    position: absolute;
    padding-bottom: 0;
    bottom: 0;
}

.book-info {
    padding: 168px 15px 86px;
}

.book-section .book-title {
    width: 100%;
    max-width: 594px;
}

.review-section {
    position: relative;
    background: #fff;
    padding: 70px 24px 24px;
}

.review-section p {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Zwizz', sans-serif;
}

.review-nav-wrapper {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    gap: .5rem;
    height: 40px;
}

.review-slider {
    margin-left: 0;
    /* ensure left is flush */
    padding-left: 0;
}

.review-item {
    width: 320px;
    /* fixed width required for variableWidth */
}

.review-item:first-child {
    margin-left: 0;
}


button#prevReview {
    background: #E1E1E1;
    color: #000;
}

.review-nav {
    border: 1px solid #ddd;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
}

.review-nav i {
    width: 24px;
    height: 24px;
    padding: 5px;
}

.review-nav.slick-disabled {
    opacity: .4;
    cursor: not-allowed;
}

.review-card {
    border: 0.5px solid #1B1F1A33;
    padding: 20px;
    height: 100%;
}

.review-card p {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Zwizz', sans-serif;
    margin-bottom: 20px;
}

.review-card p.author-name {
    opacity: .6;
    margin-bottom: 0px;
}

.review-card span {
    display: block;
    margin-top: .75rem;
    font-weight: 600;
}