:root {
    --primary-color: #bc1300;
    --secondary-color: #121212;
    --black-color: #000;
    --white-color: #fff;
    --font-family: 'HelveticNeueLTStd', Arial, sans-serif;
}


/* ================= Font Face=================== */
/* HelveticNeueLTStd - Black */
@font-face {
    font-family: 'HelveticNeueLTStd';
    src: url('/wp-content/uploads/font/HelveticNeueLTStd-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* HelveticNeueLTStd - Bold */
@font-face {
    font-family: 'HelveticNeueLTStd';
    src: url('/wp-content/uploads/font/HelveticNeueLTStd-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticNeueLTStd';
    src: url('/wp-content/uploads/font/HelveticNeueLTStd-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
/* HelveticNeueLTStd - Medium */
@font-face {
    font-family: 'HelveticNeueLTStd';
    src: url('/wp-content/uploads/font/HelveticNeueLTStd-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
/* HelveticNeueLTStd - Regular */
@font-face {
    font-family: 'HelveticNeueLTStd';
    src: url('/wp-content/uploads/font/HelveticNeueLTStd-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* HelveticNeueLTStd - Light */
@font-face {
    font-family: 'HelveticNeueLTStd';
    src: url('/wp-content/uploads/font/HelveticNeueLTStd-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticNeueLTStd';
    src: url('/wp-content/uploads/font/HelveticNeueLTStd-bold-Italic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'HelveticNeueLTStd';
    src: url('/wp-content/uploads/font/HelveticNeueLTStd-Medium-Italic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'HelveticNeueLTStd';
    src: url('/wp-content/uploads/font/HelveticNeueLTStd-Regular-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

/* ================= Global Css=================== */

/* Global Css */
.container {
    max-width: 80vw;
    margin: 0 auto;
}
.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}
body {
    font-family: var(--font-family);
    font-weight: 400;
    margin: 0;
    box-sizing: border-box;
}
body *, body *::before, body *::after {
    box-sizing: inherit;
}
body, p, li {
    font-size: 20px;
    line-height: 1.2;
    color: var(--secondary-color);
    margin: 0;
}
p:not(:last-child) {
    margin-bottom: 15px;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--black-color);
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
}
h1 {
    font-size: 50px;
}
h2 {
    font-size: 40px ;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 26px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}
a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
ul {
    padding-left: 20px;
    margin: 0;
}
img {
    max-width: 100%;
    height: auto;
}
/*====== header ======*/
.logged-out-member .col.contact-info {
    display: none !important;
}
.site-logo {
    width: 40%;
}
.contact-info {
    width: 60%;
}
nav.breadcrumbs {
    padding-bottom: 10px;
    color: var(--primary-color);
}
nav.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 2px;
}
nav.breadcrumbs svg {
    fill: var(--primary-color)  ;
}
header .contact-info {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.header-menu .menu {
    list-style: none;
    padding: 0;
}
.header-menu  .menu-item a {
    font-weight: 700;
    color: var(--secondary-color);
}
.site-header {
    padding: 10px 0;
}
.site-header .custom-logo {
    height: 80px;
    width: auto;
}
.search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #000;
    border-radius: 30px;
    padding: 5px 20px;
}
.search-form input[type="search"] {
    border: 0px !important;
    font-size: 16px;
    padding: 10px 5px;
    width: 100%;
}
.search-form input:focus-visible {
    outline: none;
}
.search-form button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}
.search-form button img {
    width: 16px;
    min-width: 16px;
    height: auto;
    transform: translateY(2px);
}
.mobile-col {
    display: none;
    align-items: center;
    gap: 15px;
}
.header-menu {
    display: none;
}
.Contact-desktop-btn {
    font-weight: 700;
    color: var(--secondary-color);
}
/* ============== Home Page Styles ============== */
.inner-hero-wrapper {
    background-image: url("/wp-content/uploads/2025/09/Hero-Banner.jpg");
    min-height: 60vh;
    padding: 15px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: hsl(0deg 0% 0% / 40%);
    background-blend-mode: overlay;
}
.hero-banner h1 {
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 400;
}
.hero-banner h1 span {
    font-weight: 700;
    font-size: 46px;
    position: relative;
}
.hero-banner h1 span:before,.hero-banner h1 span:after {
    content: "";
    background: url("/wp-content/uploads/2025/09/star.png");
    position: absolute;
    height: 40px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.hero-banner h1 span:before {left: -80px;}
.hero-banner h1 span:after {right: -80px;}

/* about section */
.about-section {
    text-align: center;
    padding: 60px 0;
}
.about-section h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}
.about-section .about-content {
    font-weight: 500;
}
/* key toppic */
.key-topics-section .container {
    border-top: 1px solid var(--black-color);
    border-bottom: 1px solid var(--black-color);
    padding: 60px 0;
}
.key-topics-section h2 {
    text-align: center;
    margin-bottom: 30px;
}
.category-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.category-cards-wrapper .category-card {
  flex: 0 0 calc(25% - 20px); /* ensures 4 per row, subtracts gap */
  max-width: calc(25% - 20px);
  background: url(/wp-content/uploads/2025/09/Layer-50.png) no-repeat bottom/cover;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  position: relative;
}
.category-cards-wrapper .category-card:nth-child(1),
.category-cards-wrapper .category-card:nth-child(2),
.category-cards-wrapper .category-card:nth-child(3) {
    flex: 0 0 calc(26% - 20px);
    max-width: calc(26% - 20px);
}
.category-cards-wrapper a.category-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.category-cards-wrapper .category-title {
    margin-bottom: 0;
    font-size: 26px;
    text-transform: uppercase;
    color: var(--white-color);
}

/* article */
.featured-articles-section {
    padding: 60px 0;
}
.featured-articles-section h2 {
    text-align: center;
    margin-bottom: 30px;
}
.articles-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.article-card {
    display: flex;
    flex-direction: row;
    background: #f6f6f6;
}
.article-card .article-thumbnail {
    width: 40%;
}
.article-card .article-content {
    width: 60%;
    padding: 50px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}
.article-card .article-title a {
    color: var(--black-color);
    text-decoration: none;
}
.article-card .article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-category {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 20px;
}
.article-btn-wrapper
 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pagination {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.pagination .page-numbers {
    border: 1px solid #adadad;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 15px;
}
.pagination .page-numbers:hover {
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--white-color);
}
.pagination .page-numbers.current {
    background-color: var(--primary-color);
    color: var(--white-color);
}
/* =============== Archive ================= */
.archive-description-section{
    padding-bottom: 0px;
}
.archive-description-section .container {
    border-bottom: 1px solid  var(--black-color);
    padding-bottom : 60px;
}
.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 60px 0;
}
.videos-grid .video-wrapper {
    background: #f6f6f6;
    padding: 15px;
}
.videos-grid .video-title a {
    color: #000;
}
.videos-grid .video-title {
    padding-top: 10px;
    text-align: center;
}
/* =============== 404 page ================= */
section.hero-banner.not-found-hero {
    min-height: 80vh;
}
.not-found-hero .page-description {
    color: var(--white-color);
}
.not-found-hero .btn-home {
    background: var(--white-color);
    padding: 15px 20px;
}
.not-found-hero .inner-hero-wrapper {
    gap: 20px;
}
/* ===============Single Post page ================= */
.single-post-content-section {
    padding: 60px 0;
}
.single-post-content-section .page-title {
    margin-bottom: 20px;
    text-align: center;
}
.single-post-content-section .post-content {
    text-align: center;
}
.single-post-content-section :is(h2,h3,h4,h5,h6) {
    margin-top: 20px;
    margin-bottom: 10px; 
}
.single-post-content-section .post-date {
    margin-top: 30px;
    text-align: center;
    color: var(--primary-color);
}
/* video */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* footer */
footer.site-footer {
    background: #f6f6f6;
    padding: 20px 0;
    text-align: center;
}
.footer-copywrite-row {
    justify-content: space-between;
}
footer .site-info {
    font-size: 16px;
}
.footer-links a {
    font-size: 16px;
    color: var(--secondary-color);
}
.footer-links a:hover {
    color: var(--primary-color);
}
/* ============= Media Queries ============== */
@media (max-width: 1600px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 28px;
    }
    h4 {
        font-size: 22px;
    }
    h5 {
        font-size: 20px;
    }
    h6 {
        font-size: 18px;
    }
    body, p, li {
        font-size: 16px;
    }
    .hero-banner h1 span {
        font-size: 36px;
    }
    .hero-banner h1 span:before, .hero-banner h1 span:after {
        height: 30px;
        width: 30px;
    }
    .hero-banner h1 span:before {
        left: -60px;
    }
    .hero-banner h1 span:after {
        right: -60px;
    }
    .about-section h4 {
        font-size: 18px;
    }
    .site-header .custom-logo {
        height: 60px;
    }
    .category-cards-wrapper .category-title {
        font-size: 20px;
    }
    .article-card .article-content {
        padding: 30px;
    }
}
@media (max-width: 1200px) {
    .container {
        max-width: 90vw;
    }
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 22px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
    }
    h6 {
        font-size: 16px;
    }

    .category-cards-wrapper .category-card {
        padding: 40px 10px;
    }
    .category-cards-wrapper .category-title {
        font-size: 16px;
    }
    .hero-banner h1 span {
        font-size: 26px;
    }
    .hero-banner h1 span:before, .hero-banner h1 span:after {
        height: 20px;
        width: 20px;
    }
    .hero-banner h1 span:before {
        left: -40px;
    }
    .hero-banner h1 span:after {
        right: -40px;
    }
    .inner-hero-wrapper {
        min-height: 300px;
    }
    .article-category {
        font-size: 16px;
    }
}
@media (max-width: 980px) {
    .inner-hero-wrapper {
        min-height: 250px;
    }
    .article-excerpt p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .category-cards-wrapper .category-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
	.category-cards-wrapper .category-card:nth-child(1),
	.category-cards-wrapper .category-card:nth-child(2),
	.category-cards-wrapper .category-card:nth-child(3) {
		flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
	}
    .category-cards-wrapper {
        gap: 15px;
    }
    .about-section h4 {
        font-size: 16px;
    }
}


@media (max-width: 600px) {
    section.hero-banner .container {
        max-width: 100vw;
    }
    .site-header .custom-logo {
        max-height: 50px;
        height: auto;
    }
    h1 {
        font-size: 20px;
    }
    h2 {
        font-size: 18px;
    }
    h3 {
        font-size: 16px;
    }
    h4 {
        font-size: 15px;
    }
    h5 {
        font-size: 14px;
    }
    h6 {
        font-size: 14px;
    }

    body, p, li {
        font-size: 14px;
    }
    .about-section h4 {
        font-size: 15px;
    }
    .hero-banner h1 span {
        font-size: 20px;
    }
    .hero-banner h1 span:after {
        right: -30px;
    }
    .hero-banner h1 span:before {
        left: -30px;
    }
    .hero-banner h1 span:before, .hero-banner h1 span:after {
        height: 15px;
        width: 15px;
    }
    .key-topics-section .container {
        padding: 30px 0;
    }
    .about-section {
        padding: 30px 0;
    }
    .featured-articles-section {
        padding: 30px 0;
    }
    .category-cards-wrapper .category-title {
        font-size: 12px;
    }

    .key-topics-section h2 {
        margin-bottom: 15px;
    }
    .article-card {
        flex-direction: column;
    }
    .article-card .article-thumbnail {
        width: 100%;
    }
    .article-card .article-thumbnail img {
        height: 200px;
    }
    .article-card .article-content {
        padding: 20px;
        width: 100%;
    }
 
    .article-category {
        font-size: 14px;
    }
    .archive-description-section {
        padding-bottom: 0px;
    }
    .archive-description-section .container {
        padding-bottom : 30px;
    }
    .single-post-content-section {
        padding: 30px 0;
    }
    .single-post-content-section .page-title {
        margin-bottom: 15px;
    }
    .single-post-content-section :is(h2,h3,h4,h5,h6) {
        margin-top: 15px;
        margin-bottom: 10px; 
    }

    .search-form-wrapper.desktop-search {
        display: none;
    }
    .mobile-col {
        display: flex;
    }
    a.Contact-desktop-btn {
        display: none;
    }
    /* Hamburger Icon Styling */
    .mobile-search-icon {
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 6px;
        width: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-hmb-icon {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 28px;
        height: 24px;
        cursor: pointer;
    }
    .mobile-hmb-icon .bar {
        height: 4px;
        width: 100%;
        background: var(--primary-color);
        border-radius: 2px;
        transition: 0.3s ease;
    }
    .mobile-hmb-icon.active span.bar {
        opacity: 1;
        transform: rotate(45deg) translate(4px, 8px);
    }
    .mobile-hmb-icon.active span.bar:nth-last-child(2) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }
    .mobile-hmb-icon.active  span.bar:nth-last-child(1) {
        transform: rotate(-45deg) translate(3px, -8px);
        width: 30px;
    }

    /* Mobile Menu (hidden by default) */
    .header-menu {
        display: none;
        top: 68px;
        background: #fff;
        padding: 20px 15px;
        position: absolute;
        z-index: 999;
        background-color: var(--primary-color);
        left: 0;
        width: 100vw;
    }
	.admin-bar .header-menu {
		top: 100px;
	}
    .menu-main-menu-container {
        min-height: 100vh;
    }

    .header-menu .menu-item a {
        color: var(--white-color);
        font-size: 16px;
        padding: 8px 0;
        display: inline-block;
        font-weight: 400;
    }

    /* Mobile Search Popup */
    .search-form-wrapper {
        position: absolute;
        width: 100%;
        padding: 30px;
        left: 0;
        top: 100px;
        background: #fff;
    }
	.footer-copywrite-row {
		flex-direction: column;
		gap: 10px;
	}
	footer .site-info, .footer-links a {
		font-size: 14px;
	}
}